diff options
| author | Andrey Churbanov <Andrey.Churbanov@intel.com> | 2017-03-21 12:17:22 +0000 |
|---|---|---|
| committer | Andrey Churbanov <Andrey.Churbanov@intel.com> | 2017-03-21 12:17:22 +0000 |
| commit | 3b939d070c79c0de68170f004d1a4c79ec0bf1bd (patch) | |
| tree | da2ee30c8f250de6695e43f5a82ea716d6bf3b1a | |
| parent | 44b6cb4e63b7c1d8269df3bd5ea18a0f5cf6c95a (diff) | |
| download | bcm5719-llvm-3b939d070c79c0de68170f004d1a4c79ec0bf1bd.tar.gz bcm5719-llvm-3b939d070c79c0de68170f004d1a4c79ec0bf1bd.zip | |
Stride in distribute parallel for loops with no chunk size.
Patch by George Rokos.
Differential Revision: https://reviews.llvm.org/D24486
llvm-svn: 298362
| -rw-r--r-- | openmp/runtime/src/kmp_sched.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openmp/runtime/src/kmp_sched.cpp b/openmp/runtime/src/kmp_sched.cpp index c19fe442772..7ebbb62eca5 100644 --- a/openmp/runtime/src/kmp_sched.cpp +++ b/openmp/runtime/src/kmp_sched.cpp @@ -281,6 +281,7 @@ __kmp_for_static_init( } } } + *pstride = trip_count; break; } case kmp_sch_static_chunked: |

