Skip to content
Merged
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
39 changes: 39 additions & 0 deletions easybuild/easyconfigs/u/UCC/UCC-1.0.0-GCCcore-11.3.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
easyblock = 'ConfigureMake'

name = 'UCC'
version = '1.0.0'

homepage = 'https://www.openucx.org/'
description = """UCC (Unified Collective Communication) is a collective
communication operations API and library that is flexible, complete, and
feature-rich for current and emerging programming models and runtimes.
"""

toolchain = {'name': 'GCCcore', 'version': '11.3.0'}
toolchainopts = {'pic': True}

source_urls = ['https://github.com/openucx/ucc/archive/refs/tags']
sources = ['v%(version)s.tar.gz']
checksums = [
'd3b4aa7004bf339d35952a1699a6e408064ba578bdc93861f5f07527ad0a5e8c', # v1.0.0.tar.gz
]

builddependencies = [
('binutils', '2.38'),
('Autotools', '20220317'),
]

dependencies = [
('UCX', '1.12.1'),
]

preconfigopts = "./autogen.sh && "

sanity_check_paths = {
'files': ['bin/ucc_info'],
'dirs': ['include', 'lib']
}

sanity_check_commands = ["ucc_info -c"]

moduleclass = 'lib'