Open spalicki opened 1 week ago
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:
#if __has_include(<sycl/sycl.hpp>)
#include <sycl/sycl.hpp>
#elif __has_include(<CL/sycl.hpp>)
#include <CL/sycl.hpp>
#else
#error "Unsupported compiler"
#endif
I wanted to simplify it to:
#if __has_include(<sycl/sycl.hpp>)
#include <sycl/sycl.hpp>
#else
#error "Unsupported compiler"
#endif
I also wanted to remove CL/sycl.hpp header include since it is there just for compatibility with older SyCL versions.
@spalicki, I think it should be fine.
make test
make test
make test
Removing SYCL 1.2.1 specific code.