We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
From OMPRacer paper:
1 int *A; int N; 2 load_from_input(A, &N); 3 #pragma omp parallel for shared(A) 4 for(int i = 0; i < N; i++) { 5 A[i] = i; 6 if (N > 10000) { A[0] = 1; } 7 }
Data races on A[0] happens only N is larger than a threshold.
The text was updated successfully, but these errors were encountered:
microbenchmark added.
Sorry, something went wrong.
No branches or pull requests
From OMPRacer paper:
Data races on A[0] happens only N is larger than a threshold.
The text was updated successfully, but these errors were encountered: