SWDEV-388661 - Fixed regression in hipMemCpyParam3D when offset is applied

Change-Id: I31273d643aac05f394f505235734c7f098497051
Este commit está contenido en:
Ioannis Assiouras
2023-03-17 23:04:08 +00:00
cometido por Maneesh Gupta
padre 17553de9b7
commit 9c04e21b68
Se han modificado 2 ficheros con 0 adiciones y 4 borrados
-2
Ver fichero
@@ -140,7 +140,6 @@ hipError_t hipGraphMemcpyNode::ValidateParams(const hipMemcpy3DParms* pNodeParam
if (srcMemoryType == hipMemoryTypeDevice) {
const_cast<HIP_MEMCPY3D*>(&pCopy)->srcDevice = const_cast<void*>(pCopy.srcHost);
const_cast<HIP_MEMCPY3D*>(&pCopy)->srcXInBytes += offset;
}
}
offset = 0;
@@ -150,7 +149,6 @@ hipError_t hipGraphMemcpyNode::ValidateParams(const hipMemcpy3DParms* pNodeParam
if (dstMemoryType == hipMemoryTypeDevice) {
const_cast<HIP_MEMCPY3D*>(&pCopy)->dstDevice = const_cast<void*>(pCopy.dstDevice);
const_cast<HIP_MEMCPY3D*>(&pCopy)->dstXInBytes += offset;
}
}