Let's say I'm running N threads. Every thread needs to be sync with the next and the previous one.
for (i = 0 ; i < NITER; i++){
do_something ();
sync_with_neighbours (tId - 1, tId + 1);
}
I need to implement the synchronization in the most efficient way. Pthread barriers are not efficient as this way every thread will wait for the slowest one to reach the barrier.
Any idea will be welcome
EDIT:
No we don't have to wait for thread 0:
If those 2 neighbour threads , "i + 1" and "i - 1", are ready then thread "i" will run.
Let's say that we are running 6 threads with this situation at time T:
- th0: pending (running iter = m )
- th1: pending (running iter = m )
- th2: ready (wait )
- th3: ready (wait )
- th4: ready (wait )
- th5: pending (running iter = m )
Situation at T + 1 will be:
- th0: pending (running iter = m )
- th1: pending (running iter = m )
- th2: ready (wait )
- th3: running iter = m + 1
- th4: ready (wait )
- th5: pending (running iter = m )
So as you can see there is no need for everybody to wait for Th0