bug in gr pusher -- BC at one of the axes #256
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: Unit tests | |
on: | |
push: | |
jobs: | |
check-commit: | |
runs-on: ubuntu-latest | |
outputs: | |
run_tests: ${{ steps.check_message.outputs.run_tests }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Check commit message | |
id: check_message | |
run: | | |
if git log -1 --pretty=%B | grep -q "RUNTEST"; then | |
echo "run_tests=true" >> "$GITHUB_OUTPUT" | |
else | |
echo "run_tests=false" >> "$GITHUB_OUTPUT" | |
fi | |
tests: | |
needs: check-commit | |
if: needs.check-commit.outputs.run_tests == 'true' | |
strategy: | |
fail-fast: false | |
matrix: | |
device: [cpu, amd-gpu, nvidia-gpu] | |
precision: [double, single] | |
exclude: # my AMD GPU doesn't support fp64 atomics : ( | |
- device: amd-gpu | |
precision: double | |
runs-on: [self-hosted, "${{ matrix.device }}"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Configure | |
run: | | |
if [ "${{ matrix.device }}" = "nvidia-gpu" ]; then | |
FLAGS="-D Kokkos_ENABLE_CUDA=ON" | |
if [[ ! -z $(nvidia-smi | grep "V100") ]]; then | |
FLAGS+=" -D Kokkos_ARCH_VOLTA70=ON" | |
elif [[ ! -z $(nvidia-smi | grep "A100") ]]; then | |
FLAGS+=" -D Kokkos_ARCH_AMPERE80=ON" | |
else | |
FLAGS+=" -D Kokkos_ARCH_AMPERE86=ON" | |
fi | |
elif [ "${{ matrix.device }}" = "amd-gpu" ]; then | |
FLAGS="-D Kokkos_ENABLE_HIP=ON -D Kokkos_ARCH_AMD_GFX1100=ON" | |
elif [ "${{ matrix.device }}" = "cpu" ]; then | |
FLAGS="-D mpi=ON" | |
fi | |
cmake -B build -D TESTS=ON -D output=ON -D precision=${{ matrix.precision }} $FLAGS | |
- name: Compile | |
run: | | |
cmake --build build -j $(nproc) | |
- name: Run tests | |
run: | | |
ctest --test-dir build --output-on-failure --verbose |