Skip to content

Commit c9e18e5

Browse files
committed
Add packedB layout to default half test
1 parent ab52704 commit c9e18e5

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

sycl/test-e2e/Matrix/joint_matrix_half.cpp

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,24 @@ int main() {
2727
if (combinations[i].nsize == 0) { // Intel AMX
2828
test<half, float, float, /*TM*/ 16, /*TN*/ 16, /*TK*/ 16,
2929
layout::row_major, 1>();
30+
test<half, float, float, /*TM*/ 16, /*TN*/ 16, /*TK*/ 16,
31+
layout::ext_intel_packed, 2>();
3032
break;
3133
}
3234

3335
if (combinations[i].nsize == 16) { // architecture::intel_gpu_pvc
3436
test<half, float, float, /*TM*/ 8, /*TN*/ 16, /*TK*/ 16,
3537
layout::row_major, 1>();
38+
test<half, float, float, /*TM*/ 8, /*TN*/ 16, /*TK*/ 16,
39+
layout::ext_intel_packed, 2>();
3640
break;
3741
}
3842

3943
if (combinations[i].nsize == 8) { // architecture::intel_gpu_dg2*
40-
test<half, float, float, /*TM*/ 8, /*TN*/ 8, /*TK*/ 16, layout::row_major,
41-
1>();
44+
test<half, float, float, /*TM*/ 8, /*TN*/ 8, /*TK*/ 16,
45+
layout::row_major, 1>();
46+
test<half, float, float, /*TM*/ 8, /*TN*/ 8, /*TK*/ 16,
47+
layout::ext_intel_packed, 2>();
4248
break;
4349
}
4450
}

0 commit comments

Comments
 (0)