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
The following pragmas avoid losing some set bits when multiple threads race to set a bit in the same word. There is still a risk of two threads trying to set the exact same bit and both seeing it 0 before the update, but that's less likely (an issue that cuckatoo avoids).
// Two bit counter for cuckoo
if ((bucketNodes[targ] & one) != 0) {
The following pragmas avoid losing some set bits when multiple threads race to set a bit in the same word. There is still a risk of two threads trying to set the exact same bit and both seeing it 0 before the update, but that's less likely (an issue that cuckatoo avoids).
The text was updated successfully, but these errors were encountered: