False sharing is the condition, where in parallel programs, memory cache lines are shared by two or more threads and writes on one cache line would force other cores working on the same line to re-validate their cache.
I have started learning how to use OpenMP as part of a University course. As a lab excercise, we have …
c openmp false-sharing