Skip to content

Commit

Permalink
Turn Vc and smatrix plugins off in device builds
Browse files Browse the repository at this point in the history
  • Loading branch information
niermann999 committed Sep 19, 2024
1 parent 3e1dd4b commit 69392eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,11 @@ jobs:
- NAME: "CUDA"
CXX_STANDARD: "20"
CONTAINER: "ghcr.io/acts-project/ubuntu2404_cuda:56"
OPTIONS: -DDETRAY_EIGEN_PLUGIN=ON -DDETRAY_SMATRIX_PLUGIN=ON -DDETRAY_VC_PLUGIN=ON
OPTIONS: -DDETRAY_EIGEN_PLUGIN=ON -DDETRAY_SMATRIX_PLUGIN=OFF -DDETRAY_VC_PLUGIN=OFF
- NAME: "SYCL"
CXX_STANDARD: "20"
CONTAINER: "ghcr.io/acts-project/ubuntu2404_oneapi:56"
OPTIONS: -DDETRAY_BUILD_CUDA=OFF -DDETRAY_BUILD_SYCL=ON -DDETRAY_EIGEN_PLUGIN=ON -DDETRAY_SMATRIX_PLUGIN=ON -DDETRAY_VC_PLUGIN=ON
OPTIONS: -DDETRAY_BUILD_CUDA=OFF -DDETRAY_BUILD_SYCL=ON -DDETRAY_EIGEN_PLUGIN=ON -DDETRAY_SMATRIX_PLUGIN=OFF -DDETRAY_VC_PLUGIN=OFF

# The system to run on.
runs-on: ubuntu-latest
Expand Down
6 changes: 6 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ build_cuda:
- >
cmake --preset cuda -S src -B build
-DCMAKE_BUILD_TYPE=Release
-DDETRAY_EIGEN_PLUGIN=ON
-DDETRAY_VC_PLUGIN=OFF
-DDETRAY_SMATRIX_PLUGIN=OFF
-DBUILD_TESTING=ON
-DDETRAY_BUILD_UNITTESTS=ON
-DDETRAY_BUILD_INTEGRATIONTESTS=ON
Expand Down Expand Up @@ -65,6 +68,9 @@ build_sycl:
- >
cmake --preset sycl -S src -B build
-DCMAKE_BUILD_TYPE=Release
-DDETRAY_EIGEN_PLUGIN=ON
-DDETRAY_VC_PLUGIN=OFF
-DDETRAY_SMATRIX_PLUGIN=OFF
-DBUILD_TESTING=ON
-DDETRAY_BUILD_UNITTESTS=OFF
-DDETRAY_BUILD_INTEGRATIONTESTS=ON
Expand Down

0 comments on commit 69392eb

Please sign in to comment.