From 810f390cfebbe0c08f9192b01019da424fe1e69b Mon Sep 17 00:00:00 2001 From: Ben Sander Date: Tue, 19 Apr 2016 11:29:29 -0500 Subject: [PATCH] Set chicken bits to 0. [ROCm/clr commit: b3c2d906dbc57b11d417c1e66dcde1b0b57b4824] --- projects/clr/hipamd/src/hip_hcc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/clr/hipamd/src/hip_hcc.cpp b/projects/clr/hipamd/src/hip_hcc.cpp index 41469c5ee1..90f5afa929 100644 --- a/projects/clr/hipamd/src/hip_hcc.cpp +++ b/projects/clr/hipamd/src/hip_hcc.cpp @@ -70,8 +70,8 @@ int HIP_VISIBLE_DEVICES = 0; /* Contains a comma-separated sequence of GPU ident //--- // Chicken bits for disabling functionality to work around potential issues: -int HIP_DISABLE_HW_KERNEL_DEP = 1; -int HIP_DISABLE_HW_COPY_DEP = 1; +int HIP_DISABLE_HW_KERNEL_DEP = 0; +int HIP_DISABLE_HW_COPY_DEP = 0; thread_local int tls_defaultDevice = 0; thread_local hipError_t tls_lastHipError = hipSuccess;