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

* Fixing bug with fine-grained memory

[ROCm/rccl commit: 41c35dad48]
Этот коммит содержится в:
gilbertlee-amd
2020-12-15 17:37:31 -07:00
коммит произвёл GitHub
родитель 5155abb250
Коммит c570f09681
+1
Просмотреть файл
@@ -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