diff --git a/projects/clr/hipamd/rocclr/hip_device.cpp b/projects/clr/hipamd/rocclr/hip_device.cpp index 0a157541fb..3488bc21bd 100644 --- a/projects/clr/hipamd/rocclr/hip_device.cpp +++ b/projects/clr/hipamd/rocclr/hip_device.cpp @@ -217,8 +217,8 @@ hipError_t hipGetDeviceProperties ( hipDeviceProp_t* props, hipDevice_t device ) deviceProps.maxTexture3D[0] = info.image3DMaxWidth_; deviceProps.maxTexture3D[1] = info.image3DMaxHeight_; deviceProps.maxTexture3D[2] = info.image3DMaxDepth_; - deviceProps.hdpMemFlushCntl = nullptr; - deviceProps.hdpRegFlushCntl = nullptr; + deviceProps.hdpMemFlushCntl = info.hdpMemFlushCntl; + deviceProps.hdpRegFlushCntl = info.hdpRegFlushCntl; deviceProps.memPitch = info.maxMemAllocSize_; deviceProps.textureAlignment = info.imageBaseAddressAlignment_;