No description
  • CMake 93.4%
  • C++ 6.6%
Find a file
2021-09-08 11:29:57 -04:00
.github/workflows first commit 2021-01-12 10:49:43 -05:00
CMake could work with three backends 2021-02-08 15:26:54 -05:00
src hipsycl stuff 2021-09-08 11:29:57 -04:00
tests first commit 2021-01-12 10:49:43 -05:00
.gitattributes first commit 2021-01-12 10:49:43 -05:00
.gitignore first commit 2021-01-12 10:49:43 -05:00
CMakeLists.txt first commit 2021-01-12 10:49:43 -05:00
Doxyfile first commit 2021-01-12 10:49:43 -05:00
LICENSE first commit 2021-01-12 10:49:43 -05:00
README.md first commit 2021-01-12 10:49:43 -05:00

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)