@@ -176,18 +176,18 @@ const char *SYMM_C_KERNEL= "
176176 return SYMM_VECTOR_LOAD (A , M , lda , row , col );
177177 }
178178 #ifdef __SYMM_LOWER__
179- // CHECK: KPRINTF Behaviour with so many parantheses - If fails, use parantheses in the caller
179+ // CHECK: KPRINTF Behaviour with so many parentheses - If fails, use parentheses in the caller
180180 #define LOADA_FIRST (A ,M ,K ,lda ,row ,col ) %VLOAD(0, (&A[(col)*lda + (row)]))
181181 #elif defined(__SYMM_UPPER__ )
182- // CHECK: KPRINTF Behaviour with so many parantheses - If fails, use parantheses in the caller
182+ // CHECK: KPRINTF Behaviour with so many parentheses - If fails, use parentheses in the caller
183183 #define LOADA_FIRST (A ,M ,K ,lda ,row ,col ) %VLOADWITHINCXV2(0, (&A[(row)*lda + (col)]), lda)
184184 #endif
185185 #define LOADA_SECOND (A ,M ,K ,lda ,row ,col ) SYMM_VECTOR_LOAD_USING_SCALAR(A, M, lda, row, col)
186186 #ifdef __SYMM_LOWER__
187- // CHECK: KPRINTF Behaviour with so many parantheses - If fails, use parantheses in the caller
187+ // CHECK: KPRINTF Behaviour with so many parentheses - If fails, use parentheses in the caller
188188 #define LOADA_THIRD (A ,M ,K ,lda ,row , col ) %VLOADWITHINCXV2(0, (&A[(row)*lda + (col)]), lda)
189189 #elif defined(__SYMM_UPPER__ )
190- // CHECK: KPRINTF Behaviour with so many parantheses - If fails, use parantheses in the caller
190+ // CHECK: KPRINTF Behaviour with so many parentheses - If fails, use parentheses in the caller
191191 #define LOADA_THIRD (A ,M ,K ,lda ,row , col ) %VLOAD(0, (&A[(col)*lda + (row)]))
192192 #endif
193193 #define LOADA_TAIL (A ,M ,K ,lda ,row ,col ) SYMM_VECTOR_LOAD_USING_SCALAR(A,M,lda,row,col)
@@ -217,18 +217,18 @@ const char *SYMM_C_KERNEL= "
217217 return SYMM_VECTOR_LOAD (B , N , ldb , row , col );
218218 }
219219 #ifdef __SYMM_UPPER__
220- // CHECK: KPRINTF Behaviour with so many parantheses - If fails, use parantheses in the caller
220+ // CHECK: KPRINTF Behaviour with so many parentheses - If fails, use parentheses in the caller
221221 #define LOADB_FIRST (B ,K ,N ,ldb ,row ,col ) %VLOAD(0, (&B[(col)*(ldb) + (row)]))
222222 #elif defined(__SYMM_LOWER__ )
223- // CHECK: KPRINTF Behaviour with so many parantheses - If fails, use parantheses in the caller
223+ // CHECK: KPRINTF Behaviour with so many parentheses - If fails, use parentheses in the caller
224224 #define LOADB_FIRST (B ,K ,N ,ldb ,row ,col ) %VLOADWITHINCXV2(0, (&B[(row)*(ldb) + (col)]), ldb)
225225 #endif
226226 #define LOADB_SECOND (B ,K ,N ,ldb ,row ,col ) SYMM_VECTOR_LOAD_USING_SCALAR(B, N, ldb, row, col)
227227 #ifdef __SYMM_UPPER__
228- // CHECK: KPRINTF Behaviour with so many parantheses - If fails, use parantheses in the caller
228+ // CHECK: KPRINTF Behaviour with so many parentheses - If fails, use parentheses in the caller
229229 #define LOADB_THIRD (B ,K ,N ,ldb ,row ,col ) %VLOADWITHINCXV2(0, (&B[(row)*(ldb) + (col)]), ldb)
230230 #elif defined(__SYMM_LOWER__ )
231- // CHECK: KPRINTF Behaviour with so many parantheses - If fails, use parantheses in the caller
231+ // CHECK: KPRINTF Behaviour with so many parentheses - If fails, use parentheses in the caller
232232 #define LOADB_THIRD (B ,K ,N ,ldb ,row ,col ) %VLOAD(0, (&B[(col)*(ldb) + (row)]))
233233 #endif
234234 #define LOADB_TAIL (B ,K ,N ,ldb ,row ,col ) SYMM_VECTOR_LOAD_USING_SCALAR(B, N,ldb,row,col)
@@ -288,7 +288,7 @@ const char *SYMM_C_KERNEL= "
288288 // %V - Vectoring Width
289289 // %PANEL(*) - Panel Width to access Rows of A and Columns of B
290290 // Right now, %V is assumed to be the panel width.
291- // We dont use %PANEL in the current implementation.
291+ // We don't use %PANEL in the current implementation.
292292 //
293293 blockDimY = ((M - 1 ) / (threadsY * %ITEMY )) + 1 ;
294294 bidY = ( get_group_id (0 ) % ( blockDimY ));
@@ -673,18 +673,18 @@ const char *SYMM_C_KERNEL_WORKING_EXCEPT_CSYMM_PROBLEM = "
673673 return SYMM_VECTOR_LOAD (A , M , lda , row , col );
674674 }
675675 #ifdef __SYMM_LOWER__
676- // CHECK: KPRINTF Behaviour with so many parantheses - If fails, use parantheses in the caller
676+ // CHECK: KPRINTF Behaviour with so many parentheses - If fails, use parentheses in the caller
677677 #define LOADA_FIRST (A ,M ,K ,lda ,row ,col ) %VLOAD(0, (&A[(col)*lda + (row)]))
678678 #elif defined(__SYMM_UPPER__ )
679- // CHECK: KPRINTF Behaviour with so many parantheses - If fails, use parantheses in the caller
679+ // CHECK: KPRINTF Behaviour with so many parentheses - If fails, use parentheses in the caller
680680 #define LOADA_FIRST (A ,M ,K ,lda ,row ,col ) %VLOADWITHINCXV2(0, (&A[(row)*lda + (col)]), lda)
681681 #endif
682682 #define LOADA_SECOND (A ,M ,K ,lda ,row ,col ) SYMM_VECTOR_LOAD_USING_SCALAR(A, M, lda, row, col)
683683 #ifdef __SYMM_LOWER__
684- // CHECK: KPRINTF Behaviour with so many parantheses - If fails, use parantheses in the caller
684+ // CHECK: KPRINTF Behaviour with so many parentheses - If fails, use parentheses in the caller
685685 #define LOADA_THIRD (A ,M ,K ,lda ,row , col ) %VLOADWITHINCXV2(0, (&A[(row)*lda + (col)]), lda)
686686 #elif defined(__SYMM_UPPER__ )
687- // CHECK: KPRINTF Behaviour with so many parantheses - If fails, use parantheses in the caller
687+ // CHECK: KPRINTF Behaviour with so many parentheses - If fails, use parentheses in the caller
688688 #define LOADA_THIRD (A ,M ,K ,lda ,row , col ) %VLOAD(0, (&A[(col)*lda + (row)]))
689689 #endif
690690 #define LOADA_TAIL (A ,M ,K ,lda ,row ,col ) SYMM_VECTOR_LOAD_USING_SCALAR(A,M,lda,row,col)
@@ -714,18 +714,18 @@ const char *SYMM_C_KERNEL_WORKING_EXCEPT_CSYMM_PROBLEM = "
714714 return SYMM_VECTOR_LOAD (B , N , ldb , row , col );
715715 }
716716 #ifdef __SYMM_UPPER__
717- // CHECK: KPRINTF Behaviour with so many parantheses - If fails, use parantheses in the caller
717+ // CHECK: KPRINTF Behaviour with so many parentheses - If fails, use parentheses in the caller
718718 #define LOADB_FIRST (B ,K ,N ,ldb ,row ,col ) %VLOAD(0, (&B[(col)*(ldb) + (row)]))
719719 #elif defined(__SYMM_LOWER__ )
720- // CHECK: KPRINTF Behaviour with so many parantheses - If fails, use parantheses in the caller
720+ // CHECK: KPRINTF Behaviour with so many parentheses - If fails, use parentheses in the caller
721721 #define LOADB_FIRST (B ,K ,N ,ldb ,row ,col ) %VLOADWITHINCXV2(0, (&B[(row)*(ldb) + (col)]), ldb)
722722 #endif
723723 #define LOADB_SECOND (B ,K ,N ,ldb ,row ,col ) SYMM_VECTOR_LOAD_USING_SCALAR(B, N, ldb, row, col)
724724 #ifdef __SYMM_UPPER__
725- // CHECK: KPRINTF Behaviour with so many parantheses - If fails, use parantheses in the caller
725+ // CHECK: KPRINTF Behaviour with so many parentheses - If fails, use parentheses in the caller
726726 #define LOADB_THIRD (B ,K ,N ,ldb ,row ,col ) %VLOADWITHINCXV2(0, (&B[(row)*(ldb) + (col)]), ldb)
727727 #elif defined(__SYMM_LOWER__ )
728- // CHECK: KPRINTF Behaviour with so many parantheses - If fails, use parantheses in the caller
728+ // CHECK: KPRINTF Behaviour with so many parentheses - If fails, use parentheses in the caller
729729 #define LOADB_THIRD (B ,K ,N ,ldb ,row ,col ) %VLOAD(0, (&B[(col)*(ldb) + (row)]))
730730 #endif
731731 #define LOADB_TAIL (B ,K ,N ,ldb ,row ,col ) SYMM_VECTOR_LOAD_USING_SCALAR(B, N,ldb,row,col)
@@ -783,7 +783,7 @@ const char *SYMM_C_KERNEL_WORKING_EXCEPT_CSYMM_PROBLEM = "
783783 // %V - Vectoring Width
784784 // %PANEL(*) - Panel Width to access Rows of A and Columns of B
785785 // Right now, %V is assumed to be the panel width.
786- // We dont use %PANEL in the current implementation.
786+ // We don't use %PANEL in the current implementation.
787787 //
788788 blockDimY = ((M - 1 ) / (threadsY * %ITEMY )) + 1 ;
789789 bidY = ( get_group_id (0 ) % ( blockDimY ));
0 commit comments