Skip to content

Commit 1af16a8

Browse files
committed
Fixing issue with beta == 0 in AutoGemm kernels
1 parent 590b47d commit 1af16a8

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/library/blas/AutoGemm/KernelOpenCL.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -162,12 +162,6 @@ def makeOpenCLKernelString(kernel):
162162
" REG.s0 = mad( -ALPHA.s1, REG.s1, REG.s0 ); \\\\" + endLine +
163163
" REG.s1 *= ALPHA.s0; \\\\" + endLine +
164164
" REG.s1 = mad( ALPHA.s1, type_mad_tmp, REG.s1 ); \\\\" + endLine +
165-
" /* (2) */ \\\\" + endLine +
166-
" REG.s0 = mad( BETA.s0, DST.s0, REG.s0 ); \\\\" + endLine +
167-
" REG.s0 = mad( -BETA.s1, DST.s1, REG.s0 ); \\\\" + endLine +
168-
" REG.s1 = mad( BETA.s1, DST.s0, REG.s1 ); \\\\" + endLine +
169-
" REG.s1 = mad( BETA.s0, DST.s1, REG.s1 ); \\\\" + endLine +
170-
" /* (3) */ \\\\" + endLine +
171165
" DST = REG;" + endLine )
172166

173167
####################################

0 commit comments

Comments
 (0)