Skip to content

Commit 062f7a2

Browse files
committed
Update DVM launch command to use 'srun' with PMIx v4 for improved compatibility
1 parent 877124e commit 062f7a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ipsframework/services.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2659,8 +2659,8 @@ def setup(self, worker: Worker):
26592659

26602660
self.logger.info(f'Launching DVM')
26612661
self.worker.dvm_uri_file = f'/tmp/dvm.uri.{os.getpid()}'
2662-
command = ['srun', '--mpi=pmix', '-N', os.environ['SLURM_NNODES'],
2663-
'--ntasks-per-node=1', 'prte', '--no-daemonize',
2662+
command = ['srun', '--mpi=pmix_v4', '-N', os.environ['SLURM_NNODES'],
2663+
'--ntasks-per-node=1', 'prte', #'--no-daemonize',
26642664
'--report-uri', self.worker.dvm_uri_file]
26652665

26662666
mapping_policy = 'core' # by default bind to cores

0 commit comments

Comments
 (0)