Skip to content

Commit

Permalink
Print mpi command
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemartinlogan committed Oct 17, 2023
1 parent f6a1251 commit e2a3883
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jarvis_util/shell/mpi_exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(self, exec_info):
collect_output=True,
hide_output=True))
vinfo = self.stdout
print(f'MPI INFO: stdout={vinfo} stderr={self.stderr}')
# print(f'MPI INFO: stdout={vinfo} stderr={self.stderr}')
if 'mpich' in vinfo.lower():
self.version = ExecType.MPICH
elif 'Open MPI' in vinfo:
Expand Down Expand Up @@ -157,6 +157,7 @@ def mpicmd(self):
jutil = JutilManager.get_instance()
if jutil.debug_mpi_exec:
print(cmd)
print(cmd)
return cmd

class MpiExecInfo(ExecInfo):
Expand Down

0 comments on commit e2a3883

Please sign in to comment.