Skip to content
Snippets Groups Projects
Commit 443c7243 authored by Fabien Chaix's avatar Fabien Chaix
Browse files

Improve style

parent 72ff4860
Branches
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
# #
# eb taz.eb # eb taz.eb
easyblock = 'CMakeMake' easyblock = 'CMakeMake'
name = 'Taz' name = 'Taz'
version = '0.33' version = '0.33'
...@@ -14,40 +14,39 @@ version = '0.33' ...@@ -14,40 +14,39 @@ version = '0.33'
homepage = 'https://github.com/CARV-ICS-FORTH/taz' homepage = 'https://github.com/CARV-ICS-FORTH/taz'
description = "Taz is a very fast simulator that replays traces of MPI applications in the presence of failures" description = "Taz is a very fast simulator that replays traces of MPI applications in the presence of failures"
#toolchain = {'name':'GCCcore', 'version':'11.3.0'} # toolchain = {'name':'GCCcore', 'version':'11.3.0'}
toolchain = {'name':'gpsmpi', 'version':'2022a'} toolchain = {'name': 'gpsmpi', 'version': '2022a'}
local_taz_archive_filename = f"taz_archive_{version}.tar.gz" local_taz_archive_filename = f"taz_archive_{version}.tar.gz"
sources = [{ sources = [{
'filename': local_taz_archive_filename, 'filename': local_taz_archive_filename,
'git_config': { 'git_config': {
'url': 'git@gitlab.jsc.fz-juelich.de:deep-sea/wp5/software', 'url': 'git@gitlab.jsc.fz-juelich.de:deep-sea/wp5/software',
'repo_name': 'taz', 'repo_name': 'taz',
'tag': 'v'+version, 'tag': 'v' + version,
'recursive': False, #Use flatbuffers and libscotch from the system 'recursive': False, # Use flatbuffers and libscotch from the system
'keep_git_dir': True, 'keep_git_dir': True,
}, },
}] }]
checksums = ['82a5c1ea1079326375e5faeba20579ddf60ccfd7'] checksums = ['82a5c1ea1079326375e5faeba20579ddf60ccfd7']
#sources = [local_taz_archive_filename] # sources = [local_taz_archive_filename]
builddependencies = [ builddependencies = [
('Boost', '1.79.0'), ('Boost', '1.79.0'),
('CMake', '3.23.1'), ('CMake', '3.23.1'),
('SCOTCH', '7.0.1'), ('SCOTCH', '7.0.1'),
('flatbuffers', '2.0.7') ('flatbuffers', '2.0.7')
] ]
configopts = '-DADD_HEAVY_TESTS=0 -DCMAKE_BUILD_TYPE=Release -DGENERATE_FBS=1 -DGENERATE_VENV=0 -DENABLE_LTO=0' configopts = '-DADD_HEAVY_TESTS=0 -DCMAKE_BUILD_TYPE=Release -DGENERATE_FBS=1 -DGENERATE_VENV=0 -DENABLE_LTO=0'
#runtest = True # runtest = True
sanity_check_paths = { sanity_check_paths = {
'dirs': ['bin'], 'dirs': ['bin'],
'files': ['bin/taz-simulate','bin/taz-show-matrix','bin/taz-show-csv'] 'files': ['bin/taz-simulate', 'bin/taz-show-matrix', 'bin/taz-show-csv']
} }
moduleclass = 'tools' moduleclass = 'tools'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment