Files
polypartiCL/build/CMakeFiles/TESTSYCL/sycl_features.cpp
T
Alex Lardner d7890c9808 init commit
2026-07-04 19:08:19 -07:00

8 lines
169 B
C++

#include <iostream>
using namespace std;
int main(){
#if defined(SYCL_LANGUAGE_VERSION)
cout << "SYCL_LANGUAGE_VERSION="<<SYCL_LANGUAGE_VERSION<<endl;
#endif
return 0;}