-
Notifications
You must be signed in to change notification settings - Fork 30
Fix a race condition on liter_flag #386
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
Conversation
How to use the Graphite Merge QueueAdd the label merge-queue to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
818aa2a to
52c98ce
Compare
52c98ce to
b5d285a
Compare
0abeb5a to
5e161a1
Compare
b5d285a to
be4b598
Compare
648928b to
f08ba94
Compare
be4b598 to
623722b
Compare
623722b to
4ce29e4
Compare
Merge activity
|
It is read in each thread in the for loop condition check, but written only from one thread within SolveEquilibriumLoop. This PR introduces a barrier to protect the read from liter_flag within the for loop condition from the write within SolveEquilibriumLoop.
4ce29e4 to
9bf8324
Compare
It is read in each thread in the for loop condition check, but written only from one thread within SolveEquilibriumLoop. This PR introduces a barrier to protect the read from liter_flag within the for loop condition from the write within SolveEquilibriumLoop.

It is read in each thread in the for loop condition check, but written
only from one thread within SolveEquilibriumLoop.
This PR introduces a barrier to protect the read from liter_flag within
the for loop condition from the write within SolveEquilibriumLoop.