Skip to content

Commit

Permalink
Update ROCm version in dependencies_hip.sh (#816)
Browse files Browse the repository at this point in the history
### Description
For GitHub actions CI tests, compile the code using ROCm 5.7.1 (the
latest version available on Setonix).

### Related issues
N/A

### Checklist
_Before this pull request can be reviewed, all of these tasks should be
completed. Denote completed tasks with an `x` inside the square brackets
`[ ]` in the Markdown source below:_
- [x] I have added a description (see above).
- [x] I have added a link to any related issues (if applicable; see
above).
- [x] I have read the [Contributing
Guide](https://github.com/quokka-astro/quokka/blob/development/CONTRIBUTING.md).
- [ ] I have added tests for any new physics that this PR adds to the
code.
- [ ] *(For quokka-astro org members)* I have manually triggered the GPU
tests with the magic comment `/azp run`.
  • Loading branch information
BenWibking authored Dec 11, 2024
1 parent 1d9d078 commit e45f4e7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/dependencies/dependencies_hip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ sudo mkdir --parents --mode=0755 /etc/apt/keyrings
wget https://repo.radeon.com/rocm/rocm.gpg.key -O - | \
gpg --dearmor | sudo tee /etc/apt/keyrings/rocm.gpg > /dev/null

for ver in 5.3.3 5.4.3 5.5.1; do
for ver in 5.7.1 6.3; do
echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/rocm.gpg] https://repo.radeon.com/rocm/apt/$ver focal main" \
| sudo tee --append /etc/apt/sources.list.d/rocm.list
done
Expand All @@ -43,11 +43,11 @@ sudo apt-get install -y --no-install-recommends \
libnuma-dev \
libopenmpi-dev \
openmpi-bin \
rocm-dev5.4.3 \
roctracer-dev5.4.3 \
rocprofiler-dev5.4.3 \
rocrand-dev5.4.3 \
rocprim-dev5.4.3
rocm-dev5.7.1 \
roctracer-dev5.7.1 \
rocprofiler-dev5.7.1 \
rocrand-dev5.7.1 \
rocprim-dev5.7.1

# activate
#
Expand Down

0 comments on commit e45f4e7

Please # to comment.