Skip to content

Commit 5dd13f3

Browse files
authored
[Joint matrix] Fix test kernel incompatibility in half test files. (#19610)
CMPLRLLVM-69329
1 parent b06e881 commit 5dd13f3

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

sycl/test-e2e/Matrix/SG32/joint_matrix_half.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ int main() {
3333
matrix_combinations>();
3434

3535
for (unsigned int i = 0; i < combinations.size(); i++) {
36+
if (combinations[i].atype != matrix_type::fp16)
37+
continue;
38+
3639
if (combinations[i].nsize == 0) { // Intel AMX
3740
test<half, float, float, /*TM*/ 16, /*TN*/ 16, /*TK*/ 16,
3841
layout::ext_intel_packed, 2>();

sycl/test-e2e/Matrix/joint_matrix_half.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ int main() {
2424
matrix_combinations>();
2525

2626
for (unsigned int i = 0; i < combinations.size(); i++) {
27+
if (combinations[i].atype != matrix_type::fp16)
28+
continue;
29+
2730
if (combinations[i].nsize == 0) { // Intel AMX
2831
test<half, float, float, /*TM*/ 16, /*TN*/ 16, /*TK*/ 16,
2932
layout::ext_intel_packed, 2>();

0 commit comments

Comments
 (0)