2005-01-30 04:42:57 +03:00
|
|
|
/*
|
2007-03-17 02:11:45 +03:00
|
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
2005-11-05 22:57:48 +03:00
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2006-08-24 20:38:08 +04:00
|
|
|
* Copyright (c) 2004-2006 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2005-01-30 04:42:57 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2008-05-27 18:16:39 +04:00
|
|
|
* Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
|
2005-01-30 04:42:57 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
2005-09-03 15:49:46 +04:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
2005-09-07 01:41:55 +04:00
|
|
|
* Warning: this is not for the faint of heart -- don't even bother
|
|
|
|
* reading this source code if you don't have a strong understanding
|
2005-09-15 06:18:16 +04:00
|
|
|
* of nested data structures and pointer math (remember that
|
2005-09-07 01:41:55 +04:00
|
|
|
* associativity and order of C operations is *critical* in terms of
|
|
|
|
* pointer math!).
|
2005-09-03 15:49:46 +04:00
|
|
|
*/
|
2005-01-30 04:42:57 +03:00
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2009-05-22 02:36:06 +04:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
2005-08-24 01:22:00 +04:00
|
|
|
#ifdef HAVE_SCHED_H
|
|
|
|
#include <sched.h>
|
|
|
|
#endif
|
2005-09-02 16:57:47 +04:00
|
|
|
#include <sys/types.h>
|
2005-12-11 01:11:10 +03:00
|
|
|
#ifdef HAVE_SYS_MMAN_H
|
2005-08-24 01:22:00 +04:00
|
|
|
#include <sys/mman.h>
|
2005-12-11 01:11:10 +03:00
|
|
|
#endif /* HAVE_SYS_MMAN_H */
|
|
|
|
#ifdef HAVE_UNISTD_H
|
2005-09-02 16:57:47 +04:00
|
|
|
#include <unistd.h>
|
2005-12-11 01:11:10 +03:00
|
|
|
#endif /* HAVE_UNISTD_H */
|
2005-01-30 04:42:57 +03:00
|
|
|
|
|
|
|
#include "mpi.h"
|
2005-09-02 16:57:47 +04:00
|
|
|
#include "opal/mca/maffinity/maffinity.h"
|
|
|
|
#include "opal/mca/maffinity/base/base.h"
|
2006-08-24 20:38:08 +04:00
|
|
|
#include "opal/util/os_path.h"
|
2008-02-28 04:57:57 +03:00
|
|
|
|
|
|
|
#include "orte/util/proc_info.h"
|
|
|
|
#include "orte/util/name_fns.h"
|
|
|
|
|
2005-07-16 00:01:35 +04:00
|
|
|
#include "ompi/communicator/communicator.h"
|
|
|
|
#include "ompi/mca/coll/coll.h"
|
|
|
|
#include "ompi/mca/coll/base/base.h"
|
|
|
|
#include "ompi/mca/mpool/base/base.h"
|
2005-09-15 06:18:16 +04:00
|
|
|
#include "ompi/proc/proc.h"
|
2005-01-30 04:42:57 +03:00
|
|
|
#include "coll_sm.h"
|
|
|
|
|
|
|
|
|
2005-09-07 17:33:43 +04:00
|
|
|
/*
|
|
|
|
* Global variables
|
|
|
|
*/
|
|
|
|
uint32_t mca_coll_sm_iov_size = 1;
|
|
|
|
|
|
|
|
|
2005-08-24 01:22:00 +04:00
|
|
|
/*
|
|
|
|
* Local functions
|
|
|
|
*/
|
2008-07-29 02:40:57 +04:00
|
|
|
static int sm_module_enable(mca_coll_base_module_t *module,
|
2007-08-19 07:37:49 +04:00
|
|
|
struct ompi_communicator_t *comm);
|
2007-08-04 04:41:26 +04:00
|
|
|
static bool have_local_peers(ompi_group_t *group, size_t size);
|
2005-08-24 01:22:00 +04:00
|
|
|
static int bootstrap_init(void);
|
2007-08-19 07:37:49 +04:00
|
|
|
static int bootstrap_comm(ompi_communicator_t *comm,
|
|
|
|
mca_coll_sm_module_t *module);
|
2005-08-24 01:22:00 +04:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables
|
|
|
|
*/
|
|
|
|
static bool bootstrap_inited = false;
|
|
|
|
|
|
|
|
|
2005-01-30 04:42:57 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Initial query function that is invoked during MPI_INIT, allowing
|
2005-07-15 19:23:19 +04:00
|
|
|
* this component to disqualify itself if it doesn't support the
|
2005-08-24 01:22:00 +04:00
|
|
|
* required level of thread support. This function is invoked exactly
|
|
|
|
* once.
|
2005-01-30 04:42:57 +03:00
|
|
|
*/
|
2005-03-27 17:05:23 +04:00
|
|
|
int mca_coll_sm_init_query(bool enable_progress_threads,
|
|
|
|
bool enable_mpi_threads)
|
2005-01-30 04:42:57 +03:00
|
|
|
{
|
2005-08-24 01:22:00 +04:00
|
|
|
#if 0
|
|
|
|
/* JMS: Arrgh. Unfortunately, we don't have this information by
|
|
|
|
the time this is invoked -- the GPR compound command doesn't
|
|
|
|
fire until after coll_base_open() in ompi_mpi_init(). */
|
|
|
|
|
|
|
|
ompi_proc_t **procs;
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
/* Check to see if anyone is local on this machine. If not, don't
|
|
|
|
bother doing anything else. */
|
|
|
|
|
|
|
|
procs = ompi_proc_all(&size);
|
|
|
|
if (NULL == procs || 0 == size) {
|
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
|
|
|
if (!have_local_peers(procs, size)) {
|
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
|
|
|
free(procs);
|
|
|
|
#endif
|
|
|
|
|
2005-10-06 17:17:27 +04:00
|
|
|
/* Don't do much here because we don't really want to allocate any
|
|
|
|
shared memory until this component is selected to be used. */
|
2005-08-24 01:22:00 +04:00
|
|
|
|
2005-10-06 17:17:27 +04:00
|
|
|
mca_coll_sm_component.sm_data_mpool_created = false;
|
|
|
|
mca_coll_sm_component.sm_component_setup = false;
|
|
|
|
opal_atomic_init(&mca_coll_sm_component.sm_component_setup_lock, 0);
|
2005-08-24 01:22:00 +04:00
|
|
|
|
|
|
|
/* Alles gut */
|
|
|
|
|
2005-01-30 04:42:57 +03:00
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Invoked when there's a new communicator that has been created.
|
|
|
|
* Look at the communicator and decide which set of functions and
|
|
|
|
* priority we want to return.
|
|
|
|
*/
|
2008-07-29 02:40:57 +04:00
|
|
|
mca_coll_base_module_t *
|
2007-08-19 07:37:49 +04:00
|
|
|
mca_coll_sm_comm_query(struct ompi_communicator_t *comm, int *priority)
|
2005-01-30 04:42:57 +03:00
|
|
|
{
|
2007-08-19 07:37:49 +04:00
|
|
|
mca_coll_sm_module_t *sm_module;
|
|
|
|
|
2005-10-06 17:17:27 +04:00
|
|
|
/* See if someone has previously lazily initialized and failed */
|
|
|
|
|
|
|
|
if (mca_coll_sm_component.sm_component_setup &&
|
|
|
|
!mca_coll_sm_component.sm_component_setup_success) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-01-30 04:42:57 +03:00
|
|
|
/* If we're intercomm, or if there's only one process in the
|
2005-08-24 01:22:00 +04:00
|
|
|
communicator, or if not all the processes in the communicator
|
|
|
|
are not on this node, then we don't want to run */
|
2005-01-30 04:42:57 +03:00
|
|
|
|
2005-08-24 01:22:00 +04:00
|
|
|
if (OMPI_COMM_IS_INTER(comm) || 1 == ompi_comm_size(comm) ||
|
2007-08-04 04:41:26 +04:00
|
|
|
!have_local_peers(comm->c_local_group, ompi_comm_size(comm))) {
|
2005-01-30 04:42:57 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-09-15 06:18:16 +04:00
|
|
|
/* If the number of processes in this communicator is larger than
|
|
|
|
(mca_coll_sm_component.sm_control_size / sizeof(uint32_t)),
|
|
|
|
then we can't handle it. */
|
|
|
|
|
|
|
|
if (((unsigned) ompi_comm_size(comm)) >
|
|
|
|
mca_coll_sm_component.sm_control_size / sizeof(uint32_t)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-01-30 04:42:57 +03:00
|
|
|
/* Get our priority */
|
|
|
|
|
2008-05-27 18:16:39 +04:00
|
|
|
|
|
|
|
/* Get the priority level attached to this module. If priority is less
|
|
|
|
* than or equal to 0, then the module is unavailable. */
|
2005-07-16 00:01:35 +04:00
|
|
|
*priority = mca_coll_sm_component.sm_priority;
|
2008-05-27 18:16:39 +04:00
|
|
|
if (0 >= mca_coll_sm_component.sm_priority) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-01-30 04:42:57 +03:00
|
|
|
|
2005-07-16 00:01:35 +04:00
|
|
|
/* All is good -- return a module */
|
2007-08-19 07:37:49 +04:00
|
|
|
sm_module = OBJ_NEW(mca_coll_sm_module_t);
|
|
|
|
|
|
|
|
sm_module->super.coll_module_enable = sm_module_enable;
|
|
|
|
sm_module->super.ft_event = mca_coll_sm_ft_event;
|
|
|
|
sm_module->super.coll_allgather = NULL;
|
|
|
|
sm_module->super.coll_allgatherv = NULL;
|
|
|
|
sm_module->super.coll_allreduce = mca_coll_sm_allreduce_intra;
|
|
|
|
sm_module->super.coll_alltoall = NULL;
|
|
|
|
sm_module->super.coll_alltoallv = NULL;
|
|
|
|
sm_module->super.coll_alltoallw = NULL;
|
|
|
|
sm_module->super.coll_barrier = mca_coll_sm_barrier_intra;
|
|
|
|
sm_module->super.coll_bcast = mca_coll_sm_bcast_intra;
|
|
|
|
sm_module->super.coll_exscan = NULL;
|
|
|
|
sm_module->super.coll_gather = NULL;
|
|
|
|
sm_module->super.coll_gatherv = NULL;
|
|
|
|
sm_module->super.coll_reduce = mca_coll_sm_reduce_intra;
|
|
|
|
sm_module->super.coll_reduce_scatter = NULL;
|
|
|
|
sm_module->super.coll_scan = NULL;
|
|
|
|
sm_module->super.coll_scatter = NULL;
|
|
|
|
sm_module->super.coll_scatterv = NULL;
|
|
|
|
|
|
|
|
return &(sm_module->super);
|
2005-01-30 04:42:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Init module on the communicator
|
|
|
|
*/
|
2007-08-19 07:37:49 +04:00
|
|
|
static int
|
2008-07-29 02:40:57 +04:00
|
|
|
sm_module_enable(mca_coll_base_module_t *module,
|
2007-08-19 07:37:49 +04:00
|
|
|
struct ompi_communicator_t *comm)
|
2005-01-30 04:42:57 +03:00
|
|
|
{
|
2007-08-19 07:37:49 +04:00
|
|
|
int i, j, root, ret;
|
2005-09-02 16:57:47 +04:00
|
|
|
int rank = ompi_comm_rank(comm);
|
|
|
|
int size = ompi_comm_size(comm);
|
2007-08-19 07:37:49 +04:00
|
|
|
mca_coll_sm_module_t *sm_module = (mca_coll_sm_module_t*) module;
|
|
|
|
mca_coll_sm_comm_t *data = NULL;
|
2005-09-02 16:57:47 +04:00
|
|
|
size_t control_size, frag_size;
|
2005-08-24 01:22:00 +04:00
|
|
|
mca_coll_sm_component_t *c = &mca_coll_sm_component;
|
2005-09-07 01:41:55 +04:00
|
|
|
opal_maffinity_base_segment_t *maffinity;
|
2005-09-02 16:57:47 +04:00
|
|
|
int parent, min_child, max_child, num_children;
|
2007-07-30 18:44:37 +04:00
|
|
|
char *base = NULL;
|
2005-09-02 16:57:47 +04:00
|
|
|
const int num_barrier_buffers = 2;
|
|
|
|
|
2008-04-22 22:41:21 +04:00
|
|
|
if (NULL == comm->c_coll.coll_reduce ||
|
|
|
|
NULL == comm->c_coll.coll_reduce_module) {
|
2007-08-19 07:37:49 +04:00
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
|
|
|
|
2005-10-06 17:17:27 +04:00
|
|
|
/* Once-per-component setup. This may happen at any time --
|
|
|
|
during MPI_INIT or later. So we must protect this with locks
|
|
|
|
to ensure that only one thread in the process actually does
|
|
|
|
this setup. */
|
|
|
|
|
|
|
|
opal_atomic_lock(&mca_coll_sm_component.sm_component_setup_lock);
|
|
|
|
if (!mca_coll_sm_component.sm_component_setup) {
|
|
|
|
mca_coll_sm_component.sm_component_setup = true;
|
|
|
|
|
2007-08-19 07:37:49 +04:00
|
|
|
if (OMPI_SUCCESS != (ret = bootstrap_init())) {
|
2005-10-06 17:17:27 +04:00
|
|
|
mca_coll_sm_component.sm_component_setup_success = false;
|
|
|
|
opal_atomic_unlock(&mca_coll_sm_component.sm_component_setup_lock);
|
2007-08-19 07:37:49 +04:00
|
|
|
return ret;
|
2005-10-06 17:17:27 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Can we get an mpool allocation? See if there was one created
|
|
|
|
already. If not, try to make one. */
|
|
|
|
|
|
|
|
mca_coll_sm_component.sm_data_mpool =
|
|
|
|
mca_mpool_base_module_lookup(mca_coll_sm_component.sm_mpool_name);
|
|
|
|
if (NULL == mca_coll_sm_component.sm_data_mpool) {
|
|
|
|
mca_coll_sm_component.sm_data_mpool =
|
|
|
|
mca_mpool_base_module_create(mca_coll_sm_component.sm_mpool_name,
|
|
|
|
NULL, NULL);
|
|
|
|
if (NULL == mca_coll_sm_component.sm_data_mpool) {
|
|
|
|
mca_coll_sm_bootstrap_finalize();
|
|
|
|
mca_coll_sm_component.sm_component_setup_success = false;
|
|
|
|
opal_atomic_unlock(&mca_coll_sm_component.sm_component_setup_lock);
|
2007-08-19 07:37:49 +04:00
|
|
|
return OMPI_ERR_TEMP_OUT_OF_RESOURCE;
|
2005-10-06 17:17:27 +04:00
|
|
|
}
|
|
|
|
mca_coll_sm_component.sm_data_mpool_created = true;
|
|
|
|
} else {
|
|
|
|
mca_coll_sm_component.sm_data_mpool_created = false;
|
|
|
|
}
|
|
|
|
mca_coll_sm_component.sm_component_setup_success = true;
|
|
|
|
}
|
|
|
|
opal_atomic_unlock(&mca_coll_sm_component.sm_component_setup_lock);
|
|
|
|
|
|
|
|
/* Double check to see if some interleaved lazy init failed before
|
|
|
|
we got in here */
|
|
|
|
|
|
|
|
if (!mca_coll_sm_component.sm_component_setup_success) {
|
2007-08-19 07:37:49 +04:00
|
|
|
return OMPI_ERROR;
|
2005-10-06 17:17:27 +04:00
|
|
|
}
|
|
|
|
|
2005-09-02 16:57:47 +04:00
|
|
|
/* Get some space to setup memory affinity (just easier to try to
|
|
|
|
alloc here to handle the error case) */
|
|
|
|
|
2006-08-24 20:38:08 +04:00
|
|
|
maffinity = (opal_maffinity_base_segment_t*)malloc(sizeof(opal_maffinity_base_segment_t) *
|
|
|
|
c->sm_comm_num_segments * 3);
|
2005-09-07 01:41:55 +04:00
|
|
|
if (NULL == maffinity) {
|
2007-08-19 07:37:49 +04:00
|
|
|
return OMPI_ERROR;
|
2005-09-02 16:57:47 +04:00
|
|
|
}
|
2005-08-24 01:22:00 +04:00
|
|
|
|
|
|
|
/* Allocate data to hang off the communicator. The memory we
|
|
|
|
alloc will be laid out as follows:
|
|
|
|
|
|
|
|
1. mca_coll_base_comm_t
|
2005-09-02 16:57:47 +04:00
|
|
|
2. array of num_segments mca_coll_base_mpool_index_t instances
|
2005-08-24 01:22:00 +04:00
|
|
|
(pointed to by the array in 2)
|
2005-09-02 16:57:47 +04:00
|
|
|
3. array of ompi_comm_size(comm) mca_coll_sm_tree_node_t
|
|
|
|
instances
|
|
|
|
4. array of sm_tree_degree pointers to other tree nodes (i.e.,
|
|
|
|
this nodes' children) for each instance of
|
|
|
|
mca_coll_sm_tree_node_t
|
2005-08-24 01:22:00 +04:00
|
|
|
*/
|
|
|
|
|
2007-08-19 07:37:49 +04:00
|
|
|
sm_module->sm_data = data = (mca_coll_sm_comm_t*)
|
|
|
|
malloc(sizeof(mca_coll_sm_comm_t) +
|
2005-09-30 22:01:15 +04:00
|
|
|
(c->sm_comm_num_segments *
|
2005-09-02 16:57:47 +04:00
|
|
|
sizeof(mca_coll_base_mpool_index_t)) +
|
|
|
|
(size *
|
|
|
|
(sizeof(mca_coll_sm_tree_node_t) +
|
|
|
|
(sizeof(mca_coll_sm_tree_node_t*) * c->sm_tree_degree))));
|
|
|
|
|
2005-08-24 01:22:00 +04:00
|
|
|
if (NULL == data) {
|
2007-09-12 21:45:12 +04:00
|
|
|
free(maffinity);
|
2007-08-19 07:37:49 +04:00
|
|
|
return OMPI_ERR_TEMP_OUT_OF_RESOURCE;
|
2005-08-24 01:22:00 +04:00
|
|
|
}
|
|
|
|
data->mcb_data_mpool_malloc_addr = NULL;
|
|
|
|
|
|
|
|
/* Setup #2: set the array to point immediately beyond the
|
|
|
|
mca_coll_base_comm_t */
|
2005-09-02 16:57:47 +04:00
|
|
|
data->mcb_mpool_index = (mca_coll_base_mpool_index_t*) (data + 1);
|
|
|
|
/* Setup array of pointers for #3 */
|
|
|
|
data->mcb_tree = (mca_coll_sm_tree_node_t*)
|
2005-09-30 22:01:15 +04:00
|
|
|
(data->mcb_mpool_index + c->sm_comm_num_segments);
|
2005-09-02 16:57:47 +04:00
|
|
|
/* Finally, setup the array of children pointers in the instances
|
|
|
|
in #5 to point to their corresponding arrays in #6 */
|
|
|
|
data->mcb_tree[0].mcstn_children = (mca_coll_sm_tree_node_t**)
|
|
|
|
(data->mcb_tree + size);
|
|
|
|
for (i = 1; i < size; ++i) {
|
|
|
|
data->mcb_tree[i].mcstn_children =
|
|
|
|
data->mcb_tree[i - 1].mcstn_children + c->sm_tree_degree;
|
2005-08-24 01:22:00 +04:00
|
|
|
}
|
|
|
|
|
2005-09-02 16:57:47 +04:00
|
|
|
/* Pre-compute a tree for a given number of processes and degree.
|
|
|
|
We'll re-use this tree for all possible values of root (i.e.,
|
|
|
|
shift everyone's process to be the "0"/root in this tree. */
|
|
|
|
for (root = 0; root < size; ++root) {
|
|
|
|
parent = (root - 1) / mca_coll_sm_component.sm_tree_degree;
|
|
|
|
num_children = mca_coll_sm_component.sm_tree_degree;
|
|
|
|
|
|
|
|
/* Do we have children? If so, how many? */
|
|
|
|
|
|
|
|
if ((root * num_children) + 1 >= size) {
|
|
|
|
/* Leaves */
|
|
|
|
min_child = -1;
|
|
|
|
max_child = -1;
|
|
|
|
num_children = 0;
|
|
|
|
} else {
|
|
|
|
/* Interior nodes */
|
|
|
|
min_child = root * num_children + 1;
|
|
|
|
max_child = root * num_children + num_children;
|
|
|
|
if (max_child >= size) {
|
|
|
|
max_child = size - 1;
|
|
|
|
}
|
|
|
|
num_children = max_child - min_child + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Save the values */
|
|
|
|
data->mcb_tree[root].mcstn_id = root;
|
|
|
|
if (root == 0 && parent == 0) {
|
|
|
|
data->mcb_tree[root].mcstn_parent = NULL;
|
|
|
|
} else {
|
|
|
|
data->mcb_tree[root].mcstn_parent = &data->mcb_tree[parent];
|
|
|
|
}
|
|
|
|
data->mcb_tree[root].mcstn_num_children = num_children;
|
|
|
|
for (i = 0; i < c->sm_tree_degree; ++i) {
|
|
|
|
data->mcb_tree[root].mcstn_children[i] =
|
|
|
|
(i < num_children) ?
|
|
|
|
&data->mcb_tree[min_child + i] : NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-03 15:49:46 +04:00
|
|
|
/* Bootstrap this communicator; find the shared memory in the main
|
|
|
|
mpool that has been allocated among my peers for this
|
|
|
|
communicator. */
|
|
|
|
|
2007-08-19 07:37:49 +04:00
|
|
|
if (OMPI_SUCCESS != (ret = bootstrap_comm(comm, sm_module))) {
|
2005-09-03 15:49:46 +04:00
|
|
|
free(data);
|
2007-09-12 21:45:12 +04:00
|
|
|
free(maffinity);
|
2007-08-19 07:37:49 +04:00
|
|
|
sm_module->sm_data = NULL;
|
|
|
|
return ret;
|
2005-09-03 15:49:46 +04:00
|
|
|
}
|
|
|
|
|
2005-09-02 16:57:47 +04:00
|
|
|
/* Once the communicator is bootstrapped, setup the pointers into
|
|
|
|
the data mpool area. First, setup the barrier buffers. There
|
|
|
|
are 2 sets of barrier buffers (because there can never be more
|
|
|
|
than one outstanding barrier occuring at any timie). Setup
|
|
|
|
pointers to my control buffers, my parents, and [the beginning
|
|
|
|
of] my children (note that the children are contiguous, so
|
|
|
|
having the first pointer and the num_children from the mcb_tree
|
|
|
|
data is sufficient). */
|
|
|
|
|
|
|
|
control_size = c->sm_control_size;
|
2005-09-03 15:49:46 +04:00
|
|
|
base = (char*) (data->mcb_mpool_base + data->mcb_mpool_offset);
|
2005-09-02 16:57:47 +04:00
|
|
|
data->mcb_barrier_control_me = (uint32_t*)
|
2005-09-03 15:49:46 +04:00
|
|
|
(base + (rank * control_size * num_barrier_buffers * 2));
|
2005-09-02 16:57:47 +04:00
|
|
|
if (data->mcb_tree[rank].mcstn_parent) {
|
|
|
|
data->mcb_barrier_control_parent = (uint32_t*)
|
2005-09-03 15:49:46 +04:00
|
|
|
(base +
|
2005-09-02 16:57:47 +04:00
|
|
|
(data->mcb_tree[rank].mcstn_parent->mcstn_id * control_size *
|
|
|
|
num_barrier_buffers * 2));
|
|
|
|
} else {
|
|
|
|
data->mcb_barrier_control_parent = NULL;
|
|
|
|
}
|
|
|
|
if (data->mcb_tree[rank].mcstn_num_children > 0) {
|
|
|
|
data->mcb_barrier_control_children = (uint32_t*)
|
2005-09-03 15:49:46 +04:00
|
|
|
(base +
|
2005-09-02 16:57:47 +04:00
|
|
|
(data->mcb_tree[rank].mcstn_children[0]->mcstn_id * control_size *
|
|
|
|
num_barrier_buffers * 2));
|
|
|
|
} else {
|
|
|
|
data->mcb_barrier_control_children = NULL;
|
|
|
|
}
|
|
|
|
data->mcb_barrier_count = 0;
|
|
|
|
|
2005-09-07 01:41:55 +04:00
|
|
|
/* Next, setup the pointer to the in-use flags. The number of
|
|
|
|
segments will be an even multiple of the number of in-use
|
|
|
|
flags. */
|
|
|
|
|
|
|
|
base += (c->sm_control_size * size * num_barrier_buffers * 2);
|
|
|
|
data->mcb_in_use_flags = (mca_coll_sm_in_use_flag_t*) base;
|
|
|
|
|
|
|
|
/* All things being equal, if we're rank 0, then make the in-use
|
|
|
|
flags be local (memory affinity). Then zero them all out so
|
|
|
|
that they're marked as unused. */
|
|
|
|
|
|
|
|
j = 0;
|
|
|
|
if (0 == rank) {
|
|
|
|
maffinity[j].mbs_start_addr = base;
|
|
|
|
maffinity[j].mbs_len = c->sm_control_size *
|
|
|
|
c->sm_comm_num_in_use_flags;
|
2005-09-15 06:18:16 +04:00
|
|
|
/* Set the op counts to 1 (actually any nonzero value will do)
|
|
|
|
so that the first time children/leaf processes come
|
|
|
|
through, they don't see a value of 0 and think that the
|
|
|
|
root/parent has already set the count to their op number
|
|
|
|
(i.e., 0 is the first op count value). */
|
|
|
|
for (i = 0; i < mca_coll_sm_component.sm_comm_num_in_use_flags; ++i) {
|
|
|
|
((mca_coll_sm_in_use_flag_t *)base)[i].mcsiuf_operation_count = 1;
|
|
|
|
((mca_coll_sm_in_use_flag_t *)base)[i].mcsiuf_num_procs_using = 0;
|
|
|
|
}
|
2005-09-07 01:41:55 +04:00
|
|
|
D(("rank 0 zeroed in-use flags (num %d, len %d): %p - %p\n",
|
|
|
|
c->sm_comm_num_in_use_flags,
|
|
|
|
maffinity[j].mbs_len,
|
|
|
|
base, base + maffinity[j].mbs_len));
|
|
|
|
++j;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Next, setup pointers to the control and data portions of the
|
|
|
|
segments, as well as to the relevant in-use flags. */
|
2005-09-02 16:57:47 +04:00
|
|
|
|
2005-09-07 01:41:55 +04:00
|
|
|
base += (c->sm_comm_num_in_use_flags * c->sm_control_size);
|
2005-09-02 16:57:47 +04:00
|
|
|
control_size = size * c->sm_control_size;
|
|
|
|
frag_size = size * c->sm_fragment_size;
|
2005-09-07 01:41:55 +04:00
|
|
|
for (i = 0; i < c->sm_comm_num_segments; ++i) {
|
2005-09-02 16:57:47 +04:00
|
|
|
data->mcb_mpool_index[i].mcbmi_control = (uint32_t*)
|
2005-09-03 15:49:46 +04:00
|
|
|
(base + (i * (control_size + frag_size)));
|
2005-09-02 16:57:47 +04:00
|
|
|
data->mcb_mpool_index[i].mcbmi_data =
|
2005-09-03 15:49:46 +04:00
|
|
|
(((char*) data->mcb_mpool_index[i].mcbmi_control) +
|
|
|
|
control_size);
|
2005-09-02 16:57:47 +04:00
|
|
|
|
|
|
|
/* Memory affinity: control */
|
|
|
|
|
2005-09-07 01:41:55 +04:00
|
|
|
maffinity[j].mbs_len = c->sm_control_size;
|
2005-10-04 18:52:59 +04:00
|
|
|
maffinity[j].mbs_start_addr = (void *)
|
|
|
|
(data->mcb_mpool_index[i].mcbmi_control +
|
|
|
|
(rank * c->sm_control_size));
|
2005-09-02 16:57:47 +04:00
|
|
|
++j;
|
|
|
|
|
|
|
|
/* Memory affinity: data */
|
|
|
|
|
2005-09-07 01:41:55 +04:00
|
|
|
maffinity[j].mbs_len = c->sm_fragment_size;
|
|
|
|
maffinity[j].mbs_start_addr =
|
2005-09-02 16:57:47 +04:00
|
|
|
data->mcb_mpool_index[i].mcbmi_data +
|
|
|
|
(rank * c->sm_control_size);
|
|
|
|
++j;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Setup memory affinity so that the pages that belong to this
|
|
|
|
process are local to this process */
|
2005-08-24 01:22:00 +04:00
|
|
|
|
2005-09-07 01:41:55 +04:00
|
|
|
opal_maffinity_base_set(maffinity, j);
|
|
|
|
free(maffinity);
|
2005-09-02 16:57:47 +04:00
|
|
|
|
|
|
|
/* Zero out the control structures that belong to this process */
|
|
|
|
|
|
|
|
memset(data->mcb_barrier_control_me, 0,
|
|
|
|
num_barrier_buffers * 2 * c->sm_control_size);
|
2005-09-07 01:41:55 +04:00
|
|
|
for (i = 0; i < c->sm_comm_num_segments; ++i) {
|
2005-10-04 18:52:59 +04:00
|
|
|
memset((void *) data->mcb_mpool_index[i].mcbmi_control, 0,
|
2005-09-02 16:57:47 +04:00
|
|
|
c->sm_control_size);
|
2005-08-24 01:22:00 +04:00
|
|
|
}
|
|
|
|
|
2008-08-18 00:08:38 +04:00
|
|
|
/* Save previous component's reduce information */
|
2007-08-19 07:37:49 +04:00
|
|
|
sm_module->previous_reduce = comm->c_coll.coll_reduce;
|
|
|
|
sm_module->previous_reduce_module = comm->c_coll.coll_reduce_module;
|
|
|
|
OBJ_RETAIN(sm_module->previous_reduce_module);
|
2005-08-24 01:22:00 +04:00
|
|
|
|
2007-08-19 07:37:49 +04:00
|
|
|
/* All done */
|
2005-08-24 01:22:00 +04:00
|
|
|
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2007-08-19 07:37:49 +04:00
|
|
|
|
2007-08-04 04:41:26 +04:00
|
|
|
static bool have_local_peers(ompi_group_t *group, size_t size)
|
2005-08-24 01:22:00 +04:00
|
|
|
{
|
|
|
|
size_t i;
|
2007-08-04 04:41:26 +04:00
|
|
|
ompi_proc_t *proc;
|
2005-08-24 01:22:00 +04:00
|
|
|
|
|
|
|
for (i = 0; i < size; ++i) {
|
2007-08-04 04:41:26 +04:00
|
|
|
proc = ompi_group_peer_lookup(group,i);
|
2009-02-11 18:02:38 +03:00
|
|
|
if (!OPAL_PROC_ON_LOCAL_NODE(proc->proc_flags)) {
|
2005-08-24 01:22:00 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int bootstrap_init(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
size_t size;
|
|
|
|
char *fullpath;
|
|
|
|
mca_common_sm_mmap_t *meta;
|
|
|
|
mca_coll_sm_bootstrap_header_extension_t *bshe;
|
|
|
|
|
|
|
|
/* Create/open the sm coll bootstrap mmap. Make it have enough
|
|
|
|
space for the top-level control structure and
|
|
|
|
sm_bootstrap_num_segments per-communicator setup struct's
|
|
|
|
(i.e., enough for sm_bootstrap_num_segments communicators to
|
|
|
|
simultaneously set themselves up) */
|
|
|
|
|
|
|
|
if (NULL == mca_coll_sm_component.sm_bootstrap_filename) {
|
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
2009-03-06 00:56:03 +03:00
|
|
|
orte_proc_info();
|
|
|
|
fullpath = opal_os_path( false, orte_process_info.job_session_dir,
|
2006-08-24 20:38:08 +04:00
|
|
|
mca_coll_sm_component.sm_bootstrap_filename, NULL );
|
2005-08-24 01:22:00 +04:00
|
|
|
if (NULL == fullpath) {
|
|
|
|
return OMPI_ERR_OUT_OF_RESOURCE;
|
|
|
|
}
|
|
|
|
size =
|
|
|
|
sizeof(mca_coll_sm_bootstrap_header_extension_t) +
|
|
|
|
(mca_coll_sm_component.sm_bootstrap_num_segments *
|
|
|
|
sizeof(mca_coll_sm_bootstrap_comm_setup_t)) +
|
2005-10-04 01:34:58 +04:00
|
|
|
(sizeof(mca_coll_sm_bootstrap_comm_key_t) *
|
|
|
|
mca_coll_sm_component.sm_bootstrap_num_segments);
|
2005-08-24 01:22:00 +04:00
|
|
|
|
|
|
|
mca_coll_sm_component.sm_bootstrap_meta = meta =
|
|
|
|
mca_common_sm_mmap_init(size, fullpath,
|
|
|
|
sizeof(mca_coll_sm_bootstrap_header_extension_t),
|
|
|
|
8);
|
|
|
|
if (NULL == meta) {
|
|
|
|
return OMPI_ERR_OUT_OF_RESOURCE;
|
|
|
|
}
|
|
|
|
free(fullpath);
|
|
|
|
|
|
|
|
/* set the pointer to the bootstrap control structure */
|
|
|
|
bshe = (mca_coll_sm_bootstrap_header_extension_t *) meta->map_seg;
|
|
|
|
|
|
|
|
/* Lock the bootstrap control structure. If it's not already
|
|
|
|
initialized, then we're the first one in and we setup the data
|
|
|
|
structures */
|
|
|
|
|
|
|
|
opal_atomic_lock(&bshe->super.seg_lock);
|
|
|
|
opal_atomic_wmb();
|
|
|
|
if (!bshe->super.seg_inited) {
|
|
|
|
bshe->smbhe_segments = (mca_coll_sm_bootstrap_comm_setup_t *)
|
|
|
|
(((char *) bshe) +
|
|
|
|
sizeof(mca_coll_sm_bootstrap_header_extension_t) +
|
|
|
|
(sizeof(uint32_t) *
|
|
|
|
mca_coll_sm_component.sm_bootstrap_num_segments));
|
2005-10-04 01:34:58 +04:00
|
|
|
bshe->smbhe_keys = (mca_coll_sm_bootstrap_comm_key_t *)
|
2005-08-24 01:22:00 +04:00
|
|
|
(((char *) bshe) + sizeof(*bshe));
|
2005-09-07 01:41:55 +04:00
|
|
|
for (i = 0; i < mca_coll_sm_component.sm_bootstrap_num_segments; ++i) {
|
2005-10-04 01:34:58 +04:00
|
|
|
bshe->smbhe_keys[i].mcsbck_cid = INT_MAX;
|
|
|
|
memset(&bshe->smbhe_keys[i].mcsbck_rank0_name, 0,
|
|
|
|
sizeof(orte_process_name_t));
|
2005-08-24 01:22:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bshe->super.seg_inited = true;
|
|
|
|
}
|
|
|
|
opal_atomic_unlock(&bshe->super.seg_lock);
|
|
|
|
|
|
|
|
/* All done */
|
|
|
|
|
|
|
|
bootstrap_inited = true;
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-19 07:37:49 +04:00
|
|
|
static int bootstrap_comm(ompi_communicator_t *comm,
|
|
|
|
mca_coll_sm_module_t *module)
|
2005-08-24 01:22:00 +04:00
|
|
|
{
|
|
|
|
int i, empty_index, err;
|
|
|
|
bool found;
|
|
|
|
mca_coll_sm_component_t *c = &mca_coll_sm_component;
|
|
|
|
mca_coll_sm_bootstrap_header_extension_t *bshe;
|
|
|
|
mca_coll_sm_bootstrap_comm_setup_t *bscs;
|
2007-08-19 07:37:49 +04:00
|
|
|
mca_coll_sm_comm_t *data = module->sm_data;
|
2005-09-02 16:57:47 +04:00
|
|
|
int comm_size = ompi_comm_size(comm);
|
2005-09-03 15:49:46 +04:00
|
|
|
int num_segments = c->sm_comm_num_segments;
|
2005-09-07 01:41:55 +04:00
|
|
|
int num_in_use = c->sm_comm_num_in_use_flags;
|
2005-09-02 16:57:47 +04:00
|
|
|
int frag_size = c->sm_fragment_size;
|
|
|
|
int control_size = c->sm_control_size;
|
2005-10-04 01:34:58 +04:00
|
|
|
orte_process_name_t *rank0;
|
2007-08-04 04:41:26 +04:00
|
|
|
ompi_proc_t * proc;
|
2005-08-24 01:22:00 +04:00
|
|
|
|
|
|
|
/* Is our CID in the CIDs array? If not, loop until we can find
|
|
|
|
an open slot in the array to use in the bootstrap to setup our
|
|
|
|
communicator. */
|
|
|
|
|
|
|
|
bshe = (mca_coll_sm_bootstrap_header_extension_t *)
|
|
|
|
c->sm_bootstrap_meta->map_seg;
|
|
|
|
bscs = bshe->smbhe_segments;
|
|
|
|
opal_atomic_lock(&bshe->super.seg_lock);
|
2007-08-04 04:41:26 +04:00
|
|
|
proc = ompi_group_peer_lookup(comm->c_local_group,0);
|
|
|
|
rank0 = &(proc->proc_name);
|
|
|
|
|
2005-08-24 01:22:00 +04:00
|
|
|
while (1) {
|
|
|
|
opal_atomic_wmb();
|
|
|
|
found = false;
|
|
|
|
empty_index = -1;
|
2005-09-07 01:41:55 +04:00
|
|
|
for (i = 0; i < mca_coll_sm_component.sm_bootstrap_num_segments; ++i) {
|
2005-10-04 01:34:58 +04:00
|
|
|
if (comm->c_contextid == bshe->smbhe_keys[i].mcsbck_cid &&
|
2008-02-28 04:57:57 +03:00
|
|
|
OPAL_EQUAL == orte_util_compare_name_fields(ORTE_NS_CMP_ALL,
|
2005-10-04 01:34:58 +04:00
|
|
|
rank0,
|
|
|
|
&bshe->smbhe_keys[i].mcsbck_rank0_name)) {
|
2005-08-24 01:22:00 +04:00
|
|
|
found = true;
|
|
|
|
break;
|
2005-10-04 01:34:58 +04:00
|
|
|
} else if (INT_MAX == bshe->smbhe_keys[i].mcsbck_cid &&
|
|
|
|
-1 == empty_index) {
|
2005-08-24 01:22:00 +04:00
|
|
|
empty_index = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Did we find our CID? */
|
|
|
|
|
|
|
|
if (found) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Nope. Did we find an empty slot? If so, initialize that
|
|
|
|
slot and its corresponding segment for our CID. Get an
|
|
|
|
mpool allocation big enough to handle all the shared memory
|
|
|
|
collective stuff. */
|
|
|
|
|
|
|
|
else if (-1 != empty_index) {
|
|
|
|
char *tmp;
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
i = empty_index;
|
2005-10-04 01:34:58 +04:00
|
|
|
bshe->smbhe_keys[i].mcsbck_cid = comm->c_contextid;
|
|
|
|
/* JMS better assignment? */
|
|
|
|
bshe->smbhe_keys[i].mcsbck_rank0_name = *rank0;
|
2005-08-24 01:22:00 +04:00
|
|
|
|
2005-09-02 16:57:47 +04:00
|
|
|
bscs[i].smbcs_count = comm_size;
|
2005-08-24 01:22:00 +04:00
|
|
|
|
|
|
|
/* Calculate how much space we need in the data mpool.
|
2005-09-02 16:57:47 +04:00
|
|
|
There are several values to add:
|
2005-08-24 01:22:00 +04:00
|
|
|
|
2005-09-02 16:57:47 +04:00
|
|
|
- size of the barrier data (2 of these):
|
|
|
|
- fan-in data (num_procs * control_size)
|
|
|
|
- fan-out data (num_procs * control_size)
|
2005-09-03 15:49:46 +04:00
|
|
|
- size of the "in use" buffers:
|
|
|
|
- num_in_use_buffers * control_size
|
|
|
|
- size of the message fragment area (one for each segment):
|
2005-09-02 16:57:47 +04:00
|
|
|
- control (num_procs * control_size)
|
|
|
|
- fragment data (num_procs * (frag_size))
|
2005-08-24 01:22:00 +04:00
|
|
|
|
2005-09-02 16:57:47 +04:00
|
|
|
So it's:
|
2005-08-24 01:22:00 +04:00
|
|
|
|
2005-09-02 16:57:47 +04:00
|
|
|
barrier: 2 * control_size + 2 * control_size
|
2005-09-07 01:41:55 +04:00
|
|
|
in use: num_in_use * control_size
|
2005-09-02 16:57:47 +04:00
|
|
|
control: num_segments * (num_procs * control_size * 2 +
|
|
|
|
num_procs * control_size)
|
|
|
|
message: num_segments * (num_procs * frag_size)
|
2005-08-24 01:22:00 +04:00
|
|
|
*/
|
|
|
|
|
2005-09-07 01:41:55 +04:00
|
|
|
size = 4 * control_size +
|
|
|
|
(num_in_use * control_size) +
|
2005-09-02 16:57:47 +04:00
|
|
|
(num_segments * (comm_size * control_size * 2)) +
|
|
|
|
(num_segments * (comm_size * frag_size));
|
2005-08-24 01:22:00 +04:00
|
|
|
|
|
|
|
data->mcb_data_mpool_malloc_addr = tmp =
|
2006-08-24 20:38:08 +04:00
|
|
|
(char*)c->sm_data_mpool->mpool_alloc(c->sm_data_mpool, size,
|
|
|
|
c->sm_control_size, 0, NULL);
|
2005-08-24 01:22:00 +04:00
|
|
|
if (NULL == tmp) {
|
|
|
|
/* Cleanup before returning; allow other processes in
|
|
|
|
this communicator to learn of the failure. Note
|
|
|
|
that by definition, bscs[i].smbcs_count won't be
|
|
|
|
zero after the decrement (because there must be >=2
|
|
|
|
processes in this communicator, or the self coll
|
|
|
|
component would have been chosen), so we don't need
|
|
|
|
to do that cleanup. */
|
|
|
|
bscs[i].smbcs_data_mpool_offset = 0;
|
2005-09-07 01:41:55 +04:00
|
|
|
bscs[i].smbcs_success = false;
|
2005-08-24 01:22:00 +04:00
|
|
|
--bscs[i].smbcs_count;
|
|
|
|
opal_atomic_unlock(&bshe->super.seg_lock);
|
|
|
|
return OMPI_ERR_OUT_OF_RESOURCE;
|
|
|
|
}
|
2005-09-07 01:41:55 +04:00
|
|
|
bscs[i].smbcs_success = true;
|
2005-08-24 01:22:00 +04:00
|
|
|
|
|
|
|
/* Calculate the offset and put it in the bootstrap
|
|
|
|
area */
|
|
|
|
|
|
|
|
bscs[i].smbcs_data_mpool_offset = (size_t)
|
2005-09-02 16:57:47 +04:00
|
|
|
(tmp -
|
|
|
|
((char *) c->sm_data_mpool->mpool_base(c->sm_data_mpool)));
|
2005-08-24 01:22:00 +04:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Bad luck all around -- we didn't find our CID in the array
|
|
|
|
and there were no empty slots. So give up the lock and let
|
|
|
|
some other processes / threads in there to try to free up
|
|
|
|
some slots, and then try again once we have reacquired the
|
|
|
|
lock. */
|
|
|
|
|
|
|
|
else {
|
|
|
|
opal_atomic_unlock(&bshe->super.seg_lock);
|
2006-04-20 23:56:50 +04:00
|
|
|
SPIN;
|
2005-08-24 01:22:00 +04:00
|
|
|
opal_atomic_lock(&bshe->super.seg_lock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check to see if there was an error while allocating the shared
|
|
|
|
memory */
|
2005-09-07 01:41:55 +04:00
|
|
|
if (!bscs[i].smbcs_success) {
|
2005-08-24 01:22:00 +04:00
|
|
|
err = OMPI_ERR_OUT_OF_RESOURCE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Look at the comm_setup_t section (in the data segment of the
|
|
|
|
bootstrap) and fill in the values on our communicator */
|
|
|
|
|
|
|
|
else {
|
|
|
|
err = OMPI_SUCCESS;
|
2006-08-24 20:38:08 +04:00
|
|
|
data->mcb_mpool_base = (unsigned char*)c->sm_data_mpool->mpool_base(c->sm_data_mpool);
|
2005-08-24 01:22:00 +04:00
|
|
|
data->mcb_mpool_offset = bscs[i].smbcs_data_mpool_offset;
|
|
|
|
data->mcb_mpool_area = data->mcb_mpool_base + data->mcb_mpool_offset;
|
|
|
|
data->mcb_operation_count = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If the count is now zero, then we're finished with this section
|
|
|
|
in the bootstrap segment, and we should release it for others
|
|
|
|
to use */
|
|
|
|
|
|
|
|
--bscs[i].smbcs_count;
|
|
|
|
if (0 == bscs[i].smbcs_count) {
|
|
|
|
bscs[i].smbcs_data_mpool_offset = 0;
|
2005-10-04 01:34:58 +04:00
|
|
|
bshe->smbhe_keys[i].mcsbck_cid = INT_MAX;
|
|
|
|
memset(&bshe->smbhe_keys[i].mcsbck_rank0_name, 0,
|
|
|
|
sizeof(orte_process_name_t));
|
2005-08-24 01:22:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* All done */
|
|
|
|
|
|
|
|
opal_atomic_unlock(&bshe->super.seg_lock);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function is not static and has a prefix-rule-enabled name
|
2005-10-06 17:17:27 +04:00
|
|
|
* because it gets called from the component (but may also be called
|
|
|
|
* from above). This is only called once -- no need for reference
|
|
|
|
* counting or thread protection.
|
2005-08-24 01:22:00 +04:00
|
|
|
*/
|
|
|
|
int mca_coll_sm_bootstrap_finalize(void)
|
|
|
|
{
|
|
|
|
mca_common_sm_mmap_t *meta;
|
|
|
|
|
|
|
|
if (bootstrap_inited) {
|
|
|
|
meta = mca_coll_sm_component.sm_bootstrap_meta;
|
|
|
|
|
|
|
|
/* Free the area in the mpool that we were using */
|
|
|
|
if (mca_coll_sm_component.sm_data_mpool_created) {
|
2005-09-03 15:49:46 +04:00
|
|
|
mca_mpool_base_module_destroy(mca_coll_sm_component.sm_data_mpool);
|
2005-08-24 01:22:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Free the entire bootstrap area (no need to zero out
|
|
|
|
anything in here -- all data structures are referencing
|
|
|
|
within the bootstrap area, so the one top-level unmap does
|
|
|
|
it all) */
|
2006-07-20 00:55:29 +04:00
|
|
|
if (OMPI_SUCCESS == mca_common_sm_mmap_fini( meta )) {
|
|
|
|
unlink(meta->map_path);
|
|
|
|
}
|
|
|
|
OBJ_RELEASE(meta);
|
2005-08-24 01:22:00 +04:00
|
|
|
}
|
2005-01-30 04:42:57 +03:00
|
|
|
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
2007-03-17 02:11:45 +03:00
|
|
|
|
|
|
|
int mca_coll_sm_ft_event(int state) {
|
|
|
|
if(OPAL_CRS_CHECKPOINT == state) {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
else if(OPAL_CRS_CONTINUE == state) {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
else if(OPAL_CRS_RESTART == state) {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
else if(OPAL_CRS_TERM == state ) {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|