-
Notifications
You must be signed in to change notification settings - Fork 2
Removed mpich and slurm components from schizo framework #24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,7 +68,6 @@ PRTE_MAN1 = \ | |
prted.1 \ | ||
prterun.1 \ | ||
prun.1 \ | ||
psched.1 \ | ||
pterm.1 | ||
|
||
PRTE_MAN5 = \ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,4 @@ Commands (section 1) | |
prted.1.rst | ||
prterun.1.rst | ||
prun.1.rst | ||
psched.1.rst | ||
pterm.1.rst |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Was there a reason for which whitespace change? |
||
|
||
Config with ``--enable-debug``, ``--debug-daemons`` will give you lots of information. | ||
|
||
|
@@ -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 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure the changes in this file are correct. Removing this line of text from the example documentation means that the docs no longer show the compilation step. That doesn't seem right. (same for the other similar changes in this file) |
||
|
||
# Run | ||
prun --oversubscribe --merge-stderr-to-stdout \ | ||
--map-by node:DISPLAY:DISPLAYALLOC \ | ||
|
@@ -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 \ | ||
|
@@ -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 \ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,6 @@ | |
|
||
# Use the PRRTE-provided wrapper compiler | ||
|
||
CC = pcc | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you know what removing this line does? It will definitely break the functionality of this Makefile. This is probably worth talking about at the next meeting. |
||
|
||
# Using -g is not necessary, but it is helpful for example programs, | ||
# especially if users want to examine them with debuggers. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think that this statement should be removed. |
||
|
||
Make today a PMIx day! |
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think you want to remove this: this is a historical note of what happened in a specific Open MPI v2.x release.