Skip to content

Commit ee362e3

Browse files
author
Vasileios Karakasis
authored
Merge branch 'master' into test/slurm-constraint-error
2 parents d945043 + 574bee6 commit ee362e3

File tree

16 files changed

+595
-53
lines changed

16 files changed

+595
-53
lines changed

cscs-checks/libraries/io/netcdf_compile_run.py

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,24 @@ def setup(self, partition, environ, **job_opts):
6363
'-lnetcdf', '-lnetcdf_c++4', '-lnetcdff'
6464
]
6565
elif environ.name == 'PrgEnv-pgi-nompi':
66-
self.build_system.ldflags = ['-B' + self.linkage]
66+
self.modules = ['netcdf/4.6.1-pgi-18.5-gcc-5.4.0-2.26',
67+
'netcdf-c++/4.3.0-pgi-18.5-gcc-5.4.0-2.26',
68+
'netcdf-fortran/4.4.4-pgi-18.5-gcc-5.4.0-2.26']
69+
self.build_system.ldflags = [
70+
'-B' + self.linkage,
71+
'-L$EBROOTNETCDF/lib',
72+
'-L$EBROOTNETCDFMINCPLUSPLUS/lib',
73+
'-L$EBROOTNETCDFMINFORTRAN/lib',
74+
'-L$EBROOTNETCDF/lib64',
75+
'-L$EBROOTNETCDFMINCPLUSPLUS/lib64',
76+
'-L$EBROOTNETCDFMINFORTRAN/lib64',
77+
'-lnetcdf', '-lnetcdf_c++4', '-lnetcdff'
78+
]
79+
self.build_system.fflags = [
80+
'-I$EBROOTNETCDF/include',
81+
'-I$EBROOTNETCDFMINCPLUSPLUS/include',
82+
'-I$EBROOTNETCDFMINFORTRAN/include'
83+
]
6784
else:
6885
self.build_system.ldflags = ['-%s' % self.linkage]
6986

cscs-checks/mch/collectives_halo.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ def __init__(self, variant):
108108
super().__init__(variant,
109109
{
110110
'kesch': {
111-
'nocomm': 5.7878,
112-
'nocomp': 5.62155,
113-
'default': 5.53777
111+
'nocomm': 6.89819,
112+
'nocomp': 6.98276,
113+
'default': 6.85289
114114
},
115115
'daint': {
116116
'nocomm': 0.0171947,
@@ -130,8 +130,8 @@ def __init__(self, variant):
130130
{
131131
'kesch': {
132132
'nocomm': 5.7878,
133-
'nocomp': 5.62155,
134-
'default': 5.53777
133+
'nocomp': 54.2012,
134+
'default': 55.142
135135
},
136136
'daint': {
137137
'nocomm': 0.978306,
Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)