forked from sandialabs/omega_h
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from matthew-mccall/kokkosWorkflow
Add Support for Building with Kokkos in Actions
- Loading branch information
Showing
2 changed files
with
99 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: CMake test matrix with CUDA | ||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
jobs: | ||
build: | ||
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix | ||
runs-on: ubuntu-22.04 | ||
container: nvidia/cuda:12.3.0-devel-ubuntu22.04 | ||
|
||
strategy: | ||
matrix: | ||
mempool: [on, off] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
path: omega_h | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
repository: kokkos/kokkos | ||
path: kokkos | ||
|
||
- name: Install CMake and ZLib | ||
run: apt update && apt install -y cmake zlib1g-dev | ||
|
||
- name: Configure Kokkos | ||
shell: bash | ||
working-directory: ${{github.workspace}}/kokkos | ||
run: cmake . | ||
-Bbuild | ||
-DKokkos_ENABLE_CUDA=on | ||
-DKokkos_ARCH_TURING75=on | ||
-DCMAKE_INSTALL_PREFIX=build/install | ||
|
||
- name: Build Kokkos | ||
shell: bash | ||
run: cmake --build $GITHUB_WORKSPACE/kokkos/build --target install | ||
|
||
- name: Configure CMake | ||
shell: bash | ||
working-directory: ${{github.workspace}}/omega_h | ||
run: cmake . | ||
-Bbuild | ||
-DCMAKE_VERBOSE_MAKEFILE=on | ||
-DOmega_h_USE_MPI=off | ||
-DOmega_h_USE_CUDA=on | ||
-DOmega_h_CUDA_ARCH=75 | ||
-DOmega_h_USE_Kokkos=on | ||
-DKokkos_PREFIX=$GITHUB_WORKSPACE/kokkos/build/install | ||
-DBUILD_TESTING=on | ||
-DBUILD_SHARED_LIBS=off | ||
-DENABLE_CTEST_MEMPOOL=${{ matrix.mempool }} | ||
|
||
- name: Build | ||
working-directory: ${{github.workspace}}/omega_h/build | ||
shell: bash | ||
run: cmake --build . -j2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters