SWDEV-301667 - Disable HostBlit copy for HIP correct if check

Change-Id: I33d1359d5e4c871f63350d8300f726e039664d86
Этот коммит содержится в:
Anusha GodavarthySurya
2024-03-19 06:37:42 +00:00
коммит произвёл Anusha Godavarthy Surya
родитель f296159f62
Коммит 7f84df9f74
+2 -2
Просмотреть файл
@@ -1942,8 +1942,8 @@ bool KernelBlitManager::writeBuffer(const void* srcHost, device::Memory& dstMemo
bool result = false;
// Use host copy if memory has direct access
if (setup_.disableWriteBuffer_ || dstMemory.isHostMemDirectAccess() ||
gpuMem(dstMemory).IsPersistentDirectMap() && !setup_.disableHostCopyBuffer_) {
if ((setup_.disableWriteBuffer_ || dstMemory.isHostMemDirectAccess() ||
gpuMem(dstMemory).IsPersistentDirectMap()) && !setup_.disableHostCopyBuffer_) {
// Stall GPU before CPU access
gpu().releaseGpuMemoryFence();
result = HostBlitManager::writeBuffer(srcHost, dstMemory, origin, size, entire, copyMetadata);