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

Change-Id: I31273d643aac05f394f505235734c7f098497051
This commit is contained in:
Ioannis Assiouras
2023-03-17 23:04:08 +00:00
committed by Maneesh Gupta
parent 17553de9b7
commit 9c04e21b68
2 changed files with 0 additions and 4 deletions
-2
View File
@@ -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;
}
}
-2
View File
@@ -2095,7 +2095,6 @@ hipError_t ihipGetMemcpyParam3DCommand(amd::Command*& command, const HIP_MEMCPY3
if (srcMemoryType == hipMemoryTypeDevice) {
const_cast<HIP_MEMCPY3D*>(pCopy)->srcDevice = const_cast<void*>(pCopy->srcHost);
const_cast<HIP_MEMCPY3D*>(pCopy)->srcXInBytes += offset;
}
}
offset = 0;
@@ -2105,7 +2104,6 @@ hipError_t ihipGetMemcpyParam3DCommand(amd::Command*& command, const HIP_MEMCPY3
if (dstMemoryType == hipMemoryTypeDevice) {
const_cast<HIP_MEMCPY3D*>(pCopy)->dstDevice = const_cast<void*>(pCopy->dstHost);
const_cast<HIP_MEMCPY3D*>(pCopy)->dstXInBytes += offset;
}
}