Skip to content

Commit 8409a76

Browse files
committed
fix
Signed-off-by: Sidorov, Dmitry <[email protected]>
1 parent 96c1a8b commit 8409a76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ inline __SYCL_ALWAYS_INLINE void joint_matrix_load_checked(
695695
Res.spvm = __spirv_CooperativeMatrixLoadCheckedINTEL<
696696
DecorT, S, NumRows, NumCols, spv_matrix_use_traits<Use>::value,
697697
spv_matrix_layout_traits<Layout>::value>(
698-
Ptr, CoordX, CoordY, spv_matrix_layout_traits<Layout>::value Height,
698+
Ptr, CoordX, CoordY, spv_matrix_layout_traits<Layout>::value, Height,
699699
Width, Stride);
700700
#else
701701
std::ignore = sg;
@@ -764,7 +764,7 @@ inline __SYCL_ALWAYS_INLINE void joint_matrix_store_checked(
764764
DecorT, Tp, NumRows, NumCols, spv_matrix_use_traits<Use>::value,
765765
spv_matrix_layout_traits<Layout>::value>(
766766
Ptr, CoordX, CoordY, Src.spvm,
767-
spv_matrix_layout_traits<Layout>::value Height, Width, Stride);
767+
spv_matrix_layout_traits<Layout>::value, Height, Width, Stride);
768768
#else
769769
std::ignore = sg;
770770
std::ignore = Src;

0 commit comments

Comments
 (0)