Check for fine grain support using memory allocation

Dieser Commit ist enthalten in:
Wenkai Du
2019-11-01 15:58:49 -07:00
Ursprung 90b2921207
Commit 669f1951a4
4 geänderte Dateien mit 14 neuen und 32 gelöschten Zeilen
+9
Datei anzeigen
@@ -51,4 +51,13 @@ static ncclResult_t ncclCudaMemcpy(T* dst, T* src, size_t nelem) {
return ncclSuccess;
}
static bool hasFineGrainVramPcie() {
int *ptr;
if (hipExtMallocWithFlags((void**)&ptr, sizeof(int), hipDeviceMallocFinegrained) == hipSuccess) {
CUDACHECK(hipFree(ptr));
return true;
}
else
return false;
}
#endif