-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] CI: debug Clang thread sanitizer errors #5492
base: development
Are you sure you want to change the base?
Conversation
Just copying one piece of information from the Clang documentation:
|
This is the summary of the race condition raised by the sanitizer, seemingly referring to a race condition on the AMReX end (line 105 of Src/Base/AMReX_Random.cpp):
Full log preceeding that summary message:
|
c46c5fd
to
93c6d8e
Compare
I tried running with clang-18 and clang-19 (the one used since the latest commit a49c934, after installing directly from LLVM), but I keep seeing the data race condition in both cases. |
@EZoni this looks like a potential AMReX bug to me. Can you please compile with Debug symbols enabled and post the line number that is causing this inside Update: ah, I overlooked that you already had line numbers in your quoted parts - sorry for that. |
With debug symbols: job-logs.zip
which is this line: |
Proposed fix in AMReX-Codes/amrex#4281 |
Debug data race conditions raised by the Clang thread sanitizer CI job that was disabled in #5474.