Skip to content

Commit 02bec23

Browse files
author
mmoadeli
committed
Fix a missing variable name change.
1 parent 919884b commit 02bec23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sycl/include/sycl/ext/oneapi/matrix/matrix-hip.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ void joint_matrix_apply(joint_matrix_hip<S, Use, M, N, Layout> &jm,
411411
} else if constexpr (
412412
Use != sycl::ext::oneapi::experimental::matrix::use::accumulator ||
413413
(Use == sycl::ext::oneapi::experimental::matrix::use::accumulator &&
414-
NumRows == 16)) {
414+
M == 16)) {
415415
for (auto i = 0; i < 4; ++i)
416416
jm.data[i] = lambda(jm.data[i]);
417417
} else {

0 commit comments

Comments
 (0)