mirror of
https://github.com/guillaumetousignant/SYCL_test.git
synced 2026-07-23 09:21:03 -04:00
No description
- CMake 93.4%
- C++ 6.6%
| .github/workflows | ||
| CMake | ||
| src | ||
| tests | ||
| .gitattributes | ||
| .gitignore | ||
| CMakeLists.txt | ||
| Doxyfile | ||
| LICENSE | ||
| README.md | ||
SYCL_test
Spectral elements method solver written with SYCL.
Installation:
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build .
cmake --install .
To build tests, add -DBUILD_TESTING=ON to cmake call. Then:
make unit_tests
ctest
To include in a CMake project:
find_package(SYCL_test 0.1.0 REQUIRED)
target_link_libraries(example SYCL_SEM::SYCL_SEM)