Re: Message processing

2011-09-09 Thread Avery Ching
The GraphLab model is more asynchronous than BSP They allow you to update your neighbors rather than the BSP model of messaging per superstep. Rather than one massive barrier in BSP, they implement this with vertex locking. They also all a vertex to modify the state of its neighbors. We could

Re: Message processing

2011-09-09 Thread Jake Mannix
On Fri, Sep 9, 2011 at 8:03 AM, Avery Ching ach...@apache.org wrote: The GraphLab model is more asynchronous than BSP They allow you to update your neighbors rather than the BSP model of messaging per superstep. Rather than one massive barrier in BSP, they implement this with vertex locking.