[Openmp-commits] [openmp] [OpenMP][NFC] Encapsulate Devices.size() (PR #74010)
Johannes Doerfert via Openmp-commits
openmp-commits at lists.llvm.org
Thu Nov 30 16:12:52 PST 2023
https://github.com/jdoerfert created https://github.com/llvm/llvm-project/pull/74010
None
>From b4bc36136103613d69819204c4669f65545b3077 Mon Sep 17 00:00:00 2001
From: Johannes Doerfert <johannes at jdoerfert.de>
Date: Thu, 30 Nov 2023 15:58:53 -0800
Subject: [PATCH] [OpenMP][NFC] Encapsulate Devices.size()
---
openmp/libomptarget/include/PluginManager.h | 5 +++++
openmp/libomptarget/src/api.cpp | 24 +++++++--------------
2 files changed, 13 insertions(+), 16 deletions(-)
diff --git a/openmp/libomptarget/include/PluginManager.h b/openmp/libomptarget/include/PluginManager.h
index 3a1c97fc52c95df..e9b5169510fc4dc 100644
--- a/openmp/libomptarget/include/PluginManager.h
+++ b/openmp/libomptarget/include/PluginManager.h
@@ -143,6 +143,11 @@ struct PluginManager {
DelayedBinDesc.clear();
}
+ int getNumDevices() {
+ std::lock_guard<decltype(RTLsMtx)> Lock(RTLsMtx);
+ return Devices.size();
+ }
+
private:
bool RTLsLoaded = false;
llvm::SmallVector<__tgt_bin_desc *> DelayedBinDesc;
diff --git a/openmp/libomptarget/src/api.cpp b/openmp/libomptarget/src/api.cpp
index e44421428adab44..cc4cca286df511e 100644
--- a/openmp/libomptarget/src/api.cpp
+++ b/openmp/libomptarget/src/api.cpp
@@ -28,13 +28,11 @@
EXTERN int omp_get_num_devices(void) {
TIMESCOPE();
- PM->RTLsMtx.lock();
- size_t DevicesSize = PM->Devices.size();
- PM->RTLsMtx.unlock();
+ size_t NumDevices = PM->getNumDevices();
- DP("Call to omp_get_num_devices returning %zd\n", DevicesSize);
+ DP("Call to omp_get_num_devices returning %zd\n", NumDevices);
- return DevicesSize;
+ return NumDevices;
}
EXTERN int omp_get_device_num(void) {
@@ -112,10 +110,8 @@ EXTERN int omp_target_is_present(const void *Ptr, int DeviceNum) {
return true;
}
- PM->RTLsMtx.lock();
- size_t DevicesSize = PM->Devices.size();
- PM->RTLsMtx.unlock();
- if (DevicesSize <= (size_t)DeviceNum) {
+ size_t NumDevices = PM->getNumDevices();
+ if (NumDevices <= (size_t)DeviceNum) {
DP("Call to omp_target_is_present with invalid device ID, returning "
"false\n");
return false;
@@ -562,18 +558,14 @@ EXTERN void *omp_get_mapped_ptr(const void *Ptr, int DeviceNum) {
return nullptr;
}
- if (DeviceNum == omp_get_initial_device()) {
+ size_t NumDevices = omp_get_initial_device();
+ if (DeviceNum == NumDevices) {
REPORT("Device %d is initial device, returning Ptr " DPxMOD ".\n",
DeviceNum, DPxPTR(Ptr));
return const_cast<void *>(Ptr);
}
- int DevicesSize = omp_get_initial_device();
- {
- std::lock_guard<std::mutex> LG(PM->RTLsMtx);
- DevicesSize = PM->Devices.size();
- }
- if (DevicesSize <= DeviceNum) {
+ if (NumDevices <= DeviceNum) {
DP("DeviceNum %d is invalid, returning nullptr.\n", DeviceNum);
return nullptr;
}
More information about the Openmp-commits
mailing list