Skip to content

Commit 378dad1

Browse files
fix bug
1 parent 7c17f1c commit 378dad1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sycl/test-e2e/Matrix/joint_matrix_bf16_fill_k_cache_impl.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,8 @@ double joint_matmul(TOperand *A, TOperand *B, TResult *C, queue &q, int i
306306
pm1B * prefRow) *
307307
(colsB)*vnniFactor +
308308
(n2 * NCache2 * vnniFactor + pn1B * prefCol);
309-
if ((prefetch_offsetB + (prefRow * colsA * vnniFactor) +
310-
prefCol) < (rowsA * colsA))
309+
if ((prefetch_offsetB + (prefRow * colsB * vnniFactor) +
310+
prefCol) < (rowsB * colsB))
311311
joint_matrix_prefetch<prefRow, prefCol>(
312312
sg, B + prefetch_offsetB, colsB * vnniFactor,
313313
layout::row_major,

0 commit comments

Comments
 (0)