[PATCH] D111348: [OpenMP] Introduce new flags to assert thread and team usage in the runtime

Johannes Doerfert via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Oct 7 18:39:47 PDT 2021


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

LG, one nit wrt. spelling



================
Comment at: clang/include/clang/Basic/LangOptions.def:247-248
 LANGOPT(OpenMPOptimisticCollapse  , 1, 0, "Use at most 32 bits to represent the collapsed loop nest counter.")
+LANGOPT(OpenMPThreadSubscription  , 1, 0, "Assume that the number of threads is greater than the loop tripcount.")
+LANGOPT(OpenMPTeamSubscription  , 1, 0, "Assume that the number of teams is greater than the loop tripcount.")
 LANGOPT(RenderScript      , 1, 0, "RenderScript")
----------------



Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D111348



More information about the cfe-commits mailing list