Skip to content

Commit 2979bb2

Browse files
committed
Update PMIx and PRRTE to reduce mpirun complexity
Use "prte" instead of "prun" for proxy execution of cmds like mpirun. This avoids the fork/exec-rendezvous complexities and should result in more reliable operation. Signed-off-by: Ralph Castain <[email protected]>
1 parent b3f0bc5 commit 2979bb2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

ompi/tools/mpirun/Makefile.am

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2019 Intel, Inc. All rights reserved.
2+
# Copyright (c) 2019-2020 Intel, Inc. All rights reserved.
33
# Copyright (c) 2020 IBM Corporation. All rights reserved.
44
# $COPYRIGHT$
55
#
@@ -10,9 +10,9 @@
1010

1111
if OMPI_WANT_PRRTE
1212
install-exec-hook:
13-
(cd $(DESTDIR)$(bindir); rm -f mpirun$(EXEEXT); $(LN_S) prun$(EXEEXT) mpirun$(EXEEXT))
14-
(cd $(DESTDIR)$(bindir); rm -f mpiexec$(EXEEXT); $(LN_S) prun$(EXEEXT) mpiexec$(EXEEXT))
15-
(cd $(DESTDIR)$(bindir); rm -f oshrun$(EXEEXT); $(LN_S) prun$(EXEEXT) oshrun$(EXEEXT))
13+
(cd $(DESTDIR)$(bindir); rm -f mpirun$(EXEEXT); $(LN_S) prte$(EXEEXT) mpirun$(EXEEXT))
14+
(cd $(DESTDIR)$(bindir); rm -f mpiexec$(EXEEXT); $(LN_S) prte$(EXEEXT) mpiexec$(EXEEXT))
15+
(cd $(DESTDIR)$(bindir); rm -f oshrun$(EXEEXT); $(LN_S) prte$(EXEEXT) oshrun$(EXEEXT))
1616

1717
uninstall-local:
1818
rm -f $(DESTDIR)$(bindir)/mpirun$(EXEEXT) \

0 commit comments

Comments
 (0)