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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user