Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
YuriPlyakhin committed Jan 31, 2025
1 parent adc76e4 commit ac81c91
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion sycl/test-e2e/Matrix/Inputs/joint_matrix_out_bounds_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ void test() {

template <layout A_layout, layout B_layout> void test_all() {
std::cout << "bf16: ";
test<bfloat16, float, 1024 + 14, 1024, 1024 + 24, 8, 16, 16, A_layout,
test<bfloat16, float, /*MATRIX_M*/ 1024 + 14, /*MATRIX_N*/ 1024,
/*MATRIX_K*/ 1024 + 24, /*TM*/ 8, /*TN*/ 16, /*TK*/ 16, A_layout,
B_layout>();
std::cout << "half: ";
test<half, float, 1024 + 14, 1024, 1024 + 24, 8, 16, 16, A_layout,
Expand Down
1 change: 1 addition & 0 deletions sycl/test-e2e/Matrix/SG32/joint_matrix_out_bounds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
// REQUIRES-INTEL-DRIVER: lin: 27501, win: 101.4943

// UNSUPPORTED: gpu-intel-dg2, cpu
// UNSUPPORTED-INTENDED: Checked load/stores are not supported by DG2 and CPU HW

// RUN: %{build} -o %t.out
// RUN: %{run} %t.out
Expand Down
1 change: 1 addition & 0 deletions sycl/test-e2e/Matrix/joint_matrix_out_bounds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// REQUIRES: aspect-ext_intel_matrix

// UNSUPPORTED: gpu-intel-dg2, cpu
// UNSUPPORTED-INTENDED: Checked load/stores are not supported by DG2 and CPU HW

// RUN: %{build} -o %t.out
// RUN: %{run} %t.out
Expand Down
2 changes: 2 additions & 0 deletions sycl/test-e2e/Matrix/joint_matrix_out_bounds_colmajor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
//
//===----------------------------------------------------------------------===//
// REQUIRES: aspect-ext_intel_matrix

// UNSUPPORTED: gpu-intel-dg2, cpu
// UNSUPPORTED-INTENDED: Checked load/stores are not supported by DG2 and CPU HW

// RUN: %{build} -o %t.out
// RUN: %{run} %t.out
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
// tests to match the required format and in that case you should just update
// (i.e. reduce) the number and the list below.
//
// NUMBER-OF-UNSUPPORTED-WITHOUT-INFO: 375
// NUMBER-OF-UNSUPPORTED-WITHOUT-INFO: 371
//
// List of improperly UNSUPPORTED tests.
// Remove the CHECK once the test has been properly UNSUPPORTED.
Expand Down Expand Up @@ -273,22 +273,18 @@
// CHECK-NEXT: Matrix/SG32/joint_matrix_down_convert.cpp
// CHECK-NEXT: Matrix/SG32/joint_matrix_half.cpp
// CHECK-NEXT: Matrix/SG32/joint_matrix_int8_rowmajorA_rowmajorB.cpp
// CHECK-NEXT: Matrix/SG32/joint_matrix_out_bounds.cpp
// CHECK-NEXT: Matrix/SG32/joint_matrix_prefetch.cpp
// CHECK-NEXT: Matrix/SG32/joint_matrix_rowmajorA_rowmajorB.cpp
// CHECK-NEXT: Matrix/SG32/joint_matrix_ss_int8.cpp
// CHECK-NEXT: Matrix/SG32/joint_matrix_su_int8.cpp
// CHECK-NEXT: Matrix/SG32/joint_matrix_transposeC.cpp
// CHECK-NEXT: Matrix/SG32/joint_matrix_unaligned_k.cpp
// CHECK-NEXT: Matrix/SG32/joint_matrix_us_int8.cpp
// CHECK-NEXT: Matrix/SG32/joint_matrix_uu_int8.cpp
// CHECK-NEXT: Matrix/joint_matrix_annotated_ptr.cpp
// CHECK-NEXT: Matrix/joint_matrix_bf16_fill_k_cache_OOB.cpp
// CHECK-NEXT: Matrix/joint_matrix_bf16_fill_k_cache_prefetch.cpp
// CHECK-NEXT: Matrix/joint_matrix_down_convert.cpp
// CHECK-NEXT: Matrix/joint_matrix_out_bounds.cpp
// CHECK-NEXT: Matrix/joint_matrix_rowmajorA_rowmajorB.cpp
// CHECK-NEXT: Matrix/joint_matrix_unaligned_k.cpp
// CHECK-NEXT: NewOffloadDriver/aot-gpu.cpp
// CHECK-NEXT: NewOffloadDriver/spirv_device_obj_smoke.cpp
// CHECK-NEXT: NonUniformGroups/ballot_group.cpp
Expand Down

0 comments on commit ac81c91

Please sign in to comment.