SWDEV-444670 - Enable teardown class
Force implicit runtime teardown with a global destructor. Change-Id: Iabe63dedf5b94fefc98668585c45a61607120669
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user