Fixed Thread Sanitizer complaint by making variable atomic
Without this multiple threads are accessing IsParallel simultaneously without any synchroniztion/mutex.
Backport: release
Merge request reports
Activity
Errors:
- commit 5b742b28 is not allowed because the following files are not formatted according to the 'clang-format' check:
Common/Core/SMP/Common/vtkSMPToolsImpl.h
. Post a comment ending in the lineDo: reformat
to rewrite the MR source branch automatically.
Warnings:
- please consider adding a changelog entry in a file ending with
.md
inDocumentation/release/dev
.
The warnings do not need to be fixed, but it is recommended to do so.
Please rewrite commits to fix the errors listed above (adding fixup commits will not resolve the errors) and force-push the branch again to update the merge request.
- commit 5b742b28 is not allowed because the following files are not formatted according to the 'clang-format' check:
Errors:
- commit 5b742b28 is not allowed because the following files are not formatted according to the 'clang-format' check:
Common/Core/SMP/Common/vtkSMPToolsImpl.h
. Post a comment ending in the lineDo: reformat
to rewrite the MR source branch automatically.
Warnings:
- please consider adding a changelog entry in a file ending with
.md
inDocumentation/release/dev
.
The warnings do not need to be fixed, but it is recommended to do so.
Please rewrite commits to fix the errors listed above (adding fixup commits will not resolve the errors) and force-push the branch again to update the merge request.
- commit 5b742b28 is not allowed because the following files are not formatted according to the 'clang-format' check:
Errors:
- commit 5b742b28 is not allowed because the following files are not formatted according to the 'clang-format' check:
Common/Core/SMP/Common/vtkSMPToolsImpl.h
. Post a comment ending in the lineDo: reformat
to rewrite the MR source branch automatically.
Warnings:
- please consider adding a changelog entry in a file ending with
.md
inDocumentation/release/dev
.
The warnings do not need to be fixed, but it is recommended to do so.
Please rewrite commits to fix the errors listed above (adding fixup commits will not resolve the errors) and force-push the branch again to update the merge request.
- commit 5b742b28 is not allowed because the following files are not formatted according to the 'clang-format' check:
84 81 } 85 82 pool.Join(); 86 83 87 this->IsParallel &= fromParallelCode; 84 // Atomic contortion to achieve this->IsParallel &= fromParallelCode. 85 bool trueFlag = true; 86 this->IsParallel.compare_exchange_strong(trueFlag, fromParallelCode); No; the first argument is a
T&
. This is wrong anyways. A loop must be written aroundcmpxchg
instructions to ensure it actually happens. Something like this:bool trueFlag = true; while (!this->IsParallel.compare_exchange_strong(trueFlag, fromParallelCode)) {}
However, if
this->IsParallel
isfalse
, we're calling this at least twice. Once fails and setstrueFlag
tofalse
then it comes around again and finally sets it becausetrueFlag
is the "expected" value. I think what is wanted is:this->IsParallel.fetch_and(fromParallelCode);
this->IsParallel.fetch_and(fromParallelCode);
That was my first attempt in fact, but for some reason
bool
is not supported byfetch_add
. In researching alternatives I found this: https://stackoverflow.com/questions/29390247/stdatomicbool-fetch-and-and-fetch-or-realization which after going through on paper I reasoned to be correct. I thought the loop was only needed forcompare_exchange_weak
and not thestrong
variant...We could just change the
bool
toint
and usefetch_and
.That's probably because
fetch_add
andfetch_or
are defined on bitwise representations and two "true" values could&
to "false" because they share no bits.As for strong versus weak, strong just isn't allowed to give false negatives. The "expected wasn't what you thought it was" is still relevant. In addition, if it is currently
false
, replacing it withtrue
seems to still be wrong, no?I suppose for
bool
, if it isn't the expected value, you know what it must be, so maybe a loop isn't necessary. In any case, a comment describing what is going on would be helpful here. Atomic operations break my brain at least :) .That's probably because
fetch_add
andfetch_or
are defined on bitwise representations and two "true" values could&
to "false" because they share no bits.Yeah I suppose. But I thought storing anything but 0 and 1 in a bool was already undefined behaviour.
Atomic operations break my brain at least
You're not alone there!
I've tried to reason through it again, and come back to agreeing with myself before that it's correct as-is:
From this:
bool compare_exchange_strong (T& expected, T val);
Compares the contents of the contained value with expected:
- if true, it replaces the contained value with val (like store).
- if false, it replaces expected with the contained value.
Which is:
if (this == expected) this = val; else expected = this;
which is:
if (IsParallel == trueFlag) IsParallel = fromParallelCode; else trueFlag = IsParallel;
So
if (IsParallel == false)
, it says false. Andif (IsParallel == true)
, it becomesfromParallelCode
.That's the same as
IsParallel &= fromParallelCode
akaIsParallel = IsParallel && fromParallelCode
.And the
else
branch is just useless to us.Or do I need more coffee?
changed this line in version 2 of the diff
added 1 commit
- 024b1e6a - Fixed Thread Sanitizer complaint by making variable atomic
Errors:
- commit 024b1e6a is not allowed because the following files are not formatted according to the 'clang-format' check:
Common/Core/SMP/Common/vtkSMPToolsImpl.h
. Post a comment ending in the lineDo: reformat
to rewrite the MR source branch automatically.
Warnings:
- please consider adding a changelog entry in a file ending with
.md
inDocumentation/release/dev
.
The warnings do not need to be fixed, but it is recommended to do so.
Please rewrite commits to fix the errors listed above (adding fixup commits will not resolve the errors) and force-push the branch again to update the merge request.
- commit 024b1e6a is not allowed because the following files are not formatted according to the 'clang-format' check:
Errors:
- commit 024b1e6a is not allowed because the following files are not formatted according to the 'clang-format' check:
Common/Core/SMP/Common/vtkSMPToolsImpl.h
. Post a comment ending in the lineDo: reformat
to rewrite the MR source branch automatically.
Warnings:
- please consider adding a changelog entry in a file ending with
.md
inDocumentation/release/dev
.
The warnings do not need to be fixed, but it is recommended to do so.
Please rewrite commits to fix the errors listed above (adding fixup commits will not resolve the errors) and force-push the branch again to update the merge request.
- commit 024b1e6a is not allowed because the following files are not formatted according to the 'clang-format' check:
added 1 commit
- bca9e43e - Fixed Thread Sanitizer complaint by making variable atomic
@ben.boeckel do those "wheel" failures seen unrelated?
@dgobbi perhaps you could review too?
The change seems logical, but I don't know if I'm the best person to review.
One exceedingly minor point, now that IsParallel is atomic, it might be more efficient to place it second in this condition:
- if (this->IsParallel && !this->NestedActivated) + if (!this->NestedActivated && this->IsParallel)
added 1 commit
- 19f14300 - Fixed Thread Sanitizer complaint by making variable atomic