[Openmp-commits] [PATCH] D109512: [libomptarget][amdgpu] Precisely manage hsa lifetime
Jon Chesterfield via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Thu Sep 9 08:30:39 PDT 2021
JonChesterfield created this revision.
JonChesterfield added reviewers: pdhaliwal, jdoerfert, grokos, tianshilei1992, ronlieb, dpalermo, ye-luo.
Herald added subscribers: kerbowa, t-tye, tpr, dstuttard, yaxunl, nhaehnle, jvesely, kzhuravl.
JonChesterfield requested review of this revision.
Herald added subscribers: openmp-commits, wdng.
Herald added a project: OpenMP.
The hsa library must be initialized before any calls into it and
destructed after the last call into it. There have been a number of bugs in
this area related to member variables which would like to use raii to manage
resources acquired from hsa.
This patch moves the init/shutdown of hsa into a class, such that when used as
the first member variable (could be a base), the lifetime of other member
variables are reliably scoped within it. This will allow other classes to use
raii reliably when used as member variables within the global.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D109512
Files:
openmp/libomptarget/plugins/amdgpu/src/rtl.cpp
Index: openmp/libomptarget/plugins/amdgpu/src/rtl.cpp
===================================================================
--- openmp/libomptarget/plugins/amdgpu/src/rtl.cpp
+++ openmp/libomptarget/plugins/amdgpu/src/rtl.cpp
@@ -426,10 +426,30 @@
return llvm::omp::getAMDGPUGridValues<wavesize>();
}
+struct HSALifetime {
+ // Wrapper around HSA used to ensure it is constructed before other types
+ // and destructed after, which means said other types can use raii for
+ // cleanup without risking running outside of the lifetime of HSA
+ const hsa_status_t S;
+
+ bool success() { return S == HSA_STATUS_SUCCESS; }
+ HSALifetime() : S(hsa_init()) {}
+
+ ~HSALifetime() {
+ if (S == HSA_STATUS_SUCCESS) {
+ hsa_status_t Err = hsa_shut_down();
+ if (Err != HSA_STATUS_SUCCESS) {
+ // Can't call into HSA to get a string from the integer
+ DP("Shutting down HSA failed: %d\n", Err);
+ }
+ }
+ }
+};
+
/// Class containing all the device information
class RTLDeviceInfoTy {
+ HSALifetime HSA; // First field => constructed first and destructed last
std::vector<std::list<FuncOrGblEntryTy>> FuncGblEntries;
- bool HSAInitializeSucceeded = false;
public:
// load binary populates symbol tables and mutates various global state
@@ -680,24 +700,26 @@
}
RTLDeviceInfoTy() {
+ DP("Start initializing " GETNAME(TARGET_NAME) "\n");
+
// LIBOMPTARGET_KERNEL_TRACE provides a kernel launch trace to stderr
// anytime. You do not need a debug library build.
// 0 => no tracing
// 1 => tracing dispatch only
// >1 => verbosity increase
+
+ if (!HSA.success()) {
+ DP("Error when initializing HSA in " GETNAME(TARGET_NAME) "\n");
+ return;
+ }
+
if (char *envStr = getenv("LIBOMPTARGET_KERNEL_TRACE"))
print_kernel_trace = atoi(envStr);
else
print_kernel_trace = 0;
- DP("Start initializing " GETNAME(TARGET_NAME) "\n");
- hsa_status_t err = hsa_init();
- if (err == HSA_STATUS_SUCCESS) {
- err = core::atl_init_gpu_context();
- }
- if (err == HSA_STATUS_SUCCESS) {
- HSAInitializeSucceeded = true;
- } else {
+ hsa_status_t err = core::atl_init_gpu_context();
+ if (err != HSA_STATUS_SUCCESS) {
DP("Error when initializing " GETNAME(TARGET_NAME) "\n");
return;
}
@@ -801,7 +823,7 @@
~RTLDeviceInfoTy() {
DP("Finalizing the " GETNAME(TARGET_NAME) " DeviceInfo.\n");
- if (!HSAInitializeSucceeded) {
+ if (!HSA.success()) {
// Then none of these can have been set up and they can't be torn down
return;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D109512.371603.patch
Type: text/x-patch
Size: 2619 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20210909/9ccbdba1/attachment.bin>
More information about the Openmp-commits
mailing list