├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── FindComputeCpp.cmake ├── main_eigen.cc └── main_sycl.cc /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ville-k/sycl_starter/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ville-k/sycl_starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ville-k/sycl_starter/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindComputeCpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ville-k/sycl_starter/HEAD/cmake/FindComputeCpp.cmake -------------------------------------------------------------------------------- /main_eigen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ville-k/sycl_starter/HEAD/main_eigen.cc -------------------------------------------------------------------------------- /main_sycl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ville-k/sycl_starter/HEAD/main_sycl.cc --------------------------------------------------------------------------------