Intel® Moderncode for Parallel Architectures
Support for developing parallel programming applications on Intel® Architecture.
1696 Discussions

__sync_bool_compare_and_swap: will it clear the current value between all "remote" cores?

rusty0412
Beginner
1,474 Views
Hi,

I am looking for cheap ways to maintain a consistent state. I have realized that mutexes and rw locks will clear out the value the test and set variable from the cache of all other cores than the one currently trying to do the test and set. Afterwards, a thread will have a cache miss and will have to go to memory. I am wondering whether this is the case with __sync_bool_compare_and_swap, __sync_add_and_fetch, etc? Will a memory barrier cause the same effect?

Are there any good references out there on inexpensive primitives that scale well?

Thanks

0 Kudos
1 Reply
Tudor
New Contributor I
1,474 Views
As far as I know, yes, these operations you mentioned are implemented as atomic memory accesses and will cause corresponding cache invalidations.
0 Kudos
Reply