Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions easybuild/easyconfigs/r/ROCm/ROCm-4.5.0-GCCcore-11.2.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
easyblock = 'Bundle'

name = 'ROCm'
version = '4.5.0'

homepage = 'https://rocmdocs.amd.com/en/latest/'
description = """AMD ROCm is the first open-source software development
platform for HPC/Hyperscale-class GPU computing. AMD ROCm brings the UNIX
philosophy of choice, minimalism and modular software development to GPU
computing."""

toolchain = {'name': 'GCCcore', 'version': '11.2.0'}

dependencies = [
('Clang-AOMP', '%(version)s'),
('HIP', '%(version)s', '-amd'),
('ROCR-Runtime', '%(version)s'),
('rocm-cmake', '%(version)s'),
('rocm-smi', '%(version)s'),
('rocminfo', '%(version)s'),
]

moduleclass = 'tools'
2 changes: 1 addition & 1 deletion test/easyconfigs/easyconfigs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1017,7 +1017,7 @@ def test_pr_sanity_check_paths(self):
# Bundles of dependencies without files of their own
# Autotools: Autoconf + Automake + libtool, (recent) GCC: GCCcore + binutils, CUDA: GCC + CUDAcore,
# CESM-deps: Python + Perl + netCDF + ESMF + git, FEniCS: DOLFIN and co
bundles_whitelist = ['Autotools', 'CESM-deps', 'CUDA', 'GCC', 'FEniCS', 'ESL-Bundle']
bundles_whitelist = ['Autotools', 'CESM-deps', 'CUDA', 'GCC', 'FEniCS', 'ESL-Bundle', 'ROCm']

failing_checks = []

Expand Down