Skip to content

Commit 0ea7289

Browse files
committed
Cleanup 'orte' opal dir.
Signed-off-by: Austen Lauria <[email protected]>
1 parent 29ab538 commit 0ea7289

File tree

12 files changed

+18
-27
lines changed

12 files changed

+18
-27
lines changed

opal/include/opal_config_bottom.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ typedef struct {
551551
directly in opal_config.h because they'll be turned into #defines'
552552
via autoconf.
553553
554-
So put them here in case any only else includes OMPI/ORTE/OPAL's
554+
So put them here in case any only else includes OMPI/OPAL's
555555
config.h files. */
556556

557557
# undef PACKAGE_BUGREPORT

opal/include/opal_config_top.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
/* The only purpose of this file is to undef the PACKAGE_<foo> macros
2323
that are put in by autoconf/automake projects. Specifically, if
2424
you include a .h file from another project that defines these
25-
macros (e.g., gmp.h) and then include OMPI/ORTE/OPAL's config.h,
25+
macros (e.g., gmp.h) and then include OMPI/OPAL's config.h,
2626
you'll get a preprocessor conflict. So put these undef's here to
2727
protect us from other package's PACKAGE_<foo> macros.
2828

opal/mca/btl/usnic/README.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Goals
2323
Anti-Goals
2424
----------
2525
* Testing the low level networking API (e.g., libfabric).
26-
* Testing inter-process interaction, such as ORTE-related functionality.
26+
* Testing inter-process interaction, such as PRTE-related functionality.
2727

2828
Constraints
2929
-----------

opal/mca/btl/usnic/btl_usnic_recv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ static inline opal_btl_usnic_endpoint_t *lookup_sender(opal_btl_usnic_module_t *
6060
int ret;
6161
opal_btl_usnic_endpoint_t *sender;
6262

63-
/* Use the hashed ORTE process name in the BTL header to uniquely
63+
/* Use the hashed PRTE process name in the BTL header to uniquely
6464
identify the sending process (using the MAC/hardware address
65-
only identifies the sending server -- not the sending ORTE
65+
only identifies the sending server -- not the sending PRTE
6666
process). */
6767
/* JMS We've experimented with using a handshake before sending
6868
any data so that instead of looking up a hash on the

opal/mca/hwloc/base/hwloc_base_maffinity.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@
1818
/*
1919
* Don't use show_help() here (or print any error message at all).
2020
* Let the upper layer output a relevant message, because doing so may
21-
* be complicated (e.g., this might be called from the ORTE ODLS,
22-
* which has to do some extra steps to get error messages to be
23-
* displayed).
21+
* be complicated.
2422
*/
2523
int opal_hwloc_base_set_process_membind_policy(void)
2624
{

opal/mca/hwloc/base/hwloc_base_proc_mempolicy.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@
1717
/*
1818
* Don't use show_help() here (or print any error message at all).
1919
* Let the upper layer output a relevant message, because doing so may
20-
* be complicated (e.g., this might be called from the ORTE ODLS,
21-
* which has to do some extra steps to get error messages to be
22-
* displayed).
20+
* be complicated.
2321
*/
2422
int opal_hwloc_base_set_process_membind_policy(void)
2523
{

opal/mca/hwloc/hwloc-internal.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,8 @@ typedef uint16_t opal_binding_policy_t;
203203
* cpu list based on its node-local-rank */
204204
#define OPAL_BIND_ORDERED 0x8000
205205

206-
/* binding policies - any changes in these
207-
* values must be reflected in orte/mca/rmaps/rmaps.h
206+
/*
207+
* binding policies
208208
*/
209209
#define OPAL_BIND_TO_NONE 1
210210
#define OPAL_BIND_TO_BOARD 2

opal/mca/shmem/base/base.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ OPAL_DECLSPEC int opal_shmem_unlink(opal_shmem_ds_t *ds_buf);
5555
*
5656
* @retval name of best component. NULL if no component is found.
5757
*
58-
* see: orte/mca/odls/base/odls_base_default_fns.c
58+
* see: 3rd-party/prrte/src/mca/odls/base/odls_base_default_fns.c
5959
*/
6060
OPAL_DECLSPEC char *opal_shmem_base_best_runnable_component_name(void);
6161

opal/mca/shmem/base/shmem_base_select.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ opal_shmem_base_module_t *opal_shmem_base_module = NULL;
4242
/*
4343
* Performs a run-time query across all available shmem components.
4444
* Similar to mca_base_select, but take into consideration environment
45-
* hints provided by orte.
45+
* hints provided by prte.
4646
*/
4747
static int opal_shmem_base_runtime_query(mca_base_module_t **best_module,
4848
mca_base_component_t **best_component)

opal/tools/wrappers/generic_wrapper.1in

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ back-end compiler.
8080
.
8181
.
8282
.SS Background
83-
Open MPI is comprised of three software layers: OPAL (Open Portable
84-
Access Layer), ORTE (Open Run-Time Environment), and OMPI (Open MPI).
83+
Open MPI is comprised of two software layers:
84+
OPAL (Open Portable Access Layer), and OMPI (Open MPI).
8585
There are wrapper compilers for each layer; each layer's wrapper only
8686
links in the libraries relevant for that layer. Specifically, each
8787
layer provides the following wrapper compilers:
@@ -91,10 +91,6 @@ OPAL
9191
\fIopalcc\fR and \fIopalc++\fR
9292
.
9393
.TP
94-
ORTE
95-
\fIortecc\fR and \fIortec++\fR
96-
.
97-
.TP
9894
OMPI
9995
\fImpicc\fR, \fImpic++\fR, \fImpicxx\fR, \fImpiCC\fR (only on systems with
10096
case-senstive file systems), and \fImpifort\fR (and its legacy/deprecated

0 commit comments

Comments
 (0)