Check for fine grain support using memory allocation

This commit is contained in:
Wenkai Du
2019-11-01 15:58:49 -07:00
förälder 90b2921207
incheckning 669f1951a4
4 ändrade filer med 14 tillägg och 32 borttagningar
+9
Visa fil
@@ -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