Skip to content

Commit 1795886

Browse files
author
Timmy
committed
correctness fix
1 parent 38b342a commit 1795886

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/library/blas/gens/clTemplates/sgemm_hawaiiSplitKernel.cl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ __kernel void sgemm_NT_96_96_16_16x16_6x6__ALPHABETA_SPLIT_MAIN( __global float
9898
//{
9999
__local float* plA = lA + idy*97+idx;
100100
__local float* plB = lB + idy*97+idx;
101-
// barrier(CLK_LOCAL_MEM_FENCE);
101+
barrier(CLK_LOCAL_MEM_FENCE);
102102
plB[0] = B[0+0*ldb];
103103
plB[16] = B[16+0*ldb];
104104
plB[32] = B[32+0*ldb];

0 commit comments

Comments
 (0)