Skip to content

Commit da065b5

Browse files
committed
Fixes typo in GemmBatchNoAtomicFunctorThreadK
Closes #1570
1 parent 65ee96b commit da065b5

File tree

1 file changed

+1
-1
lines changed
  • dpctl/tensor/libtensor/include/kernels/linalg_functions

1 file changed

+1
-1
lines changed

dpctl/tensor/libtensor/include/kernels/linalg_functions/gemm.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2100,7 +2100,7 @@ class GemmBatchNoAtomicFunctorThreadK
21002100
for (size_t vec_id = 1; vec_id < m_groups; ++vec_id) {
21012101
if (j + vec_id < m) {
21022102
res[total_offset + res_indexer(i * m + j + vec_id)] =
2103-
local_sum[1];
2103+
local_sum[vec_id];
21042104
}
21052105
}
21062106
}

0 commit comments

Comments
 (0)