Add OMP static scheduling throughout, don't depend on heuristics

This commit is contained in:
christiealappatt
2020-07-29 14:16:35 +02:00
parent b43735168a
commit 14cbb9290e
8 changed files with 8 additions and 8 deletions

View File

@@ -40,7 +40,7 @@ double update(
#pragma omp parallel
{
LIKWID_MARKER_START("UPDATE");
#pragma omp for
#pragma omp for schedule(static)
for (int i=0; i<N; i++) {
a[i] = a[i] * scalar;
}