Skip to content

Commit

Permalink
Merge branch 'master' of github.com:grc-iit/jarvis-util
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemartinlogan committed Oct 26, 2023
2 parents 7546b96 + 3524785 commit 965f721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jarvis_util/shell/mpi_exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def mpicmd(self):
params = [f'mpiexec -n {self.nprocs}']
params.append('--oversubscribe')
if self.ppn is not None:
params.append(f'-ppn {self.ppn}')
params.append(f'-npernode {self.ppn}')
if len(self.hostfile):
if self.hostfile.is_subset() or self.hostfile.path is None:
params.append(f'--host {",".join(self.hostfile.hosts)}')
Expand Down

0 comments on commit 965f721

Please sign in to comment.