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
8 changes: 4 additions & 4 deletions cscs-checks/apps/cpmd/cpmd_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ def setup_run(self):
# common setup for every architecture
self.job.launcher.options = ['--cpu-bind=cores']
self.job.options = ['--distribution=block:block']
# FIXME: the current test case does not scale beyond 72 MPI tasks,
# so the last node in 16-nodes jobs will be used only partially.
# The test case needs to be updated (warning about XC_DRIVER IN &DFT)
self.num_tasks = 72
# FIXME: the current test case does not scale beyond 72 MPI tasks
# and needs to be updated (see the warning about XC_DRIVER IN &DFT)
self.num_tasks_per_node = 72 // self.num_nodes
self.num_tasks = self.num_nodes * self.num_tasks_per_node

try:
found = self.references[self.num_nodes][arch]
Expand Down