[Openmp-commits] [PATCH] D65340: [OpenMP][libomptarget] Add support for close map modifier
Gheorghe-Teodor Bercea via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Fri Aug 2 11:55:36 PDT 2019
gtbercea marked an inline comment as done.
gtbercea added inline comments.
================
Comment at: libomptarget/src/omptarget.cpp:299-300
+ HasCloseModifier) {
+ if (IsNew || (arg_types[i] & OMP_TGT_MAPTYPE_ALWAYS) ||
+ HasCloseModifier) {
copy = true;
----------------
Hahnfeld wrote:
> Hmm, thinking about this again: Does `close` imply `always`? I don't find this in the spec, so I think `HasCloseModifier` should not be in the inner condition.
I think I see what you mean. The issue is not that this is in the innermost loop but that it may generate a copy to the device when IsNew is false.
Repository:
rOMP OpenMP
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D65340/new/
https://reviews.llvm.org/D65340
More information about the Openmp-commits
mailing list