-
Notifications
You must be signed in to change notification settings - Fork 803
[SYCL][Matrix] Fix __spirv_JointMatrixINTEL signature #6957
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
Changes from 1 commit
17b81ff
4ac5f7e
618d25a
0676b4b
d95b969
7765ae8
d89c276
ea20826
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,16 +16,14 @@ | |
|
|
||
| #include <sycl/feature_test.hpp> | ||
|
|
||
| // the default is matrix-jit-use but existing tests in llvm-test-suite won't | ||
| // fail because we have the "unnecessary" use value | ||
| #if (SYCL_EXT_ONEAPI_MATRIX == 1) | ||
| #include <sycl/ext/oneapi/matrix/matrix-jit.hpp> | ||
| #include <sycl/ext/oneapi/matrix/static-query.hpp> | ||
| #if (SYCL_EXT_ONEAPI_MATRIX == 3) | ||
|
||
| #include <sycl/ext/oneapi/matrix/matrix-tensorcore.hpp> | ||
| #endif | ||
| #if (SYCL_EXT_ONEAPI_MATRIX == 2) | ||
| #elif (SYCL_EXT_ONEAPI_MATRIX == 2 || __SYCL_EXT_ONEAPI_MATRIX_USE__) | ||
| #include <sycl/ext/oneapi/matrix/matrix-jit-use.hpp> | ||
| #include <sycl/ext/oneapi/matrix/static-query-use.hpp> | ||
| #endif | ||
| #if (SYCL_EXT_ONEAPI_MATRIX == 3) | ||
| #include <sycl/ext/oneapi/matrix/matrix-tensorcore.hpp> | ||
| #elif (SYCL_EXT_ONEAPI_MATRIX == 1) | ||
| #include <sycl/ext/oneapi/matrix/matrix-jit.hpp> | ||
| #include <sycl/ext/oneapi/matrix/static-query.hpp> | ||
| #endif | ||
Uh oh!
There was an error while loading. Please reload this page.