diff --git a/projects/clr/rocclr/runtime/device/device.hpp b/projects/clr/rocclr/runtime/device/device.hpp index a9fa1635a6..d6a18ff451 100644 --- a/projects/clr/rocclr/runtime/device/device.hpp +++ b/projects/clr/rocclr/runtime/device/device.hpp @@ -1417,6 +1417,18 @@ class Device : public RuntimeObject { //! Initializes abstraction layer device object bool create(); + uint retain() { + // Overwrite the RuntimeObject::retain(). + // There is an issue in the old SHOC11_DeviceMemory test on TC + return 0u; + } + + uint release() { + // Overwrite the RuntimeObject::release(). + // There is an issue in the old SHOC11_DeviceMemory test on TC + return 0u; + } + //! Register a device as available void registerDevice();