Merge pull request #116 from bensander/enable_coh_host

Make host memory allocations coherent by default.
这个提交包含在:
Maneesh Gupta
2017-07-27 10:45:32 +05:30
提交者 GitHub
当前提交 526fcb1223
修改 7 个文件,包含 96 行新增44 行删除
+1 -1
查看文件
@@ -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;
}