Skip to content

Commit

Permalink
set default scattered=False
Browse files Browse the repository at this point in the history
  • Loading branch information
mtitov committed Dec 10, 2024
1 parent 9b85293 commit 69a3a4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/radical/pilot/agent/scheduler/continuous.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ def _configure(self):
a *continuous* set of cores/nodes for a task. It does, however,
also allow to scatter the allocation over discontinuous nodes if
this option is set. This implementation is not optimized for the
scattered mode! The default is 'False'.
scattered mode! The default is 'True'.
'''

self._scattered = self.session.rcfg.get('scattered', False)
self._scattered = self.session.rcfg.get('scattered', True)


# --------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/radical/pilot/resource_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ class ResourceConfig(ru.TypedDict):
GPUS_PER_NODE : 0 ,
NUMA_DOMAIN_MAP : dict() ,
SYSTEM_ARCHITECTURE : dict() ,
SCATTERED : False ,
SCATTERED : True ,

FAKE_RESOURCES : False ,
MANDATORY_ARGS : list() ,
Expand Down

0 comments on commit 69a3a4d

Please sign in to comment.