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
29 changes: 19 additions & 10 deletions config/systems/daint.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@
'extras': {
'cn_memory': 825,
},
'features': ['ce', 'gpu', 'nvgpu', 'remote', 'scontrol', 'uenv', 'hugepages_slurm'],
'features': [
'ce', 'gpu', 'nvgpu', 'remote', 'scontrol', 'uenv',
'hugepages_slurm'],
'resources': [
{
'name': 'switches',
Expand All @@ -73,7 +75,8 @@
# Mount both the stagedir and the directory related
# used 3 levels above (the one related to the system)
# to be able to find fixtures
'--container-mounts={stagedir}/../../../,{stagedir}:/rfm_workdir',
'--container-mounts={stagedir}/../../../,' # split
'{stagedir}:/rfm_workdir',
'--container-workdir=/rfm_workdir'
]
},
Expand Down Expand Up @@ -108,6 +111,7 @@
{
'name': 'PrgEnv-cray',
'features': [
'cpe',
'serial', 'openmp', 'mpi', 'cuda', 'openacc', 'hdf5',
# 'netcdf-hdf5parallel',
# FIXME MPI Error when using pnetcdf
Expand All @@ -118,8 +122,9 @@
},
{
'name': 'PrgEnv-ce',
'features': ['serial', 'openmp', 'mpi', 'cuda',
'containerized_cpe'],
'features': [
'cpe',
'serial', 'openmp', 'mpi', 'cuda', 'containerized_cpe'],
'resources': {
'cpe_ce_image': {
'image':
Expand All @@ -134,8 +139,8 @@
'name': 'PrgEnv-gnu',
'target_systems': ['daint'],
'features': [
'serial', 'openmp', 'mpi', 'cuda', 'alloc_speed',
'hdf5'
'cpe',
'serial', 'openmp', 'mpi', 'cuda', 'alloc_speed', 'hdf5'
# 'netcdf-hdf5parallel',
# FIXME MPI Error when using pnetcdf
# 'pnetcdf'
Expand All @@ -145,15 +150,19 @@
{
'name': 'PrgEnv-nvidia',
'target_systems': ['daint'],
'features': ['serial', 'openmp', 'mpi', 'cuda', 'alloc_speed',
'hdf5', 'netcdf-hdf5parallel', 'pnetcdf'],
'features': [
'cpe',
'serial', 'openmp', 'mpi', 'cuda', 'alloc_speed', 'hdf5',
'netcdf-hdf5parallel', 'pnetcdf'],
'modules': ['cray', 'PrgEnv-nvidia', 'craype-arm-grace']
},
{
'name': 'PrgEnv-nvhpc',
'target_systems': ['daint'],
'features': ['serial', 'openmp', 'mpi', 'cuda', 'alloc_speed',
'hdf5', 'netcdf-hdf5parallel', 'pnetcdf'],
'features': [
'cpe',
'serial', 'openmp', 'mpi', 'cuda', 'alloc_speed', 'hdf5',
'netcdf-hdf5parallel', 'pnetcdf'],
'modules': ['cray', 'PrgEnv-nvhpc', 'craype-arm-grace']
},
],
Expand Down