Skip to content

Commit

Permalink
Use new ROCm 6.2.2 Container in CI (#1807)
Browse files Browse the repository at this point in the history
  • Loading branch information
fthaler authored Oct 29, 2024
1 parent 32daaa5 commit 6a0bf2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cmake-configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
container: ghcr.io/gridtools/gridtools-base:base-${{ matrix.rocm_version }}
strategy:
matrix:
rocm_version: [hip] # "hip" is rocm-5.x
rocm_version: [rocm-6.2.2]
cuda-mode: [AUTO, HIP]
steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
container: ghcr.io/gridtools/gridtools-base:${{ matrix.compiler }}
strategy:
matrix:
compiler: [gcc-8, gcc-9, gcc-10, gcc-11, gcc-12, gcc-13, clang-11, clang-12, clang-13, clang-14, clang-15, clang-16, clang-14-cuda-11, gcc-10-cuda-11.8, gcc-11-cuda-12.0, gcc-12-cuda-12.3, gcc-12-cuda-12.4, base-hip, gcc-10-hpx, nvhpc-23.3, nvhpc-23.9]
compiler: [gcc-8, gcc-9, gcc-10, gcc-11, gcc-12, gcc-13, clang-11, clang-12, clang-13, clang-14, clang-15, clang-16, clang-14-cuda-11, gcc-10-cuda-11.8, gcc-11-cuda-12.0, gcc-12-cuda-12.3, gcc-12-cuda-12.4, base-rocm-6.2.2, gcc-10-hpx, nvhpc-23.3, nvhpc-23.9]
build_type: [debug, release]
exclude:
- compiler: gcc-8
Expand Down Expand Up @@ -41,6 +41,6 @@ jobs:
python3 pyutils/driver.py -vv build -b ${{ matrix.build_type }} -o $(pwd)/build -i $(pwd)/install -t perftests
- name: run tests
# no GPUs available -> no tests (for nvhpc we could run cpu, but we currently don't expose that option in pyutils/driver.py)
if: (!contains(matrix.compiler, 'cuda') && !contains(matrix.compiler, 'hip') && !contains(matrix.compiler, 'nvhpc'))
if: (!contains(matrix.compiler, 'cuda') && !contains(matrix.compiler, 'rocm') && !contains(matrix.compiler, 'nvhpc'))
run: |
$(pwd)/build/pyutils/driver.py -vv test --perftests-only

0 comments on commit 6a0bf2f

Please sign in to comment.