Skip to content

Commit 2103f1b

Browse files
committed
Comment out a couple of missed combinations and correct K size
1 parent 19b1fb4 commit 2103f1b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

sycl/test-e2e/Matrix/joint_matrix_bfloat16_impl.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,10 @@ int main() {
129129
// test<bfloat16, bfloat16, /*TM*/ 16, /*TN*/ 16, /*TK*/ 16>();
130130
test<bfloat16, float, /*TM*/ 1, /*TN*/ 64, /*TK*/ 16>();
131131
// test<bfloat16, bfloat16, /*TM*/ 1, /*TN*/ 64, /*TK*/ 16>();
132-
test<bfloat16, float, /*TM*/ 32, /*TN*/ 64, /*TK*/ 32>();
133-
// test<bfloat16, bfloat16, /*TM*/ 32, /*TN*/ 64, /*TK*/ 16>();
132+
// test<bfloat16, float, /*TM*/ 32, /*TN*/ 64, /*TK*/ 32>();
133+
// test<bfloat16, bfloat16, /*TM*/ 32, /*TN*/ 64, /*TK*/ 32>();
134134
// test<bfloat16, float, /*TM*/ 1, /*TN*/ 64, /*TK*/ 32>();
135-
// test<bfloat16, bfloat16, /*TM*/ 1, /*TN*/ 64, /*TK*/ 16>();
135+
// test<bfloat16, bfloat16, /*TM*/ 1, /*TN*/ 64, /*TK*/ 32>();
136136
// test<bfloat16, float, /*TM*/ 32, /*TN*/ 64, /*TK*/ 32>();
137137
// test<bfloat16, bfloat16, /*TM*/ 32, /*TN*/ 64, /*TK*/ 16>();
138138
#endif

sycl/test-e2e/Matrix/joint_matrix_half_impl.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,12 +127,12 @@ int main() {
127127
// This combination is not currently supported for sub group size = 32 in
128128
// IGC
129129
#if (!defined(SG_SZ) || SG_SZ != 32)
130-
test<half, float, /*TM*/ 16, /*TN*/ 16, /*TK*/ 16>();
130+
// test<half, float, /*TM*/ 16, /*TN*/ 16, /*TK*/ 16>();
131131
// test<half, half, /*TM*/ 16, /*TN*/ 16, /*TK*/ 16>();
132-
test<half, float, /*TM*/ 1, /*TN*/ 64, /*TK*/ 16>();
132+
// test<half, float, /*TM*/ 1, /*TN*/ 64, /*TK*/ 16>();
133133
// test<half, half, /*TM*/ 1, /*TN*/ 64, /*TK*/ 16>();
134-
// test<half, float, /*TM*/ 32, /*TN*/ 64, /*TK*/ 32>();
135-
// test<half, half, /*TM*/ 32, /*TN*/ 64, /*TK*/ 32>();
134+
// test<half, float, /*TM*/ 32, /*TN*/ 64, /*TK*/ 16>();
135+
// test<half, half, /*TM*/ 32, /*TN*/ 64, /*TK*/ 16>();
136136
// test<half, float, /*TM*/ 1, /*TN*/ 64, /*TK*/ 32>();
137137
// test<half, half, /*TM*/ 1, /*TN*/ 64, /*TK*/ 32>();
138138
// test<half, float, /*TM*/ 32, /*TN*/ 64, /*TK*/ 32>();

0 commit comments

Comments
 (0)