[Openmp-commits] [PATCH] D86307: [OpenMP] Pack first-private arguments to improve efficiency of data transfer
Ye Luo via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Thu Aug 20 12:47:58 PDT 2020
ye-luo added inline comments.
================
Comment at: openmp/libomptarget/src/omptarget.cpp:926
TgtBaseOffset = (intptr_t)HstPtrBase - (intptr_t)HstPtrBegin;
+ const bool MapTo = ArgTypes[I] & OMP_TGT_MAPTYPE_TO;
+ const int64_t ArgSize = ArgSizes[I];
----------------
When I read here with a condition on the transfer.
I'm wondering is this just first-private? or private is also affected?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D86307/new/
https://reviews.llvm.org/D86307
More information about the Openmp-commits
mailing list