-
Notifications
You must be signed in to change notification settings - Fork 1k
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
common: remove support for SyCL older than 2020 #2216
base: main
Are you sure you want to change the base?
Conversation
#define DNNL_USE_SYCL121_API 0 | ||
#endif | ||
#if defined(__INTEL_LLVM_COMPILER) && __INTEL_LLVM_COMPILER >= 20230000 | ||
#elif defined(__LIBSYCL_MAJOR_VERSION) && __LIBSYCL_MAJOR_VERSION >= 6 |
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.
make test |
@densamoilov @mgouicem I also wanted to remove CL/sycl.hpp header include since it is there just for compatibility with older SyCL versions. In many places we have:
I wanted to simplify it to:
|
@spalicki, I think it should be fine. |
make test |
b29fa15
to
aef8703
Compare
make test |
aef8703
to
e3cfd3f
Compare
make test |
Removing SYCL 1.2.1 specific code.