Skip to content

Commit 847eefd

Browse files
committed
Cleanup 'orte' ompi dir.
Signed-off-by: Austen Lauria <awlauria@us.ibm.com>
1 parent 0ea7289 commit 847eefd

File tree

10 files changed

+16
-19
lines changed

10 files changed

+16
-19
lines changed

ompi/debuggers/ompi_debuggers.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@
2626
* MPI portion of debugger support: initially based on the
2727
* TotalView/Etnus API for debuggers to attach to MPI jobs.
2828
*
29-
* There is a lengthy explanation of how OMPI handles parallel
30-
* debuggers attaching to MPI jobs in orte/tools/orterun/debuggers.c.
3129
*/
3230

3331
#include "ompi_config.h"

ompi/dpm/dpm.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1148,7 +1148,7 @@ int ompi_dpm_spawn(int count, const char *array_of_commands[],
11481148
#endif
11491149

11501150
/* check for 'ompi_prefix' (OMPI-specific -- to effect the same
1151-
* behavior as --prefix option to orterun)
1151+
* behavior as --prefix option to prun)
11521152
*
11531153
* This is a job-level key
11541154
*/
@@ -1472,7 +1472,7 @@ int ompi_dpm_spawn(int count, const char *array_of_commands[],
14721472
}
14731473
#endif
14741474

1475-
/* see if this is a non-mpi job - if so, then set the flag so ORTE
1475+
/* see if this is a non-mpi job - if so, then set the flag so PRTE
14761476
* knows what to do - job-level key
14771477
*/
14781478
ompi_info_get_bool(array_of_info[i], "ompi_non_mpi", &non_mpi, &flag);
@@ -2057,7 +2057,7 @@ static int start_dvm(char **hostfiles, char **dash_host)
20572057
will) reset them. If we don't do this, the event
20582058
library may have left some set that, at least on some
20592059
OS's, don't get reset via fork() or exec(). Hence, the
2060-
orted could be unkillable (for example). */
2060+
prted could be unkillable (for example). */
20612061
set_handler_default(SIGTERM);
20622062
set_handler_default(SIGINT);
20632063
set_handler_default(SIGHUP);
@@ -2067,9 +2067,9 @@ static int start_dvm(char **hostfiles, char **dash_host)
20672067
/* Unblock all signals, for many of the same reasons that
20682068
we set the default handlers, above. This is noticable
20692069
on Linux where the event library blocks SIGTERM, but we
2070-
don't want that blocked by the orted (or, more
2070+
don't want that blocked by the prted (or, more
20712071
specifically, we don't want it to be blocked by the
2072-
orted and then inherited by the ORTE processes that it
2072+
prted and then inherited by the PRTE processes that it
20732073
forks, making them unkillable by SIGTERM). */
20742074
sigprocmask(0, 0, &sigs);
20752075
sigprocmask(SIG_UNBLOCK, &sigs, 0);

ompi/include/ompi/constants.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
/* error codes */
2929
enum {
30-
/* Error codes inherited from ORTE/OPAL. Still enum values so
30+
/* Error codes inherited from OPAL. Still enum values so
3131
that we might get nice debugger help */
3232
OMPI_SUCCESS = OPAL_SUCCESS,
3333
OMPI_ERROR = OPAL_ERROR,

ompi/mca/coll/sm/coll_sm_module.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ static int bootstrap_comm(ompi_communicator_t *comm,
507507
/* Make the rendezvous filename for this communicators shmem data
508508
segment. The CID is not guaranteed to be unique among all
509509
procs on this node, so also pair it with the PID of the proc
510-
with the lowest ORTE name to form a unique filename. */
510+
with the lowest PMIx name to form a unique filename. */
511511
proc = ompi_group_peer_lookup(comm->c_local_group, 0);
512512
lowest_name = OMPI_CAST_RTE_NAME(&proc->super.proc_name);
513513
for (int i = 1; i < comm_size; ++i) {

ompi/mca/mca.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
/**
2323
* @file
2424
*
25-
* Top-level interface for \em all orte MCA components.
25+
* Top-level interface for all MCA components.
2626
*/
2727

2828
#ifndef OMPI_MCA_H

ompi/proc/proc.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,8 @@ OMPI_DECLSPEC ompi_proc_t * ompi_proc_find_and_add(const ompi_process_name_t * n
286286
* Pack proc list into portable buffer
287287
*
288288
* This function takes a list of ompi_proc_t pointers (e.g. as given
289-
* in groups) and returns a orte buffer containing all information
290-
* needed to add the proc to a remote list. This includes the ORTE
289+
* in groups) and returns a pmix buffer containing all information
290+
* needed to add the proc to a remote list. This includes the
291291
* process name, the architecture, and the hostname. Ordering is
292292
* maintained. The buffer is packed to be sent to a remote node with
293293
* different architecture (endian or word size).

ompi/runtime/ompi_mpi_abort.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,7 @@ ompi_mpi_abort(struct ompi_communicator_t* comm,
189189
/* We can fall through to here in a few cases:
190190
191191
1. The attempt to kill just a subset of peers via
192-
try_kill_peers() failed (e.g., as of July 2014, ORTE does
193-
returns NOT_IMPLENTED from orte_rte_abort_peers()).
192+
try_kill_peers() failed.
194193
2. MPI wasn't initialized, was already finalized, or we got a
195194
NULL communicator.
196195

ompi/runtime/ompi_mpi_finalize.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ int ompi_mpi_finalize(void)
205205
opal_progress_set_event_flag(OPAL_EVLOOP_ONCE | OPAL_EVLOOP_NONBLOCK);
206206
#endif
207207

208-
/* Redo ORTE calling opal_progress_event_users_increment() during
208+
/* Redo PRTE calling opal_progress_event_users_increment() during
209209
MPI lifetime, to get better latency when not using TCP */
210210
opal_progress_event_users_increment();
211211

ompi/runtime/ompi_rte.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
* to define when it should be built.
2424
*
2525
* Each component must provide a number of types and functions that mimic
26-
* those provided by ORTE. These include (where flexibility exists, the
27-
* ORTE data type is shown, but any compatible type is allowed. For example,
26+
* those provided by PRTE. These include (where flexibility exists, the
27+
* pmix data type is shown, but any compatible type is allowed. For example,
2828
* the jobid field in ompi_process_name_t could be any type of integer, but
2929
* cannot be a string):
3030
*
@@ -69,7 +69,7 @@
6969
* 1. ompi_rte_collective_t - an OPAL object used during RTE collective operations
7070
* such as modex and barrier. It must be an opal_list_item_t and contain the
7171
* following fields:
72-
* a. id (ORTE type: int32_t)
72+
* a. id (pmix type: int32_t)
7373
* b. bool active
7474
* flag that user can poll on to know when collective
7575
* has completed - set to false just prior to

ompi/tools/wrappers/ompi_wrapper_script.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ my $comp_flags = "";
6262
my $comp_flags_prefix = "";
6363
my $linker_flags = $libdir_flag . $libdir . " " . $extra_ldflags;
6464
# Note that per https://svn.open-mpi.org/trac/ompi/ticket/3422, we
65-
# intentionally only link in the MPI libraries (ORTE, OPAL, etc. are
65+
# intentionally only link in the MPI libraries (OPAL, etc. are
6666
# pulled in implicitly) because we intend MPI applications to only use
6767
# the MPI API.
6868
my $libs = "-l".$ompi_libmpi_name." " . $extra_libs;

0 commit comments

Comments
 (0)