Skip to content

Commit 050ef43

Browse files
author
Vasileios Karakasis
authored
Merge pull request #2446 from lucamar/fix-openacc
[test] Temporary workaround for `OpenaccCudaCppCheck`
2 parents 7a06411 + 3998a62 commit 050ef43

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cscs-checks/mch/openacc_cuda_mpi_cppstd.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@ def __init__(self):
1818
self.build_system = 'Make'
1919
self.build_system.fflags = ['-O2']
2020

21+
# FIXME Temporary workaround reducing the MPI tasks per node
22+
# See https://jira.cscs.ch/browse/PROGENV-8 for Cray case
2123
if self.current_system.name in ['daint', 'dom']:
2224
self.num_tasks = 12
23-
self.num_tasks_per_node = 12
25+
self.num_tasks_per_node = 11
2426
self.num_gpus_per_node = 1
2527
self.build_system.options = ['NVCC_FLAGS="-arch=compute_60"']
2628
self.variables = {

0 commit comments

Comments
 (0)