Merge pull request #116 from bensander/enable_coh_host

Make host memory allocations coherent by default.

[ROCm/hip commit: 526fcb1223]
This commit is contained in:
Maneesh Gupta
2017-07-27 10:45:32 +05:30
committed by GitHub
7 changed files with 96 additions and 44 deletions
+1 -1
View File
@@ -289,7 +289,7 @@ hipError_t hipHostMalloc(void** ptr, size_t sizeBytes, unsigned int flags)
amFlags = amHostNonCoherent;
} else {
// depends on env variables:
amFlags = HIP_COHERENT_HOST_ALLOC ? amHostCoherent : amHostNonCoherent;
amFlags = HIP_HOST_COHERENT ? amHostCoherent : amHostNonCoherent;
}