[Openmp-commits] [openmp] [Libomptarget] Move target table handling out of the plugins (PR #77150)
Johannes Doerfert via Openmp-commits
openmp-commits at lists.llvm.org
Tue Jan 9 11:05:48 PST 2024
================
@@ -62,6 +62,11 @@ struct __tgt_target_table {
*EntriesEnd; // End of the table with all the entries (non inclusive)
};
+/// This struct contains a handle to a loaded binary in the plugin device.
+struct __tgt_device_binary {
+ uint64_t handle;
----------------
jdoerfert wrote:
Why uint64_t, you only use it as pointer, uintptr_t, or void *?
https://github.com/llvm/llvm-project/pull/77150
More information about the Openmp-commits
mailing list