[Openmp-commits] [PATCH] D31602: Added support for OpenMP 4.5 simd modifier of the schedule clause of the OpenMP loop construct

Jonathan Peyton via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Wed Apr 5 14:28:56 PDT 2017


jlpeyton added inline comments.


================
Comment at: runtime/test/worksharing/for/kmp_sch_simd.c:361-362
+ {
+  int chunk;
+  i64 st, lb, ub;
+  for (chunk = SIMD_LEN; chunk <= 3*SIMD_LEN; chunk += SIMD_LEN) {
----------------
Can we add an array of schedules to iterate over:
{kmp_sch_guided_simd, kmp_sch_static_balanced_chunked} and then send those in to run_loop_64 and run_loop_32?


Repository:
  rL LLVM

https://reviews.llvm.org/D31602





More information about the Openmp-commits mailing list