[Openmp-commits] [PATCH] D74145: [OpenMP][Offloading] Added support for multiple streams so that multiple kernels can be executed concurrently

Joachim Protze via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Mon Nov 2 13:14:52 PST 2020


protze.joachim added a comment.
Herald added subscribers: sstefan1, yaxunl.

The test started to fail recently



================
Comment at: openmp/libomptarget/test/offloading/parallel_offloading_map.c:10
+  const int num_threads = 64, N = 128;
+  int array[num_threads] = {0};
+
----------------
With D89523, this line does not compile and the test fails. As I understand D89523, this assignment is non-comforming. Using #define instead should fix the issue


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D74145/new/

https://reviews.llvm.org/D74145



More information about the Openmp-commits mailing list