Skip to content

Commit 484db83

Browse files
[SYCL][Joint Matrix] Fix typo in matrix_combinations on PVC (#11837)
According to https://github.com/intel/llvm/blob/sycl/sycl/doc/extensions/experimental/sycl_ext_matrix/sycl_ext_oneapi_matrix.asciidoc#intel-xmx-supported-combinations for PVC: `matrix_type::sint8`, `matrix_type::sint8`, `matrix_type::sint32`, `<=8`, `16`, `32` but implementation had a typo: K == 16 instead of 32, fixed by this patch
1 parent c6362a0 commit 484db83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sycl/source/detail/device_info.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ struct get_device_info_impl<
742742
matrix_type::sint32, matrix_type::sint32},
743743
{8, 0, 0, 0, 16, 32, matrix_type::sint8, matrix_type::uint8,
744744
matrix_type::sint32, matrix_type::sint32},
745-
{8, 0, 0, 0, 16, 16, matrix_type::sint8, matrix_type::sint8,
745+
{8, 0, 0, 0, 16, 32, matrix_type::sint8, matrix_type::sint8,
746746
matrix_type::sint32, matrix_type::sint32},
747747
{8, 0, 0, 0, 16, 16, matrix_type::fp16, matrix_type::fp16,
748748
matrix_type::fp32, matrix_type::fp32},

0 commit comments

Comments
 (0)