Skip to content

Commit

Permalink
Removed references to pcc and psched from documentation and build files
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Ayele <whayel01@louisville.edu>
  • Loading branch information
Michael-uofl committed Oct 1, 2024
1 parent f28bfc1 commit 4917ae2
Show file tree
Hide file tree
Showing 12 changed files with 3 additions and 230 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,7 @@ src/tools/prun/prun
src/tools/prte_info/prte_info
src/tools/prted/prted
src/tools/prte/prte
src/tools/pcc/pcc
src/tools/pcc/pcc-wrapper-data.txt
src/tools/pterm/pterm
src/tools/psched/psched

src/util/hostfile/hostfile_lex.c
src/util/keyval/keyval_lex.c
Expand Down
4 changes: 1 addition & 3 deletions config/prte_config_files.m4
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,10 @@ AC_DEFUN([PRTE_CONFIG_FILES],[
src/etc/Makefile
src/util/Makefile
src/util/hostfile/Makefile
src/tools/pcc/Makefile
src/tools/prted/Makefile
src/tools/prun/Makefile
src/tools/prte_info/Makefile
src/tools/prte/Makefile
src/tools/pterm/Makefile
src/tools/psched/Makefile
])
])
])
1 change: 0 additions & 1 deletion docs/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ PRTE_MAN1 = \
prted.1 \
prterun.1 \
prun.1 \
psched.1 \
pterm.1

PRTE_MAN5 = \
Expand Down
1 change: 0 additions & 1 deletion docs/man/man1/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ Commands (section 1)
prted.1.rst
prterun.1.rst
prun.1.rst
psched.1.rst
pterm.1.rst
189 changes: 0 additions & 189 deletions docs/man/man1/psched.1.rst

This file was deleted.

1 change: 0 additions & 1 deletion docs/news/news-v2.x.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ series, in reverse chronological order.
- Remove event header defines
- Minor cleanups and ensure no local IOF copy
when persistent
- change the pcc wrapper compiler to a symlink
to pmixcc
- Cleanup code a bit
- Select all adapters with IPv4 addresses within
Expand Down
18 changes: 1 addition & 17 deletions docs/resilience.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ Building your application

Compile your application as usual

#. using the provided ``pcc`` for pmix-based application;
#. using your ``mpicc`` for mpi-based application with a prte-based MPI (e.g., Open MPI).

Running your application
Expand Down Expand Up @@ -128,7 +127,7 @@ Testing
--prtemca prte_abort_on_non_zero_status 0 \
--debug-daemons
# using 'errmgr_detector_enable 1' choose enable the error detector.
# using 'errmgr_detector_enable 1' choose enable the error detector.
Config with ``--enable-debug``, ``--debug-daemons`` will give you lots of information.

Expand All @@ -145,9 +144,6 @@ Step 3: under example we have 2 test codes ``error_notify.c``,

.. code-block:: bash
# Compile the codes
pcc -g error_notify.c -o error_notify
# Run
prun --oversubscribe --merge-stderr-to-stdout \
--map-by node:DISPLAY:DISPLAYALLOC \
Expand All @@ -159,12 +155,6 @@ If use external pmix:

.. code-block:: bash
# Compile
pcc error_notify.c -o error_notify_1 \
-I/external_pmix_install_path/include \
-L/external_pmix_install_path/lib \
-lpmix
# Run
prun --oversubscribe -x LD_LIBRARY_PATH \
--merge-stderr-to-stdout \
Expand All @@ -177,12 +167,6 @@ Iif use external pmix:

.. code-block:: bash
# Compile
pcc daemon_error_notify.c -o daemon_error_notify_1 \
-I/external_pmix_install_path/include \
-L/external_pmix_install_path/lib \
-lpmix
# Run
prun --oversubscribe -x LD_LIBRARY_PATH \
--merge-stderr-to-stdout \
Expand Down
1 change: 0 additions & 1 deletion examples/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

# Use the PRRTE-provided wrapper compiler

CC = pcc

# Using -g is not necessary, but it is helpful for example programs,
# especially if users want to examine them with debuggers.
Expand Down
2 changes: 0 additions & 2 deletions examples/README
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,4 @@ been directed _not_ to return any collected data from calls to PMIx_Put.
dynamic.c:


The Makefile assumes that the pcc wrapper compiler is in your path.

Make today a PMIx day!
2 changes: 0 additions & 2 deletions src/docs/show-help-files/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ RST_SOURCE_FILES = \
$(srcdir)/help-prted.rst \
$(srcdir)/help-prterun.rst \
$(srcdir)/help-prun.rst \
$(srcdir)/help-psched.rst \
$(srcdir)/help-pterm.rst \
$(srcdir)/help-cli.rst \
$(srcdir)/help-dash-host.rst \
Expand All @@ -60,7 +59,6 @@ ALL_TXT_BUILT = \
$(TXT_OUTDIR)/help-prted.txt \
$(TXT_OUTDIR)/help-prterun.txt \
$(TXT_OUTDIR)/help-prun.txt \
$(TXT_OUTDIR)/help-psched.txt \
$(TXT_OUTDIR)/help-pterm.txt \
$(TXT_OUTDIR)/help-cli.txt \
$(TXT_OUTDIR)/help-dash-host.txt \
Expand Down
9 changes: 1 addition & 8 deletions src/tools/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,14 @@
SUBDIRS += \
tools/prted \
tools/prun \
tools/pcc \
tools/prte_info \
tools/prte \
tools/pterm

if WANT_PRTE_SCHED
SUBDIRS += \
tools/psched
endif

DIST_SUBDIRS += \
tools/prted \
tools/prun \
tools/pcc \
tools/prte_info \
tools/prte \
tools/pterm \
tools/psched

2 changes: 0 additions & 2 deletions test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@

# Use the PRTE-provided wrapper compiler

CC = pcc

# Using -g is not necessary, but it is helpful for example programs,
# especially if users want to examine them with debuggers.

Expand Down

0 comments on commit 4917ae2

Please sign in to comment.