Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SYCL][Joint Matrix][E2E] Uncomment the Joint Matrix tests for combination 32x32x16 #16191

Draft
wants to merge 3 commits into
base: sycl
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sycl/test-e2e/Matrix/element_wise_all_ops_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,9 @@ int main() {
test_ewops_ab<bfloat16, 8, 16, use::a, layout::row_major, 1>();
test_ewops_ab<bfloat16, 16, 8, use::b, layout::ext_intel_packed, 2>();
test_ewops_c<float, 8, 8>();
// test_ewops_ab<bfloat16, 32, 16, use::a, layout::row_major, 1>();
// test_ewops_ab<bfloat16, 16, 32, use::b, layout::ext_intel_packed, 2>();
// test_ewops_c<float, 32, 32>();
test_ewops_ab<bfloat16, 32, 16, use::a, layout::row_major, 1>();
test_ewops_ab<bfloat16, 16, 32, use::b, layout::ext_intel_packed, 2>();
test_ewops_c<float, 32, 32>();
break;
}
}
Expand Down
3 changes: 1 addition & 2 deletions sycl/test-e2e/Matrix/element_wise_ops_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,7 @@ int main() {
passed &= test<uint8_t, int32_t, 8, 8, 32, 4, class dg2_uint_8x8x32>();
passed &= test<int8_t, int32_t, 8, 8, 32, 4, class dg2_sint_8x8x32>();
passed &= test<bfloat16, float, 8, 8, 16, 2, class dg2_bf16_8x16x16>();
// passed &= test<bfloat16, float, 32, 32, 16, 2, class
// dg2_bf16_32x32x16>();
passed &= test<bfloat16, float, 32, 32, 16, 2, class dg2_bf16_32x32x16>();
break;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -493,8 +493,8 @@ size_t matrix_size = -1;

test<bfloat16, float, VnniFactor, /*TM*/ 8, /*TN*/ 8, /*TK*/ 16, MCache1,
NCache1, KCache1, MCache2, NCache2, KCache2>(matrix_size);
// test<bfloat16, float, VnniFactor, /*TM*/ 32, /*TN*/ 32, /*TK*/ 16, MCache1,
// NCache1, KCache1, MCache2, NCache2, KCache2>(matrix_size);
test<bfloat16, float, VnniFactor, /*TM*/ 32, /*TN*/ 32, /*TK*/ 16,
MCache1, NCache1, KCache1, MCache2, NCache2, KCache2>(matrix_size);
break;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ int main() {
gemm_row_major<8, 8, 32, class su_8x8x32, int8_t, uint8_t, int32_t>();
res += gemm_row_major<8, 8, 32, class uu_8x8x32, uint8_t, uint8_t,
int32_t>();
// res += gemm_row_major<32, 32, 16, class dg2_bf16_32x32x16, bfloat16,
// bfloat16, float>();
res += gemm_row_major<32, 32, 16, class dg2_bf16_32x32x16, bfloat16,
bfloat16, float>();
break;
}
}
Expand Down
Loading