-
Notifications
You must be signed in to change notification settings - Fork 752
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][E2E][Joint Matrix] OOB tests to support more shapes, layouts #16837
Conversation
6dd1426
to
0ffd40a
Compare
d6e6847
to
adc76e4
Compare
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.
sycl/test/e2e_test_requirements/no-unsupported-without-info.cpp LGTM.
test<bfloat16, float, /*MATRIX_M*/ 1024 + 20, /*MATRIX_N*/ 1024 + 20, | ||
/*MATRIX_K*/ 1024 + 24, /*TM*/ 8, /*TN*/ 16, /*TK*/ 16, A_layout, | ||
B_layout>(); | ||
std::cout << "half: "; | ||
test<half, float, 1024 + 20, 1024 + 20, 1024 + 24, 8, 16, 16, A_layout, | ||
B_layout>(); | ||
std::cout << "int8: "; | ||
test<int8_t, int32_t, 1024, 1024 + 20, 1024 + 24, 8, 16, 32, A_layout, | ||
B_layout>(); |
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.
I updated MATRIX_M, MATRIX_N and MATRIX_K to satisfy the requirement: Surface pitch (encoded_value + 1) must be a multiple of QW (8 bytes).
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.
LGTM
@intel/llvm-gatekeepers , please, merge. Fail is not related. Created #16877
|
No description provided.