SWDEV-444670 - Enable teardown class

Force implicit runtime teardown with a global destructor.

Change-Id: Iabe63dedf5b94fefc98668585c45a61607120669
This commit is contained in:
German Andryeyev
2024-04-12 11:22:15 -04:00
parent a1e0970d6d
commit c95a75a2bf
7 changed files with 37 additions and 14 deletions
+2
View File
@@ -61,6 +61,7 @@ void init(bool* status) {
return;
}
g_devices.push_back(device);
amd::RuntimeTearDown::RegisterObject(device);
}
amd::Context* hContext = new amd::Context(devices, amd::Context::Info());
@@ -73,6 +74,7 @@ void init(bool* status) {
hContext->release();
}
host_context = hContext;
amd::RuntimeTearDown::RegisterObject(hContext);
PlatformState::instance().init();
*status = true;
+1 -1
View File
@@ -445,7 +445,7 @@ public:
};
/// HIP Device class
class Device {
class Device : public amd::ReferenceCountedObject {
amd::Monitor lock_{"Device lock", true};
amd::Monitor streamSetLock{"Guards device stream set"};
std::unordered_set<hip::Stream*> streamSet;