SWDEV-216213 - Delete kernel function_ in hip::Function destructor

Change-Id: I0f6c44927f453ac63b5b84552a5fba07f04a8a8e
This commit is contained in:
kjayapra-amd
2020-05-03 23:08:12 -04:00
parent 1ed3af2789
commit 6bad7ef790
Regular → Executable
+1
View File
@@ -177,6 +177,7 @@ namespace hip {
amd::Monitor lock_;
Function(amd::Kernel* f) : function_(f), lock_("function lock") {}
~Function() { function_->release(); }
hipFunction_t asHipFunction() { return reinterpret_cast<hipFunction_t>(this); }
static Function* asFunction(hipFunction_t f) { return reinterpret_cast<Function*>(f); }