Fix mixed dot for Jenkins rocm_2_0

This commit is contained in:
Aaron Enye Shi
2019-01-24 22:48:35 +00:00
parent 7e46f0639c
commit ede494bd5f
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ THE SOFTWARE.
__global__ void DotFunctions(bool* result) {
#if (__hcc_workweek__ >= 19015) || defined(__HIP_CLANG_ONLY__)
#if (__hcc_workweek__ >= 19015) || __HIP_CLANG_ONLY__
// Dot Functions
short2 sa{1}, sb{1};
result[0] = amd_mixed_dot(sa, sb, 1, result[0]) && result[0];