@@ -176,18 +176,18 @@ const char *SYMM_C_KERNEL= "
176
176
return SYMM_VECTOR_LOAD (A , M , lda , row , col );
177
177
}
178
178
#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
180
180
#define LOADA_FIRST (A ,M ,K ,lda ,row ,col ) %VLOAD(0, (&A[(col)*lda + (row)]))
181
181
#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
183
183
#define LOADA_FIRST (A ,M ,K ,lda ,row ,col ) %VLOADWITHINCXV2(0, (&A[(row)*lda + (col)]), lda)
184
184
#endif
185
185
#define LOADA_SECOND (A ,M ,K ,lda ,row ,col ) SYMM_VECTOR_LOAD_USING_SCALAR(A, M, lda, row, col)
186
186
#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
188
188
#define LOADA_THIRD (A ,M ,K ,lda ,row , col ) %VLOADWITHINCXV2(0, (&A[(row)*lda + (col)]), lda)
189
189
#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
191
191
#define LOADA_THIRD (A ,M ,K ,lda ,row , col ) %VLOAD(0, (&A[(col)*lda + (row)]))
192
192
#endif
193
193
#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= "
217
217
return SYMM_VECTOR_LOAD (B , N , ldb , row , col );
218
218
}
219
219
#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
221
221
#define LOADB_FIRST (B ,K ,N ,ldb ,row ,col ) %VLOAD(0, (&B[(col)*(ldb) + (row)]))
222
222
#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
224
224
#define LOADB_FIRST (B ,K ,N ,ldb ,row ,col ) %VLOADWITHINCXV2(0, (&B[(row)*(ldb) + (col)]), ldb)
225
225
#endif
226
226
#define LOADB_SECOND (B ,K ,N ,ldb ,row ,col ) SYMM_VECTOR_LOAD_USING_SCALAR(B, N, ldb, row, col)
227
227
#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
229
229
#define LOADB_THIRD (B ,K ,N ,ldb ,row ,col ) %VLOADWITHINCXV2(0, (&B[(row)*(ldb) + (col)]), ldb)
230
230
#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
232
232
#define LOADB_THIRD (B ,K ,N ,ldb ,row ,col ) %VLOAD(0, (&B[(col)*(ldb) + (row)]))
233
233
#endif
234
234
#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= "
288
288
// %V - Vectoring Width
289
289
// %PANEL(*) - Panel Width to access Rows of A and Columns of B
290
290
// 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.
292
292
//
293
293
blockDimY = ((M - 1 ) / (threadsY * %ITEMY )) + 1 ;
294
294
bidY = ( get_group_id (0 ) % ( blockDimY ));
@@ -673,18 +673,18 @@ const char *SYMM_C_KERNEL_WORKING_EXCEPT_CSYMM_PROBLEM = "
673
673
return SYMM_VECTOR_LOAD (A , M , lda , row , col );
674
674
}
675
675
#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
677
677
#define LOADA_FIRST (A ,M ,K ,lda ,row ,col ) %VLOAD(0, (&A[(col)*lda + (row)]))
678
678
#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
680
680
#define LOADA_FIRST (A ,M ,K ,lda ,row ,col ) %VLOADWITHINCXV2(0, (&A[(row)*lda + (col)]), lda)
681
681
#endif
682
682
#define LOADA_SECOND (A ,M ,K ,lda ,row ,col ) SYMM_VECTOR_LOAD_USING_SCALAR(A, M, lda, row, col)
683
683
#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
685
685
#define LOADA_THIRD (A ,M ,K ,lda ,row , col ) %VLOADWITHINCXV2(0, (&A[(row)*lda + (col)]), lda)
686
686
#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
688
688
#define LOADA_THIRD (A ,M ,K ,lda ,row , col ) %VLOAD(0, (&A[(col)*lda + (row)]))
689
689
#endif
690
690
#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 = "
714
714
return SYMM_VECTOR_LOAD (B , N , ldb , row , col );
715
715
}
716
716
#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
718
718
#define LOADB_FIRST (B ,K ,N ,ldb ,row ,col ) %VLOAD(0, (&B[(col)*(ldb) + (row)]))
719
719
#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
721
721
#define LOADB_FIRST (B ,K ,N ,ldb ,row ,col ) %VLOADWITHINCXV2(0, (&B[(row)*(ldb) + (col)]), ldb)
722
722
#endif
723
723
#define LOADB_SECOND (B ,K ,N ,ldb ,row ,col ) SYMM_VECTOR_LOAD_USING_SCALAR(B, N, ldb, row, col)
724
724
#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
726
726
#define LOADB_THIRD (B ,K ,N ,ldb ,row ,col ) %VLOADWITHINCXV2(0, (&B[(row)*(ldb) + (col)]), ldb)
727
727
#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
729
729
#define LOADB_THIRD (B ,K ,N ,ldb ,row ,col ) %VLOAD(0, (&B[(col)*(ldb) + (row)]))
730
730
#endif
731
731
#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 = "
783
783
// %V - Vectoring Width
784
784
// %PANEL(*) - Panel Width to access Rows of A and Columns of B
785
785
// 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.
787
787
//
788
788
blockDimY = ((M - 1 ) / (threadsY * %ITEMY )) + 1 ;
789
789
bidY = ( get_group_id (0 ) % ( blockDimY ));
0 commit comments