You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does bar.sync also emit semaphores? What I mean is, for example, if I set bar.arrive 0, 128 (executed by 32 threads) and then bar.sync 0, 128 (executed by 96 threads), the total becomes 32 + 96 = 128. This satisfies the condition for sync and should execute normally, correct? (This idea comes from FA3, where the semaphore value equals the sum of arrive and sync calls, not just the arrive count alone.)
The text was updated successfully, but these errors were encountered:
Does bar.sync also emit semaphores? What I mean is, for example, if I set bar.arrive 0, 128 (executed by 32 threads) and then bar.sync 0, 128 (executed by 96 threads), the total becomes 32 + 96 = 128. This satisfies the condition for sync and should execute normally, correct? (This idea comes from FA3, where the semaphore value equals the sum of arrive and sync calls, not just the arrive count alone.)
The text was updated successfully, but these errors were encountered: