From 2ae4e21bb92da3dd63dba2e0b0649caeaa3cc79d Mon Sep 17 00:00:00 2001 From: Aaron Enye Shi Date: Wed, 23 Jan 2019 16:39:25 +0000 Subject: [PATCH] Fix mixed dot for Jenkins rocm_head [ROCm/hip commit: f31aa946e7cc0ae697737718a3f680060ad063bc] --- projects/hip/tests/src/deviceLib/hipTestNativeHalf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/hip/tests/src/deviceLib/hipTestNativeHalf.cpp b/projects/hip/tests/src/deviceLib/hipTestNativeHalf.cpp index 52fa0ba932..3169268dd7 100644 --- a/projects/hip/tests/src/deviceLib/hipTestNativeHalf.cpp +++ b/projects/hip/tests/src/deviceLib/hipTestNativeHalf.cpp @@ -159,7 +159,7 @@ void __half2Test(bool* result, __half2 a) { #if (__hcc_workweek__ >= 19015) || defined(__HIP_CLANG_ONLY__) // Dot Functions - result[0] = to_bool(amd_mixed_dot(a, a, 1, 1)) && result[0]; + result[0] = amd_mixed_dot(a, a, 1, 1) && result[0]; #endif }