[Openmp-commits] [PATCH] D142249: [openmp] Workaround for HSA in issue 60119
Jon Chesterfield via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Sat Jan 21 04:00:50 PST 2023
JonChesterfield updated this revision to Diff 491062.
JonChesterfield added a comment.
- drop atomic
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D142249/new/
https://reviews.llvm.org/D142249
Files:
openmp/libomptarget/include/device.h
openmp/libomptarget/include/rtl.h
openmp/libomptarget/plugins/remote/server/Server.cpp
openmp/libomptarget/src/interface.cpp
openmp/libomptarget/src/rtl.cpp
Index: openmp/libomptarget/src/rtl.cpp
===================================================================
--- openmp/libomptarget/src/rtl.cpp
+++ openmp/libomptarget/src/rtl.cpp
@@ -64,6 +64,9 @@
// TODO: add a configuration option for time granularity
if (ProfileTraceFile)
timeTraceProfilerInitialize(500 /* us */, "libomptarget");
+
+ PM->RTLs.loadRTLs();
+ PM->registerDelayedLibraries();
}
__attribute__((destructor(101))) void deinit() {
Index: openmp/libomptarget/src/interface.cpp
===================================================================
--- openmp/libomptarget/src/interface.cpp
+++ openmp/libomptarget/src/interface.cpp
@@ -35,7 +35,9 @@
/// adds a target shared library to the target execution image
EXTERN void __tgt_register_lib(__tgt_bin_desc *Desc) {
TIMESCOPE();
- std::call_once(PM->RTLs.InitFlag, &RTLsTy::loadRTLs, &PM->RTLs);
+ if (PM->maybeDelayRegisterLib(Desc))
+ return;
+
for (auto &RTL : PM->RTLs.AllRTLs) {
if (RTL.register_lib) {
if ((*RTL.register_lib)(Desc) != OFFLOAD_SUCCESS) {
Index: openmp/libomptarget/plugins/remote/server/Server.cpp
===================================================================
--- openmp/libomptarget/plugins/remote/server/Server.cpp
+++ openmp/libomptarget/plugins/remote/server/Server.cpp
@@ -90,8 +90,6 @@
Status RemoteOffloadImpl::GetNumberOfDevices(ServerContext *Context,
const Null *Null,
I32 *NumberOfDevices) {
- std::call_once(PM->RTLs.initFlag, &RTLsTy::LoadRTLs, &PM->RTLs);
-
int32_t Devices = 0;
PM->RTLsMtx.lock();
for (auto &RTL : PM->RTLs.AllRTLs)
Index: openmp/libomptarget/include/rtl.h
===================================================================
--- openmp/libomptarget/include/rtl.h
+++ openmp/libomptarget/include/rtl.h
@@ -171,10 +171,8 @@
// Unregister a shared library from all RTLs.
void unregisterLib(__tgt_bin_desc *Desc);
- // Mutex-like object to guarantee thread-safety and unique initialization
- // (i.e. the library attempts to load the RTLs (plugins) only once).
- std::once_flag InitFlag;
- void loadRTLs(); // not thread-safe
+ // not thread-safe, called from global constructor (i.e. once)
+ void loadRTLs();
private:
static bool attemptLoadRTL(const std::string &RTLName, RTLInfoTy &RTL);
Index: openmp/libomptarget/include/device.h
===================================================================
--- openmp/libomptarget/include/device.h
+++ openmp/libomptarget/include/device.h
@@ -530,6 +530,31 @@
/// Flag to indicate if we use events to ensure the atomicity of
/// map clauses or not. Can be modified with an environment variable.
const bool UseEventsForAtomicTransfers;
+
+ // Work around for plugins that call dlopen on shared libraries that call
+ // tgt_register_lib during their initialisation. Stash the pointers in a
+ // vector until the plugins are all initialised and then register them.
+ bool maybeDelayRegisterLib(__tgt_bin_desc *Desc) {
+ if (!RTLsLoaded) {
+ // Only reachable from libomptarget constructor
+ DelayedBinDesc.push_back(Desc);
+ return true;
+ } else {
+ return false;
+ }
+ }
+
+ void registerDelayedLibraries() {
+ // Only called by libomptarget constructor
+ RTLsLoaded = true;
+ for (auto *Desc : DelayedBinDesc)
+ __tgt_register_lib(Desc);
+ DelayedBinDesc.clear();
+ }
+
+private:
+ bool RTLsLoaded = false;
+ llvm::SmallVector<__tgt_bin_desc *> DelayedBinDesc;
};
extern PluginManager *PM;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D142249.491062.patch
Type: text/x-patch
Size: 3587 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20230121/2e3a6252/attachment.bin>
More information about the Openmp-commits
mailing list