Update Kokkos sub-module. #51
Workflow file for this run
This file contains hidden or 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
| name: C/C++ CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - os: ubuntu-22.04 | |
| cuda: "12.0.0" | |
| env: | |
| config: "Release" | |
| steps: | |
| - name: Install dependencies | |
| run: sudo apt-get install -y libhwloc-dev zlib1g-dev | |
| - name: Install CUDA | |
| uses: Jimver/cuda-toolkit@v0.2.10 | |
| if: runner.os == 'Linux' | |
| with: | |
| sub-packages: '["nvcc", "nvrtc", "cudart"]' | |
| cuda: ${{ matrix.cuda }} | |
| method: network | |
| use-github-cache: false | |
| - name: nvcc check | |
| shell: bash | |
| run: | | |
| nvcc -V | |
| ls "$CUDA_PATH" | |
| ls "$CUDA_PATH/bin" | |
| ls "$CUDA_PATH/include" | |
| - name: cmake version | |
| shell: bash | |
| run: cmake --version | |
| # make sure to explicitly checkout git submodule ! | |
| - name: checkout repository | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: true | |
| - name: configure_openmp | |
| run: mkdir build_openmp && cd build_openmp && cmake -DEULER2D_KOKKOS_BUILD=ON -DEULER2D_KOKKOS_BACKEND=OpenMP .. | |
| - name: make_openmp | |
| run: cd build_openmp && make | |
| - name: configure_cuda | |
| run: mkdir build_cuda && cd build_cuda && cmake -DEULER2D_KOKKOS_BUILD=ON -DEULER2D_KOKKOS_BACKEND=Cuda -DKokkos_ARCH_AMPERE80=ON .. | |
| - name: make_cuda | |
| run: cd build_cuda && make |