2006-09-15 01:29:51 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2011-06-24 00:38:02 +04:00
|
|
|
* Copyright (c) 2004-2011 The University of Tennessee and The University
|
2006-09-15 01:29:51 +04:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2011-01-11 22:56:26 +03:00
|
|
|
* Copyright (c) 2010-2011 Oracle and/or its affiliates. All rights reserved.
|
2006-09-15 01:29:51 +04:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "orte_config.h"
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "orte/constants.h"
|
2006-09-15 01:29:51 +04:00
|
|
|
|
2009-04-29 04:49:23 +04:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
|
|
|
|
2008-06-18 07:15:56 +04:00
|
|
|
#if !ORTE_DISABLE_FULL_SUPPORT
|
2006-09-15 01:29:51 +04:00
|
|
|
#include "opal/mca/mca.h"
|
|
|
|
#include "opal/mca/base/base.h"
|
|
|
|
#include "opal/mca/base/mca_base_param.h"
|
2009-08-19 23:29:15 +04:00
|
|
|
#include "opal/mca/paffinity/base/base.h"
|
2010-03-23 23:47:41 +03:00
|
|
|
#include "opal/mca/sysinfo/sysinfo.h"
|
2009-02-14 05:26:12 +03:00
|
|
|
#include "opal/util/output.h"
|
2009-01-31 01:47:30 +03:00
|
|
|
#include "opal/util/path.h"
|
Squeeeeeeze the launch message. This is the message sent to the daemons that provides all the data required for launching their local procs. In reorganizing the ODLS framework, I discovered that we were sending a significant amount of unnecessary and repeated data. This commit resolves this by:
1. taking advantage of the fact that we no longer create the launch message via a GPR trigger. In earlier times, we had the GPR create the launch message based on a subscription. In that mode of operation, we could not guarantee the order in which the data was stored in the message - hence, we had no choice but to parse the message in a loop that checked each value against a list of possible "keys" until the corresponding value was found.
Now, however, we construct the message "by hand", so we know precisely what data is in each location in the message. Thus, we no longer need to send the character string "keys" for each data value any more. This represents a rather large savings in the message size - to give you an example, we typically would use a 30-char "key" for a 2-byte data value. As you can see, the overhead can become very large.
2. sending node-specific data only once. Again, because we used to construct the message via subscriptions that were done on a per-proc basis, the data for each node (e.g., the daemon's name, whether or not the node was oversubscribed) would be included in the data for each proc. Thus, the node-specific data was repeated for every proc.
Now that we construct the message "by hand", there is no reason to do this any more. Instead, we can insert the data for a specific node only once, and then provide the per-proc data for that node. We therefore not only save all that extra data in the message, but we also only need to parse the per-node data once.
The savings become significant at scale. Here is a comparison between the revised trunk and the trunk prior to this commit (all data was taken on odin, using openib, 64 nodes, unity message routing, tested with application consisting of mpi_init/mpi_barrier/mpi_finalize, all execution times given in seconds, all launch message sizes in bytes):
Per-node scaling, taken at 1ppn:
#nodes original trunk revised trunk
time size time size
1 0.10 819 0.09 564
2 0.14 1070 0.14 677
3 0.15 1321 0.14 790
4 0.15 1572 0.15 903
8 0.17 2576 0.20 1355
16 0.25 4584 0.21 2259
32 0.28 8600 0.27 4067
64 0.50 16632 0.39 7683
Per-proc scaling, taken at 64 nodes
ppn original trunk revised trunk
time size time size
1 0.50 16669 0.40 7720
2 0.55 32733 0.54 11048
3 0.87 48797 0.81 14376
4 1.0 64861 0.85 17704
Condensing those numbers, it appears we gained:
per-node message size: 251 bytes/node -> 113 bytes/node
per-proc message size: 251 bytes/proc -> 52 bytes/proc
per-job message size: 568 bytes/job -> 399 bytes/job
(job-specific data such as jobid, override oversubscribe flag, total #procs in job, total slots allocated)
The fact that the two pre-commit trunk numbers are the same confirms the fact that each proc was containing the node data as well. It isn't quite the 10x message reduction I had hoped to get, but it is significant and gives much better scaling.
Note that the timing info was, as usual, pretty chaotic - the numbers cited here were typical across several runs taken after the initial one to avoid NFS file positioning influences.
Also note that this commit removes the orte_process_info.vpid_start field and the handful of places that passed that useless value. By definition, all jobs start at vpid=0, so all we were doing is passing "0" around. In fact, many places simply hardwired it to "0" anyway rather than deal with it.
This commit was SVN r16428.
2007-10-11 19:57:26 +04:00
|
|
|
#include "opal/util/argv.h"
|
2010-04-23 08:44:41 +04:00
|
|
|
#include "opal/threads/threads.h"
|
2008-04-10 02:10:53 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "orte/mca/plm/plm_types.h"
|
|
|
|
#include "orte/util/name_fns.h"
|
|
|
|
#include "orte/runtime/orte_globals.h"
|
2008-06-09 18:53:58 +04:00
|
|
|
#include "orte/util/show_help.h"
|
2009-01-31 01:47:30 +03:00
|
|
|
#include "orte/util/parse_options.h"
|
2011-06-24 00:38:02 +04:00
|
|
|
#include "orte/mca/ess/ess.h"
|
2006-09-15 01:29:51 +04:00
|
|
|
|
|
|
|
#include "orte/mca/odls/base/odls_private.h"
|
|
|
|
|
2008-06-18 07:15:56 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "orte/mca/odls/base/base.h"
|
|
|
|
|
2006-09-15 01:29:51 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The following file was created by configure. It contains extern
|
|
|
|
* statements and the definition of an array of pointers to each
|
|
|
|
* component's public mca_base_component_t struct.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "orte/mca/odls/base/static-components.h"
|
|
|
|
|
2008-06-18 07:15:56 +04:00
|
|
|
#if ORTE_DISABLE_FULL_SUPPORT
|
|
|
|
/* have to include a bogus function here so that
|
|
|
|
* the build system sees at least one function
|
|
|
|
* in the library
|
|
|
|
*/
|
|
|
|
int orte_odls_base_open(void)
|
|
|
|
{
|
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2006-09-15 01:29:51 +04:00
|
|
|
/*
|
|
|
|
* Instantiate globals
|
|
|
|
*/
|
|
|
|
orte_odls_base_module_t orte_odls;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Framework global variables
|
|
|
|
*/
|
|
|
|
orte_odls_base_t orte_odls_base;
|
|
|
|
orte_odls_globals_t orte_odls_globals;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function for finding and opening either all MCA components, or the one
|
|
|
|
* that was specifically requested via a MCA parameter.
|
|
|
|
*/
|
|
|
|
int orte_odls_base_open(void)
|
|
|
|
{
|
2009-01-31 01:47:30 +03:00
|
|
|
char **ranks=NULL, *tmp;
|
2009-08-19 23:29:15 +04:00
|
|
|
int i, rank, sock, core;
|
2009-01-31 01:47:30 +03:00
|
|
|
orte_namelist_t *nm;
|
2009-02-02 18:06:23 +03:00
|
|
|
bool xterm_hold;
|
2010-03-23 23:47:41 +03:00
|
|
|
char *keys[] = {
|
|
|
|
OPAL_SYSINFO_CPU_TYPE,
|
|
|
|
OPAL_SYSINFO_CPU_MODEL,
|
|
|
|
OPAL_SYSINFO_NUM_CPUS,
|
|
|
|
OPAL_SYSINFO_MEM_SIZE,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
opal_list_item_t *item;
|
|
|
|
opal_sysinfo_value_t *info;
|
2009-01-31 01:47:30 +03:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
/* Debugging / verbose output. Always have stream open, with
|
|
|
|
verbose set by the mca open system... */
|
2008-06-09 18:53:58 +04:00
|
|
|
orte_odls_globals.output = opal_output_open(NULL);
|
2006-09-15 01:29:51 +04:00
|
|
|
|
2007-08-18 07:05:45 +04:00
|
|
|
mca_base_param_reg_int_name("odls", "base_sigkill_timeout",
|
2006-11-17 05:58:46 +03:00
|
|
|
"Time to wait for a process to die after issuing a kill signal to it",
|
|
|
|
false, false, 1, &orte_odls_globals.timeout_before_sigkill);
|
Bring in the code for routing xcast stage gate messages via the local orteds. This code is inactive unless you specifically request it via an mca param oob_xcast_mode (can be set to "linear" or "direct"). Direct mode is the old standard method where we send messages directly to each MPI process. Linear mode sends the xcast message via the orteds, with the HNP sending the message to each orted directly.
There is a binomial algorithm in the code (i.e., the HNP would send to a subset of the orteds, which then relay it on according to the typical log-2 algo), but that has a bug in it so the code won't let you select it even if you tried (and the mca param doesn't show, so you'd *really* have to try).
This also involved a slight change to the oob.xcast API, so propagated that as required.
Note: this has *only* been tested on rsh, SLURM, and Bproc environments (now that it has been transferred to the OMPI trunk, I'll need to re-test it [only done rsh so far]). It should work fine on any environment that uses the ORTE daemons - anywhere else, you are on your own... :-)
Also, correct a mistake where the orte_debug_flag was declared an int, but the mca param was set as a bool. Move the storage for that flag to the orte/runtime/params.c and orte/runtime/params.h files appropriately.
This commit was SVN r14475.
2007-04-23 22:41:04 +04:00
|
|
|
|
2010-04-17 05:02:41 +04:00
|
|
|
mca_base_param_reg_int_name("odls", "warn_if_not_bound",
|
|
|
|
"If nonzero, issue a warning if the program asked "
|
|
|
|
"for a binding that results in a no-op (ex: "
|
|
|
|
"bind-to-socket on a single socket node)",
|
|
|
|
false, false, 1, &i);
|
|
|
|
orte_odls_base.warn_if_not_bound = OPAL_INT_TO_BOOL(i);
|
|
|
|
|
2010-04-23 08:44:41 +04:00
|
|
|
/* initialize the global list of local children and job data */
|
|
|
|
OBJ_CONSTRUCT(&orte_local_children, opal_list_t);
|
|
|
|
OBJ_CONSTRUCT(&orte_local_children_lock, opal_mutex_t);
|
|
|
|
OBJ_CONSTRUCT(&orte_local_children_cond, opal_condition_t);
|
|
|
|
OBJ_CONSTRUCT(&orte_local_jobdata, opal_list_t);
|
|
|
|
OBJ_CONSTRUCT(&orte_local_jobdata_lock, opal_mutex_t);
|
|
|
|
OBJ_CONSTRUCT(&orte_local_jobdata_cond, opal_condition_t);
|
|
|
|
|
2009-01-08 17:25:56 +03:00
|
|
|
/* initialize ODLS globals */
|
2007-10-10 19:02:10 +04:00
|
|
|
OBJ_CONSTRUCT(&orte_odls_globals.mutex, opal_mutex_t);
|
|
|
|
OBJ_CONSTRUCT(&orte_odls_globals.cond, opal_condition_t);
|
2009-01-31 01:47:30 +03:00
|
|
|
OBJ_CONSTRUCT(&orte_odls_globals.xterm_ranks, opal_list_t);
|
|
|
|
orte_odls_globals.xtermcmd = NULL;
|
2008-04-30 23:49:53 +04:00
|
|
|
orte_odls_globals.dmap = NULL;
|
2008-08-13 21:47:24 +04:00
|
|
|
orte_odls_globals.debugger = NULL;
|
|
|
|
orte_odls_globals.debugger_launched = false;
|
2010-03-23 23:47:41 +03:00
|
|
|
OBJ_CONSTRUCT(&orte_odls_globals.sysinfo, opal_list_t);
|
2008-04-30 23:49:53 +04:00
|
|
|
|
2009-08-19 23:29:15 +04:00
|
|
|
/* get any external processor bindings */
|
|
|
|
OPAL_PAFFINITY_CPU_ZERO(orte_odls_globals.my_cores);
|
|
|
|
orte_odls_globals.bound = false;
|
|
|
|
orte_odls_globals.num_processors = 0;
|
|
|
|
OBJ_CONSTRUCT(&orte_odls_globals.sockets, opal_bitmap_t);
|
|
|
|
opal_bitmap_init(&orte_odls_globals.sockets, 16);
|
2009-08-26 06:01:49 +04:00
|
|
|
/* default the number of sockets to those found during startup */
|
2009-08-19 23:29:15 +04:00
|
|
|
orte_odls_globals.num_sockets = orte_default_num_sockets_per_board;
|
|
|
|
/* see if paffinity is supported */
|
|
|
|
if (ORTE_SUCCESS == opal_paffinity_base_get(&orte_odls_globals.my_cores)) {
|
|
|
|
/* get the number of local processors */
|
|
|
|
opal_paffinity_base_get_processor_info(&orte_odls_globals.num_processors);
|
|
|
|
/* determine if we are bound */
|
|
|
|
OPAL_PAFFINITY_PROCESS_IS_BOUND(orte_odls_globals.my_cores, &orte_odls_globals.bound);
|
|
|
|
/* if we are bound, determine the number of sockets - and which ones - that are available to us */
|
|
|
|
if (orte_odls_globals.bound) {
|
|
|
|
for (i=0; i < orte_odls_globals.num_processors; i++) {
|
2009-08-25 15:53:05 +04:00
|
|
|
if (OPAL_PAFFINITY_CPU_ISSET(i, orte_odls_globals.my_cores)) {
|
2009-08-19 23:29:15 +04:00
|
|
|
opal_paffinity_base_get_map_to_socket_core(i, &sock, &core);
|
|
|
|
opal_bitmap_set_bit(&orte_odls_globals.sockets, sock);
|
2009-08-26 06:01:49 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* determine how many sockets we have available to us */
|
|
|
|
orte_odls_globals.num_sockets = 0;
|
|
|
|
for (i=0; i < opal_bitmap_size(&orte_odls_globals.sockets); i++) {
|
|
|
|
if (opal_bitmap_is_set_bit(&orte_odls_globals.sockets, i)) {
|
2009-08-19 23:29:15 +04:00
|
|
|
orte_odls_globals.num_sockets++;
|
|
|
|
}
|
|
|
|
}
|
2010-04-17 05:02:41 +04:00
|
|
|
if (orte_report_bindings) {
|
|
|
|
orte_show_help("help-odls-base.txt",
|
|
|
|
"orte-odls-base:show-bindings",
|
|
|
|
false, orte_odls_globals.my_cores.bitmask[0]);
|
2009-08-28 17:58:46 +04:00
|
|
|
}
|
2009-08-19 23:29:15 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-31 01:47:30 +03:00
|
|
|
/* check if the user requested that we display output in xterms */
|
|
|
|
if (NULL != orte_xterm) {
|
|
|
|
/* construct a list of ranks to be displayed */
|
2009-02-02 18:06:23 +03:00
|
|
|
xterm_hold = false;
|
2009-01-31 01:47:30 +03:00
|
|
|
orte_util_parse_range_options(orte_xterm, &ranks);
|
|
|
|
for (i=0; i < opal_argv_count(ranks); i++) {
|
2009-02-02 18:06:23 +03:00
|
|
|
if (0 == strcmp(ranks[i], "BANG")) {
|
|
|
|
xterm_hold = true;
|
|
|
|
continue;
|
|
|
|
}
|
2009-01-31 01:47:30 +03:00
|
|
|
nm = OBJ_NEW(orte_namelist_t);
|
|
|
|
rank = strtol(ranks[i], NULL, 10);
|
|
|
|
if (-1 == rank) {
|
|
|
|
/* wildcard */
|
|
|
|
nm->name.vpid = ORTE_VPID_WILDCARD;
|
2011-06-24 00:38:02 +04:00
|
|
|
nm->name.epoch = ORTE_EPOCH_WILDCARD;
|
2009-01-31 01:47:30 +03:00
|
|
|
} else if (rank < 0) {
|
|
|
|
/* error out on bozo case */
|
|
|
|
orte_show_help("help-odls-base.txt",
|
|
|
|
"orte-odls-base:xterm-neg-rank",
|
|
|
|
true, rank);
|
|
|
|
return ORTE_ERROR;
|
|
|
|
} else {
|
|
|
|
/* we can't check here if the rank is out of
|
|
|
|
* range as we don't yet know how many ranks
|
|
|
|
* will be in the job - we'll check later
|
|
|
|
*/
|
|
|
|
nm->name.vpid = rank;
|
2011-06-24 00:38:02 +04:00
|
|
|
nm->name.epoch = orte_ess.proc_get_epoch(&nm->name);
|
2009-01-31 01:47:30 +03:00
|
|
|
}
|
|
|
|
opal_list_append(&orte_odls_globals.xterm_ranks, &nm->item);
|
|
|
|
}
|
|
|
|
opal_argv_free(ranks);
|
|
|
|
/* construct the xtermcmd */
|
|
|
|
orte_odls_globals.xtermcmd = NULL;
|
|
|
|
tmp = opal_find_absolute_path("xterm");
|
|
|
|
if (NULL == tmp) {
|
|
|
|
return ORTE_ERROR;
|
|
|
|
}
|
|
|
|
opal_argv_append_nosize(&orte_odls_globals.xtermcmd, tmp);
|
|
|
|
free(tmp);
|
|
|
|
opal_argv_append_nosize(&orte_odls_globals.xtermcmd, "-T");
|
|
|
|
opal_argv_append_nosize(&orte_odls_globals.xtermcmd, "save");
|
2009-02-02 18:06:23 +03:00
|
|
|
if (xterm_hold) {
|
|
|
|
opal_argv_append_nosize(&orte_odls_globals.xtermcmd, "-hold");
|
|
|
|
}
|
2009-01-31 01:47:30 +03:00
|
|
|
opal_argv_append_nosize(&orte_odls_globals.xtermcmd, "-e");
|
|
|
|
}
|
|
|
|
|
2010-03-23 23:47:41 +03:00
|
|
|
/* collect the system info */
|
|
|
|
if (NULL != opal_sysinfo.query) {
|
|
|
|
/* get and store our local resources */
|
|
|
|
opal_sysinfo.query(keys, &orte_odls_globals.sysinfo);
|
2010-08-09 23:28:56 +04:00
|
|
|
/* find our cpu model and type, save it for later */
|
2010-03-23 23:47:41 +03:00
|
|
|
for (item = opal_list_get_first(&orte_odls_globals.sysinfo);
|
2010-08-09 23:28:56 +04:00
|
|
|
item != opal_list_get_end(&orte_odls_globals.sysinfo) &&
|
2011-01-11 22:56:26 +03:00
|
|
|
(NULL == orte_local_cpu_type || NULL == orte_local_cpu_model);
|
2010-03-23 23:47:41 +03:00
|
|
|
item = opal_list_get_next(item)) {
|
|
|
|
info = (opal_sysinfo_value_t*)item;
|
|
|
|
|
2010-08-09 23:28:56 +04:00
|
|
|
if (0 == strcmp(info->key, OPAL_SYSINFO_CPU_TYPE)) {
|
|
|
|
orte_local_cpu_type = strdup(info->data.str);
|
|
|
|
}
|
2010-03-23 23:47:41 +03:00
|
|
|
if (0 == strcmp(info->key, OPAL_SYSINFO_CPU_MODEL)) {
|
|
|
|
orte_local_cpu_model = strdup(info->data.str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-15 01:29:51 +04:00
|
|
|
/* Open up all available components */
|
|
|
|
if (ORTE_SUCCESS !=
|
|
|
|
mca_base_components_open("odls", orte_odls_globals.output,
|
2010-03-23 23:47:41 +03:00
|
|
|
mca_odls_base_static_components,
|
|
|
|
&orte_odls_base.available_components, true)) {
|
|
|
|
return ORTE_ERROR;
|
|
|
|
}
|
2007-01-27 18:37:13 +03:00
|
|
|
|
|
|
|
/* are there components available for use ? -
|
|
|
|
* orte_odls_base.available_components is always initialized */
|
|
|
|
if(0 < opal_list_get_size(&(orte_odls_base.available_components))) {
|
|
|
|
orte_odls_base.components_available = true;
|
|
|
|
} else {
|
|
|
|
orte_odls_base.components_available = false;
|
|
|
|
}
|
2006-09-15 01:29:51 +04:00
|
|
|
|
|
|
|
/* All done */
|
|
|
|
|
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|
2010-05-03 08:06:13 +04:00
|
|
|
|
|
|
|
/* instance the child list object */
|
|
|
|
static void orte_odls_child_constructor(orte_odls_child_t *ptr)
|
|
|
|
{
|
|
|
|
ptr->name = NULL;
|
|
|
|
ptr->restarts = 0;
|
|
|
|
ptr->pid = 0;
|
|
|
|
ptr->app_idx = 0;
|
|
|
|
ptr->alive = false;
|
|
|
|
ptr->coll_recvd = false;
|
|
|
|
/* set the default state to "failed to start" so
|
|
|
|
* we can correctly report should something
|
|
|
|
* go wrong during launch
|
|
|
|
*/
|
|
|
|
ptr->state = ORTE_PROC_STATE_FAILED_TO_START;
|
|
|
|
ptr->exit_code = 0;
|
|
|
|
ptr->init_recvd = false;
|
|
|
|
ptr->fini_recvd = false;
|
|
|
|
ptr->rml_uri = NULL;
|
|
|
|
ptr->slot_list = NULL;
|
|
|
|
ptr->waitpid_recvd = false;
|
|
|
|
ptr->iof_complete = false;
|
|
|
|
ptr->do_not_barrier = false;
|
2011-02-17 02:03:08 +03:00
|
|
|
ptr->notified = false;
|
2010-05-03 08:06:13 +04:00
|
|
|
}
|
|
|
|
static void orte_odls_child_destructor(orte_odls_child_t *ptr)
|
|
|
|
{
|
|
|
|
if (NULL != ptr->name) free(ptr->name);
|
|
|
|
if (NULL != ptr->rml_uri) free(ptr->rml_uri);
|
|
|
|
if (NULL != ptr->slot_list) free(ptr->slot_list);
|
|
|
|
}
|
|
|
|
OBJ_CLASS_INSTANCE(orte_odls_child_t,
|
|
|
|
opal_list_item_t,
|
|
|
|
orte_odls_child_constructor,
|
|
|
|
orte_odls_child_destructor);
|
|
|
|
|
|
|
|
static void orte_odls_job_constructor(orte_odls_job_t *ptr)
|
|
|
|
{
|
|
|
|
OBJ_CONSTRUCT(&ptr->lock, opal_mutex_t);
|
|
|
|
OBJ_CONSTRUCT(&ptr->cond, opal_condition_t);
|
|
|
|
ptr->jobid = ORTE_JOBID_INVALID;
|
2011-02-17 02:03:08 +03:00
|
|
|
ptr->instance = NULL;
|
|
|
|
ptr->name = NULL;
|
2010-05-03 08:06:13 +04:00
|
|
|
ptr->state = ORTE_JOB_STATE_UNDEF;
|
|
|
|
ptr->launch_msg_processed = false;
|
|
|
|
ptr->apps = NULL;
|
|
|
|
ptr->num_apps = 0;
|
|
|
|
ptr->policy = 0;
|
|
|
|
ptr->cpus_per_rank = 1;
|
|
|
|
ptr->stride = 1;
|
|
|
|
ptr->controls = 0;
|
|
|
|
ptr->stdin_target = ORTE_VPID_INVALID;
|
|
|
|
ptr->total_slots_alloc = 0;
|
|
|
|
ptr->num_procs = 0;
|
|
|
|
ptr->num_local_procs = 0;
|
|
|
|
ptr->regexp = NULL;
|
|
|
|
ptr->pmap = NULL;
|
|
|
|
OBJ_CONSTRUCT(&ptr->collection_bucket, opal_buffer_t);
|
|
|
|
OBJ_CONSTRUCT(&ptr->local_collection, opal_buffer_t);
|
|
|
|
ptr->collective_type = ORTE_GRPCOMM_COLL_NONE;
|
|
|
|
ptr->num_contributors = 0;
|
|
|
|
ptr->num_participating = -1;
|
|
|
|
ptr->num_collected = 0;
|
|
|
|
ptr->enable_recovery = false;
|
|
|
|
}
|
|
|
|
static void orte_odls_job_destructor(orte_odls_job_t *ptr)
|
|
|
|
{
|
|
|
|
orte_app_idx_t i;
|
|
|
|
|
|
|
|
OBJ_DESTRUCT(&ptr->lock);
|
|
|
|
OBJ_DESTRUCT(&ptr->cond);
|
2011-02-17 02:03:08 +03:00
|
|
|
if (NULL != ptr->instance) {
|
|
|
|
free(ptr->instance);
|
|
|
|
}
|
|
|
|
if (NULL != ptr->name) {
|
|
|
|
free(ptr->name);
|
|
|
|
}
|
2010-05-03 08:06:13 +04:00
|
|
|
if (NULL != ptr->apps) {
|
|
|
|
for (i=0; i < ptr->num_apps; i++) {
|
|
|
|
OBJ_RELEASE(ptr->apps[i]);
|
|
|
|
}
|
|
|
|
if (NULL != ptr->apps) {
|
|
|
|
free(ptr->apps);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NULL != ptr->regexp) {
|
|
|
|
free(ptr->regexp);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NULL != ptr->pmap && NULL != ptr->pmap->bytes) {
|
|
|
|
free(ptr->pmap->bytes);
|
|
|
|
free(ptr->pmap);
|
|
|
|
}
|
|
|
|
|
|
|
|
OBJ_DESTRUCT(&ptr->collection_bucket);
|
|
|
|
OBJ_DESTRUCT(&ptr->local_collection);
|
|
|
|
}
|
|
|
|
OBJ_CLASS_INSTANCE(orte_odls_job_t,
|
|
|
|
opal_list_item_t,
|
|
|
|
orte_odls_job_constructor,
|
|
|
|
orte_odls_job_destructor);
|
|
|
|
|
2008-06-18 07:15:56 +04:00
|
|
|
#endif
|