-
Notifications
You must be signed in to change notification settings - Fork 755
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] Add tests for big shapes for col major A and B loads/stores #16999
base: sycl
Are you sure you want to change the base?
Conversation
607e671
to
3728aee
Compare
3728aee
to
6a38c2b
Compare
@@ -147,13 +148,38 @@ void test() { | |||
|
|||
template <layout A_layout, layout B_layout> void test_all() { | |||
std::cout << "bf16: "; | |||
test<bfloat16, float, /*MATRIX_M*/ 1024 + 20, /*MATRIX_N*/ 1024 + 20, | |||
test<bfloat16, float, /*MATRIX_M*/ 1024 + 24, /*MATRIX_N*/ 1024 + 24, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Size update is due to this requirement: For Untyped 2D Block Messages, Surface Pitch must be a multiple of OW(16B).
5f3f3c8
to
a1e1d9e
Compare
@@ -10,8 +10,6 @@ | |||
// other triples | |||
|
|||
// REQUIRES: aspect-ext_intel_matrix | |||
// XFAIL: arch-intel_gpu_bmg_g21 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After adjustment of sizes, the test started to pass on BMG. So, it was probably failing because non-spec-conformant sizes were used.
No description provided.