BulkSynchronousProcessing.md (348B)
1 # Bulk Synchronous Processing 2 3 CA L2 4 5 **Definition:** Completing parallel processing and then using [BarrierSynchronization](BarrierSynchronization.md) to join together threads of execution. 6 7 This is called bulk because it can be done all concurrently while also having synchronization in the form of a thread join. 8 9 Introduced by Leslie Valiant