Update Kokkos version to 4.4.1 #5786
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
name: Check compilers | |
on: [push, pull_request] | |
# Cancel "duplicated" workflows triggered by pushes to internal | |
# branches with associated PRs. | |
concurrency: | |
group: ${{ github.ref }}-${{ github.head_ref }}-check-compilers | |
cancel-in-progress: true | |
jobs: | |
CI-Cuda-Host: | |
continue-on-error: true | |
strategy: | |
matrix: | |
cxx: ['g++', 'clang++-15'] | |
cmake_build_type: ['Release', 'Debug'] | |
device: ['cuda', 'host'] | |
parallel: ['serial', 'mpi'] | |
exclude: | |
# Debug cuda clang build fail for the unit test. | |
# Exclude for now until we figure out what's going on. | |
# https://github.com/lanl/parthenon/issues/630 | |
- cxx: clang++-15 | |
device: cuda | |
cmake_build_type: Debug | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/parthenon-hpc-lab/cuda11.6-mpi-hdf5-ascent | |
env: | |
CMAKE_GENERATOR: Ninja | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- name: CMake | |
run: | | |
cmake -B builddir \ | |
-DCMAKE_CXX_COMPILER=${{ matrix.cxx }} \ | |
-DCMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \ | |
-DMACHINE_CFG=${PWD}/cmake/machinecfg/GitHubActions.cmake \ | |
-DMACHINE_VARIANT=${{ matrix.device }}_${{ matrix.parallel }} | |
- name: Build | |
run: | | |
cmake --build builddir --parallel 2 | |
CI-Rocm-HIP: | |
continue-on-error: true | |
strategy: | |
matrix: | |
cxx: ['hipcc'] | |
cmake_build_type: ['Release', 'Debug'] | |
device: ['hip'] | |
parallel: ['serial', 'mpi'] | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/parthenon-hpc-lab/rocm5.4.3-mpi-hdf5 | |
env: | |
CMAKE_GENERATOR: Ninja | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- name: CMake | |
run: | | |
cmake -B builddir \ | |
-DCMAKE_CXX_COMPILER=${{ matrix.cxx }} \ | |
-DCMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \ | |
-DMACHINE_CFG=${PWD}/cmake/machinecfg/GitHubActions.cmake \ | |
-DMACHINE_VARIANT=${{ matrix.device }}_${{ matrix.parallel }} | |
- name: Build | |
run: | | |
cmake --build builddir --parallel 2 |