Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 3e4a2c5

Browse files
committed
fix formatting
1 parent b14a0a2 commit 3e4a2c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SYCL/Matrix/element_wise_ops.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void matrix_multiply(big_matrix<T1, NUM_ROWS_C, NUM_COLS_C> &C,
6060
cgh.parallel_for<class imatrix>(
6161
nd_range<2>({NDRangeM, NDRangeN * SG_SZ}, {1, 1 * SG_SZ}),
6262
[accA, accB, accC, M, N,
63-
K](nd_item<2> spmd_item) [[intel::reqd_sub_group_size(SG_SZ)]] {
63+
K](nd_item<2> spmd_item) [[intel::reqd_sub_group_size(SG_SZ)]] {
6464
// The submatrix API has to be accessed by all the workitems in a
6565
// subgroup these functions will be called once by the subgroup no
6666
// code divergence between the workitems

0 commit comments

Comments
 (0)