[TransferBench] Fixing bug with fine-grained memory allocation (#311)

* Fixing bug with fine-grained memory
This commit is contained in:
gilbertlee-amd
2020-12-15 17:37:31 -07:00
committed by GitHub
parent ae0c4092c7
commit 41c35dad48
+1
View File
@@ -764,6 +764,7 @@ void AllocateMemory(MemType memType, int devIndex, size_t numBytes, float** memP
}
else if (memType == MEM_GPU_FINE)
{
HIP_CALL(hipSetDevice(devIndex));
HIP_CALL(hipExtMallocWithFlags((void**)memPtr, numBytes, hipDeviceMallocFinegrained));
}
else