mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 15:32:11 +01:00
new file: f/Forge/Forge-21.1.3-test.eb
new file: o/OpenFOAM/OpenFOAM-9-foss-2021a.eb modified: o/OpenMPI/OpenMPI-4.1.2-NVHPC-22.2-CUDA-11.6.0-v2.eb modified: o/OpenMPI/OpenMPI-4.1.2-NVHPC-22.2-CUDA-11.6.0.eb new file: u/UCX/UCX-1.12.0-GCC-10.2.0-CUDA-11.6.0.eb new file: u/UCX/UCX-1.12.0-NVHPC-22.2-CUDA-11.6.0.eb
This commit is contained in:
parent
93279e24aa
commit
6aebeeac3d
53
f/Forge/Forge-21.1.3-test.eb
Normal file
53
f/Forge/Forge-21.1.3-test.eb
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
# IT4Innovations 2020
|
||||||
|
# !!! --include-easyblocks /apps/easybuild/it4i-easyblocks/easyblocks/a/allineabase.py !!!
|
||||||
|
# LK
|
||||||
|
|
||||||
|
easyblock = 'AllineaBase'
|
||||||
|
|
||||||
|
name = 'Forge'
|
||||||
|
version = "21.1.3"
|
||||||
|
versionsuffix = '-test'
|
||||||
|
|
||||||
|
homepage = 'http://www.allinea.com/products/develop-allinea-forge'
|
||||||
|
description = """Allinea Forge is the local_complete toolsuite for software development
|
||||||
|
- with everything needed to debug, profile, optimize, edit and build C, C++
|
||||||
|
and FORTRAN applications on Linux for high performance - from single threads through
|
||||||
|
to local_complex parallel HPC codes with MPI, OpenMP, threads or CUDA.
|
||||||
|
"""
|
||||||
|
|
||||||
|
toolchain = SYSTEM
|
||||||
|
|
||||||
|
source_urls = [
|
||||||
|
# Use manually downloaded sources
|
||||||
|
# http://content.allinea.com/downloads/allinea-reports-latest-Redhat-6.0-x86_64.tar
|
||||||
|
# and rename it to format %(namelower)s-%(version)s.tar, so
|
||||||
|
# forge-7.0.4.tar.
|
||||||
|
]
|
||||||
|
sources = ['arm-forge-21.1.3-linux-x86_64.tar']
|
||||||
|
|
||||||
|
skipsteps = ['configure', 'build']
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('X11', '20210802', '-GCCcore-11.2.0'),
|
||||||
|
]
|
||||||
|
|
||||||
|
postinstallcmds = [
|
||||||
|
'ln -s /apps/licenses/Arm/Licence %(installdir)s/licences/Licence.16312',
|
||||||
|
'ln -s /apps/licenses/PerformanceReports/Licence %(installdir)s/licences/Licence.16313',
|
||||||
|
]
|
||||||
|
|
||||||
|
sanity_check_paths = {
|
||||||
|
'files': [
|
||||||
|
'bin/ddt-client',
|
||||||
|
'bin/map',
|
||||||
|
'bin/ddt',
|
||||||
|
#'bin/ddt-debugger',
|
||||||
|
#'bin/ddt-debugger-ll',
|
||||||
|
#'bin/ddt-debugger-mps',
|
||||||
|
'bin/ddt-mpirun',
|
||||||
|
'bin/forge',
|
||||||
|
'bin/make-profiler-libraries'],
|
||||||
|
'dirs': ['lib'],
|
||||||
|
}
|
||||||
|
|
||||||
|
moduleclass = 'debugger'
|
42
o/OpenFOAM/OpenFOAM-9-foss-2021a.eb
Normal file
42
o/OpenFOAM/OpenFOAM-9-foss-2021a.eb
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
# IT4Innovations
|
||||||
|
# LK 2022
|
||||||
|
|
||||||
|
name = 'OpenFOAM'
|
||||||
|
version = '9'
|
||||||
|
|
||||||
|
homepage = 'https://www.openfoam.org/'
|
||||||
|
description = """OpenFOAM is a free, open source CFD software package.
|
||||||
|
OpenFOAM has an extensive range of features to solve anything from complex fluid flows
|
||||||
|
involving chemical reactions, turbulence and heat transfer,
|
||||||
|
to solid dynamics and electromagnetics."""
|
||||||
|
|
||||||
|
toolchain = {'name': 'foss', 'version': '2021a'}
|
||||||
|
|
||||||
|
source_urls = ['https://github.com/OpenFOAM/OpenFOAM-%(version_major)s/archive']
|
||||||
|
sources = ['version-%(version)s.tar.gz']
|
||||||
|
patches = ['OpenFOAM-%(version)s-cleanup.patch']
|
||||||
|
checksums = [
|
||||||
|
'0c48fb56e2fbb4dd534112811364d3b2dc12106e670a6486b361e4f864b435ee', # version-9.tar.gz
|
||||||
|
'4b638891f32badde1a5b1b364bc3bd5e0eda180b9d9a8afdf797d5818b8b494e', # OpenFOAM-9-cleanup.patch
|
||||||
|
]
|
||||||
|
|
||||||
|
builddependencies = [
|
||||||
|
('Bison', '3.7.6'),
|
||||||
|
('CMake', '3.20.1'),
|
||||||
|
('flex', '2.6.4'),
|
||||||
|
]
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('libreadline', '8.1'),
|
||||||
|
('ncurses', '6.2'),
|
||||||
|
# OpenFOAM requires 64 bit METIS using 32 bit indexes (array indexes)
|
||||||
|
('METIS', '5.1.0'),
|
||||||
|
('SCOTCH', '6.1.0'),
|
||||||
|
('CGAL', '4.14.3'),
|
||||||
|
('ParaView', '5.9.1', '-mpi'),
|
||||||
|
('gnuplot', '5.4.2'),
|
||||||
|
]
|
||||||
|
|
||||||
|
#execute {cmd="source /apps/all/OpenFOAM/9-foss-2021a/OpenFOAM-9/etc/bashrc",modeA={"load"}}
|
||||||
|
|
||||||
|
moduleclass = 'cae'
|
@ -14,7 +14,7 @@ source_urls = ['https://www.open-mpi.org/software/ompi/v%(version_major_minor)s/
|
|||||||
sources = [SOURCELOWER_TAR_GZ]
|
sources = [SOURCELOWER_TAR_GZ]
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('UCX', '1.11.2', '-NVHPC-22.2-CUDA-11.6.0', True),
|
('UCX', '1.12.0', '-NVHPC-22.2-CUDA-11.6.0', True),
|
||||||
('CUDAcore', '11.6.0', '', True),
|
('CUDAcore', '11.6.0', '', True),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ source_urls = ['https://www.open-mpi.org/software/ompi/v%(version_major_minor)s/
|
|||||||
sources = [SOURCELOWER_TAR_GZ]
|
sources = [SOURCELOWER_TAR_GZ]
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('UCX', '1.11.2', '-GCC-10.2.0-CUDA-11.6.0', True),
|
('UCX', '1.12.0', '-GCC-10.2.0-CUDA-11.6.0', True),
|
||||||
('CUDAcore', '11.6.0', '', True),
|
('CUDAcore', '11.6.0', '', True),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
49
u/UCX/UCX-1.12.0-GCC-10.2.0-CUDA-11.6.0.eb
Normal file
49
u/UCX/UCX-1.12.0-GCC-10.2.0-CUDA-11.6.0.eb
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
# IT4Innovations
|
||||||
|
# LK 2022
|
||||||
|
|
||||||
|
easyblock = 'ConfigureMake'
|
||||||
|
|
||||||
|
name = 'UCX'
|
||||||
|
version = '1.12.0'
|
||||||
|
versionsuffix= '-CUDA-11.6.0'
|
||||||
|
|
||||||
|
homepage = 'http://www.openucx.org/'
|
||||||
|
description = """Unified Communication X
|
||||||
|
An open-source production grade communication framework for data centric
|
||||||
|
and high-performance applications
|
||||||
|
"""
|
||||||
|
|
||||||
|
toolchain = {'name': 'GCC', 'version': '10.2.0'}
|
||||||
|
toolchainopts = {'pic': True}
|
||||||
|
|
||||||
|
source_urls = ['https://github.com/openucx/ucx/releases/download/v%(version)s']
|
||||||
|
sources = ['%(namelower)s-%(version)s.tar.gz']
|
||||||
|
#patches = ['%(name)s-%(version)s.patch']
|
||||||
|
|
||||||
|
builddependencies = [
|
||||||
|
('Autotools', '20200321'),
|
||||||
|
('pkg-config', '0.29.2'),
|
||||||
|
]
|
||||||
|
|
||||||
|
osdependencies = [OS_PKG_IBVERBS_DEV]
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('numactl', '2.0.13'),
|
||||||
|
('CUDAcore', '11.6.0', '', True),
|
||||||
|
]
|
||||||
|
|
||||||
|
configure_cmd = "contrib/configure-release"
|
||||||
|
|
||||||
|
configopts = '--enable-optimizations --enable-cma --enable-mt --with-verbs --with-gdrcopy=$EBROOTGDRCOPY '
|
||||||
|
configopts += '--without-java --disable-doxygen-doc --with-cuda=$EBROOTCUDACORE '
|
||||||
|
|
||||||
|
buildopts = 'V=1'
|
||||||
|
|
||||||
|
sanity_check_paths = {
|
||||||
|
'files': ['bin/ucx_info', 'bin/ucx_perftest', 'bin/ucx_read_profile'],
|
||||||
|
'dirs': ['include', 'lib', 'share']
|
||||||
|
}
|
||||||
|
|
||||||
|
#sanity_check_commands = ["ucx_info -d"]
|
||||||
|
|
||||||
|
moduleclass = 'lib'
|
50
u/UCX/UCX-1.12.0-NVHPC-22.2-CUDA-11.6.0.eb
Normal file
50
u/UCX/UCX-1.12.0-NVHPC-22.2-CUDA-11.6.0.eb
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
# IT4Innovations
|
||||||
|
# LK 2022
|
||||||
|
|
||||||
|
easyblock = 'ConfigureMake'
|
||||||
|
|
||||||
|
name = 'UCX'
|
||||||
|
version = '1.12.0'
|
||||||
|
versionsuffix= '-CUDA-11.6.0'
|
||||||
|
|
||||||
|
homepage = 'http://www.openucx.org/'
|
||||||
|
description = """Unified Communication X
|
||||||
|
An open-source production grade communication framework for data centric
|
||||||
|
and high-performance applications
|
||||||
|
"""
|
||||||
|
|
||||||
|
toolchain = {'name': 'NVHPC', 'version': '22.2'}
|
||||||
|
toolchainopts = {'pic': True}
|
||||||
|
|
||||||
|
source_urls = ['https://github.com/openucx/ucx/releases/download/v%(version)s']
|
||||||
|
sources = ['%(namelower)s-%(version)s.tar.gz']
|
||||||
|
#patches = ['%(name)s-%(version)s.patch']
|
||||||
|
|
||||||
|
builddependencies = [
|
||||||
|
('binutils', '2.35'),
|
||||||
|
('Autotools', '20200321'),
|
||||||
|
('pkg-config', '0.29.2'),
|
||||||
|
]
|
||||||
|
|
||||||
|
osdependencies = [OS_PKG_IBVERBS_DEV]
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('numactl', '2.0.13'),
|
||||||
|
('CUDAcore', '11.6.0', '', True),
|
||||||
|
]
|
||||||
|
|
||||||
|
configure_cmd = "contrib/configure-release"
|
||||||
|
|
||||||
|
configopts = '--enable-optimizations --enable-cma --enable-mt --with-verbs --with-gdrcopy=$EBROOTGDRCOPY '
|
||||||
|
configopts += '--without-java --disable-doxygen-doc --with-cuda=$EBROOTCUDACORE '
|
||||||
|
|
||||||
|
buildopts = 'V=1'
|
||||||
|
|
||||||
|
sanity_check_paths = {
|
||||||
|
'files': ['bin/ucx_info', 'bin/ucx_perftest', 'bin/ucx_read_profile'],
|
||||||
|
'dirs': ['include', 'lib', 'share']
|
||||||
|
}
|
||||||
|
|
||||||
|
#sanity_check_commands = ["ucx_info -d"]
|
||||||
|
|
||||||
|
moduleclass = 'lib'
|
Loading…
x
Reference in New Issue
Block a user