COSMA/2.6.6-cpeGNU-24.03-CPU (COSMA-2.6.6-cpeGNU-24.03-CPU.eb)
Install with the EasyBuild-user module:
To access module help after installation and get reminded for which stacks and partitions the module is installed, usemodule spider COSMA/2.6.6-cpeGNU-24.03-CPU
.
EasyConfig:
# contributed by Peter Larsson (LUST)
# Bump to the latest version and CPE version by Radim Janalik (CSCS)
easyblock = 'CMakeMake'
name = 'COSMA'
version = '2.6.6'
versionsuffix = '-CPU'
homepage = 'https://github.com/eth-cscs/COSMA'
whatis = [
'Description: COSMA is a communication-optimal, GPU-accelerated, '
'matrix-matrix multiplication algorithm'
]
description = """
COSMA is a parallel, high-performance, GPU-accelerated, matrix-matrix
multiplication algorithm that is communication-optimal for all combinations
of matrix dimensions, number of processors and memory sizes, without the
need for any parameter tuning. The key idea behind COSMA is to first derive
a tight optimal sequential schedule and only then parallelize it, preserving
I/O optimality between processes.
"""
docurls = [
'Manual: https://github.com/eth-cscs/COSMA'
]
toolchain = {'name': 'cpeGNU', 'version': '24.03'}
toolchainopts = {'opt': True}
sources = [{
'filename' : SOURCELOWER_TAR_GZ,
'git_config' : {
'url' : 'https://github.com/eth-cscs',
'repo_name' :'%(name)s',
'tag' :'v2.6.6',
'recursive' : True,
'keep_git_dir' : True,
},
}]
builddependencies = [
('buildtools', '%(toolchain_version)s', '', True), # For CMake
('bzip2', '1.0.8'),
]
local_base_configopts = ' '.join([
'-DCOSMA_BLAS=CRAY_LIBSCI',
'-DCOSMA_SCALAPACK=CRAY_LIBSCI',
'-DCOSMA_WITH_TESTS=NO',
'-DCOSMA_WITH_BENCHMARKS=NO',
'-DCOSMA_WITH_APPS=NO',
'-DCOSMA_WITH_PROFILING=NO',
])
configopts = [
local_base_configopts,
local_base_configopts + ' -DBUILD_SHARED_LIBS=YES',
]
prebuildopts = 'export CPATH=$ROCM_PATH/include/rocblas:$CPATH && '
sanity_check_paths = {
'files': ['lib64/libcosma.%s' % SHLIB_EXT, 'lib64/libcosta.%s' % SHLIB_EXT],
'dirs': [''],
}
moduleclass = 'math'