[Openmp-commits] [PATCH] D142514: [OpenMP][libomptarget] Notify the plugins regarding new mapping/unmappings

Ye Luo via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Tue Jan 24 20:48:14 PST 2023


ye-luo added inline comments.


================
Comment at: openmp/libomptarget/plugins-nextgen/common/PluginInterface/PluginInterface.cpp:797
+  auto PinnedPtrOrErr = PinnedAllocs.lockHostBuffer(
+      HstPtr, Size, /* check whether already locked */ true);
+  if (!PinnedPtrOrErr)
----------------
jdoerfert wrote:
> ye-luo wrote:
> > I don't understand this part of code.
> > The implementation actually lock the host buffer instead of just notifying.
> While it is mapped, we want to keep it (by default) pinned. The escape hatch (env var) is missing though.
> This allows us to avoid the pin/unpin on the data transfer back and intermediate updates.
Unconditionally pinning mapped host memory should be an option to opt-in rather than default.
If I just map 10 scalars, don't pin them, staging can be better.
if users want fine-grain control, use the lock API. For really lazy users, give them the env var to opt-in.


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

https://reviews.llvm.org/D142514



More information about the Openmp-commits mailing list