Skip to content

Commit 153105b

Browse files
author
Vasileios Karakasis
authored
Merge branch 'master' into doc/fix-container-example
2 parents 60b54fd + 267a8e5 commit 153105b

File tree

6 files changed

+14
-12
lines changed

6 files changed

+14
-12
lines changed

cscs-checks/apps/gromacs/gromacs_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def __init__(self, output_file):
5151
class GromacsGPUCheck(GromacsBaseCheck):
5252
def __init__(self, scale, variant):
5353
super().__init__('md.log')
54-
self.valid_systems = ['daint:gpu']
54+
self.valid_systems = ['daint:gpu', 'tiger:gpu']
5555
self.descr = 'GROMACS GPU check'
5656
self.executable_opts = ['mdrun', '-dlb yes', '-ntomp 1', '-npme 0',
5757
'-s herflat.tpr']

cscs-checks/apps/tensorflow/tensorflow_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def __init__(self, model_name):
1515
self.num_gpus_per_node = 1
1616
tf_version = '1.14.0'
1717
cuda_version = '10.1.168'
18-
tc_version = '19.09'
18+
tc_version = '19.10'
1919
self.modules = ['TensorFlow/%s-CrayGNU-%s-cuda-%s-python3' %
2020
(tf_version, tc_version, cuda_version)]
2121

cscs-checks/apps/tensorflow/tf_horovod_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def __init__(self, variant):
1111
self.valid_prog_environs = ['PrgEnv-gnu']
1212
tfshortver = '1.14'
1313
self.sourcesdir = 'https://github.com/tensorflow/benchmarks'
14-
self.modules = ['Horovod/0.16.4-CrayGNU-19.09-tf-%s.0' % tfshortver]
14+
self.modules = ['Horovod/0.16.4-CrayGNU-19.10-tf-%s.0' % tfshortver]
1515
if variant == 'small':
1616
self.valid_systems += ['dom:gpu']
1717
self.num_tasks = 8

cscs-checks/libraries/boost/boost_python_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import reframe.utility.sanity as sn
33

44

5-
@rfm.parameterized_test(['1.70.0', '19.09', '2.7'], ['1.70.0', '19.09', '3.6'])
5+
@rfm.parameterized_test(['1.70.0', '19.10', '2.7'], ['1.70.0', '19.10', '3.6'])
66
class BoostCrayGnuPythonTest(rfm.RegressionTest):
77
def __init__(self, boost_version, cray_gnu_version, python_version):
88
self.descr = ('Test for Boost-%s for CrayGnu-%s with python %s '

cscs-checks/tools/profiling_and_debugging/scorep_mpi_omp.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,14 @@ def __init__(self, lang):
1313
self.descr = 'SCORE-P %s check' % lang
1414
self.valid_systems = ['daint:gpu', 'daint:mc', 'dom:gpu', 'dom:mc']
1515

16-
# Score-P fails with latest clang based cce compiler:
16+
# Score-P fails with latest clang based cce and pgi compilers:
1717
# src/measurement/thread/fork_join/scorep_thread_fork_join_omp.c:402:
1818
# Fatal: Bug 'TPD == 0': Invalid OpenMP thread specific data object.
1919
# -> removing cce from supported compiler for now.
20-
self.valid_prog_environs = ['PrgEnv-gnu', 'PrgEnv-intel', 'PrgEnv-pgi']
20+
self.valid_prog_environs = ['PrgEnv-gnu', 'PrgEnv-intel']
2121
self.prgenv_flags = {
2222
'PrgEnv-gnu': ['-g', '-fopenmp'],
2323
'PrgEnv-intel': ['-g', '-openmp'],
24-
'PrgEnv-pgi': ['-g', '-mp']
2524
}
2625
self.sourcesdir = os.path.join('src', lang)
2726
self.executable = 'jacobi'
@@ -62,7 +61,7 @@ def __init__(self, lang):
6261

6362
def setup(self, partition, environ, **job_opts):
6463
scorep_ver = '6.0'
65-
tc_ver = '19.09'
64+
tc_ver = '19.10'
6665
cu_ver = '10.1'
6766
self.scorep_modules = {
6867
'PrgEnv-gnu': ['Score-P/%s-CrayGNU-%s' % (scorep_ver, tc_ver)],
@@ -81,6 +80,4 @@ def setup(self, partition, environ, **job_opts):
8180
self.build_system.cxxflags = prgenv_flags
8281
self.build_system.fflags = prgenv_flags
8382
self.build_system.ldflags = ['-lm']
84-
self.build_system.options = [
85-
"PREP='scorep --nopreprocess --mpp=mpi --thread=omp'"
86-
]
83+
self.build_system.options = ["PREP='scorep --mpp=mpi --thread=omp'"]

cscs-checks/tools/profiling_and_debugging/src/F90/_main.F90

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,13 @@ subroutine Init (myData)
118118
endif
119119
call MPI_Get_version(version, subversion, iErr)
120120
write (6,'(3(A,I1))') 'MPI-', version, '.', subversion, '#', provided
121+
#ifdef _OPENMP
121122
write (6,*) 'Jacobi', myData%iNumProcs, 'MPI process(es) with', &
122-
omp_get_max_threads(), 'OpenMP-', _OPENMP, ' thread(s)/process'
123+
omp_get_max_threads(), 'OpenMP-', _OPENMP, ' thread(s)/process'
124+
#else
125+
write (6,*) 'Jacobi', myData%iNumProcs, 'MPI process(es) with', &
126+
' 0 OpenMP-xxx thread(s)/process'
127+
#endif
123128

124129
! MPI_Get_library_version:
125130
call MPI_Get_library_version(mpilibversion, resultlen, iErr)

0 commit comments

Comments
 (0)