[Openmp-commits] [PATCH] D128817: [Libomptarget] Use new tripcount argument in the runtime.

Johannes Doerfert via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Fri Jul 8 09:37:13 PDT 2022


jdoerfert accepted this revision.
jdoerfert added a comment.
This revision is now accepted and ready to land.

LG, one typo, see below.



================
Comment at: openmp/libomptarget/src/omptarget.cpp:1512
+  // FIXME: Use legacy tripcount method if it is '-1'.
+  Tripcount = Tripcount != -1 ? getLoopTripCount(DeviceId) : Tripcount;
+  DP("loop trip count is %" PRIu64 ".\n", Tripcount);
----------------



Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D128817



More information about the Openmp-commits mailing list