Check for fine grain support using memory allocation

[ROCm/rccl commit: 669f1951a4]
このコミットが含まれているのは:
Wenkai Du
2019-11-01 15:58:49 -07:00
コミット 41f6319b33
4個のファイルの変更14行の追加32行の削除
+9
ファイルの表示
@@ -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