2007-12-21 09:02:00 +03:00
|
|
|
/* -*- Mode: C; c-basic-offset:4 ; -*- */
|
2004-05-21 23:36:19 +04:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2008-11-05 00:58:06 +03:00
|
|
|
* Copyright (c) 2004-2008 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2008-08-11 13:43:01 +04:00
|
|
|
* Copyright (c) 2004-2008 High Performance Computing Center Stuttgart,
|
2004-11-28 23:09:25 +03:00
|
|
|
* 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.
|
2009-01-11 05:30:00 +03:00
|
|
|
* Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
|
2007-09-11 17:23:46 +04:00
|
|
|
* Copyright (c) 2007 Voltaire All rights reserved.
|
2010-01-07 19:26:30 +03:00
|
|
|
* Copyright (c) 2006-2010 University of Houston. All rights reserved.
|
2009-02-24 20:17:33 +03:00
|
|
|
* Copyright (c) 2009 Sun Microsystems, Inc. All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-05-21 23:36:19 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#include "ompi_config.h"
|
2004-05-21 23:36:19 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "opal/dss/dss.h"
|
|
|
|
#include "orte/types.h"
|
2009-07-07 22:32:14 +04:00
|
|
|
#include "ompi/proc/proc.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/communicator/communicator.h"
|
2009-02-24 20:17:33 +03:00
|
|
|
#include "ompi/op/op.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/constants.h"
|
2007-12-21 09:02:00 +03:00
|
|
|
#include "opal/class/opal_pointer_array.h"
|
2005-07-03 20:22:16 +04:00
|
|
|
#include "opal/class/opal_list.h"
|
2010-05-18 03:08:56 +04:00
|
|
|
#include "opal/util/opal_sos.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/mca/pml/pml.h"
|
|
|
|
#include "ompi/mca/coll/base/base.h"
|
2005-09-13 00:36:04 +04:00
|
|
|
#include "ompi/request/request.h"
|
2009-07-07 22:32:14 +04:00
|
|
|
#include "ompi/runtime/ompi_module_exchange.h"
|
2006-12-13 01:01:39 +03:00
|
|
|
#include "ompi/runtime/mpiruntime.h"
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "ompi/mca/dpm/dpm.h"
|
|
|
|
|
2008-06-18 07:15:56 +04:00
|
|
|
#include "orte/mca/rml/rml.h"
|
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
BEGIN_C_DECLS
|
2004-05-21 23:36:19 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* These functions make sure, that we determine the global result over
|
|
|
|
* an intra communicators (simple), an inter-communicator and a
|
|
|
|
* pseudo inter-communicator described by two separate intra-comms
|
|
|
|
* and a bridge-comm (intercomm-create scenario).
|
|
|
|
*/
|
|
|
|
|
2009-05-02 22:03:57 +04:00
|
|
|
|
2004-08-04 02:07:45 +04:00
|
|
|
typedef int ompi_comm_cid_allredfct (int *inbuf, int* outbuf,
|
2005-05-20 03:16:06 +04:00
|
|
|
int count, struct ompi_op_t *op,
|
2004-08-04 02:07:45 +04:00
|
|
|
ompi_communicator_t *comm,
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_communicator_t *bridgecomm,
|
2004-08-05 20:31:30 +04:00
|
|
|
void* lleader, void* rleader,
|
|
|
|
int send_first );
|
2004-06-17 02:37:03 +04:00
|
|
|
|
2004-08-04 02:07:45 +04:00
|
|
|
static int ompi_comm_allreduce_intra (int *inbuf, int* outbuf,
|
2005-05-20 03:16:06 +04:00
|
|
|
int count, struct ompi_op_t *op,
|
2004-08-04 02:07:45 +04:00
|
|
|
ompi_communicator_t *intercomm,
|
2004-06-17 02:37:03 +04:00
|
|
|
ompi_communicator_t *bridgecomm,
|
2004-08-04 02:07:45 +04:00
|
|
|
void* local_leader,
|
2004-08-05 20:31:30 +04:00
|
|
|
void* remote_ledaer,
|
|
|
|
int send_first );
|
2004-05-21 23:36:19 +04:00
|
|
|
|
2004-08-04 02:07:45 +04:00
|
|
|
static int ompi_comm_allreduce_inter (int *inbuf, int *outbuf,
|
2005-05-20 03:16:06 +04:00
|
|
|
int count, struct ompi_op_t *op,
|
2004-08-04 02:07:45 +04:00
|
|
|
ompi_communicator_t *intercomm,
|
|
|
|
ompi_communicator_t *bridgecomm,
|
|
|
|
void* local_leader,
|
2004-08-05 20:31:30 +04:00
|
|
|
void* remote_leader,
|
|
|
|
int send_first );
|
2004-05-21 23:36:19 +04:00
|
|
|
|
2004-08-04 02:07:45 +04:00
|
|
|
static int ompi_comm_allreduce_intra_bridge(int *inbuf, int* outbuf,
|
2005-05-20 03:16:06 +04:00
|
|
|
int count, struct ompi_op_t *op,
|
2004-08-04 02:07:45 +04:00
|
|
|
ompi_communicator_t *intercomm,
|
2004-07-16 00:55:15 +04:00
|
|
|
ompi_communicator_t *bridgecomm,
|
2004-08-04 02:07:45 +04:00
|
|
|
void* local_leader,
|
2004-08-05 20:31:30 +04:00
|
|
|
void* remote_leader,
|
|
|
|
int send_first);
|
2004-05-21 23:36:19 +04:00
|
|
|
|
2004-08-04 02:07:45 +04:00
|
|
|
static int ompi_comm_allreduce_intra_oob (int *inbuf, int* outbuf,
|
2005-05-20 03:16:06 +04:00
|
|
|
int count, struct ompi_op_t *op,
|
2004-08-04 02:07:45 +04:00
|
|
|
ompi_communicator_t *intercomm,
|
2004-07-16 00:55:15 +04:00
|
|
|
ompi_communicator_t *bridgecomm,
|
2004-08-04 02:07:45 +04:00
|
|
|
void* local_leader,
|
2004-08-05 20:31:30 +04:00
|
|
|
void* remote_leader,
|
|
|
|
int send_first );
|
2004-05-21 23:36:19 +04:00
|
|
|
|
2004-09-21 22:39:06 +04:00
|
|
|
static int ompi_comm_register_cid (uint32_t contextid);
|
|
|
|
static int ompi_comm_unregister_cid (uint32_t contextid);
|
|
|
|
static uint32_t ompi_comm_lowest_cid ( void );
|
|
|
|
|
|
|
|
struct ompi_comm_reg_t{
|
2005-07-03 20:22:16 +04:00
|
|
|
opal_list_item_t super;
|
2004-09-21 22:39:06 +04:00
|
|
|
uint32_t cid;
|
|
|
|
};
|
|
|
|
typedef struct ompi_comm_reg_t ompi_comm_reg_t;
|
2004-10-22 20:06:05 +04:00
|
|
|
OMPI_DECLSPEC OBJ_CLASS_DECLARATION(ompi_comm_reg_t);
|
2004-09-21 22:39:06 +04:00
|
|
|
|
|
|
|
static void ompi_comm_reg_constructor(ompi_comm_reg_t *regcom);
|
|
|
|
static void ompi_comm_reg_destructor(ompi_comm_reg_t *regcom);
|
|
|
|
|
|
|
|
OBJ_CLASS_INSTANCE (ompi_comm_reg_t,
|
2007-04-06 23:18:31 +04:00
|
|
|
opal_list_item_t,
|
|
|
|
ompi_comm_reg_constructor,
|
|
|
|
ompi_comm_reg_destructor );
|
2004-05-21 23:36:19 +04:00
|
|
|
|
2005-07-04 02:45:48 +04:00
|
|
|
static opal_mutex_t ompi_cid_lock;
|
2005-07-03 20:22:16 +04:00
|
|
|
static opal_list_t ompi_registered_comms;
|
2004-09-17 20:28:58 +04:00
|
|
|
|
2010-01-07 19:26:30 +03:00
|
|
|
|
2009-07-07 22:32:14 +04:00
|
|
|
/* This variable is zero (false) if all processes in MPI_COMM_WORLD
|
|
|
|
* did not require MPI_THREAD_MULTIPLE support, and is 1 (true) as
|
|
|
|
* soon as at least one process requested support for THREAD_MULTIPLE */
|
|
|
|
static int ompi_comm_world_thread_level_mult=0;
|
|
|
|
|
|
|
|
|
|
|
|
int ompi_comm_cid_init (void)
|
|
|
|
{
|
|
|
|
ompi_proc_t **procs, *thisproc;
|
|
|
|
uint8_t thread_level;
|
|
|
|
void *tlpointer;
|
2009-07-11 22:36:43 +04:00
|
|
|
int ret;
|
|
|
|
size_t i, size, numprocs;
|
2009-07-07 22:32:14 +04:00
|
|
|
|
|
|
|
/** Note that the following call only returns processes
|
|
|
|
* with the same jobid. This is on purpose, since
|
|
|
|
* we switch for the dynamic communicators anyway
|
|
|
|
* to the original (slower) cid allocation algorithm.
|
|
|
|
*/
|
|
|
|
procs = ompi_proc_world ( &numprocs );
|
|
|
|
|
|
|
|
for ( i=0; i<numprocs; i++ ) {
|
|
|
|
thisproc = procs[i];
|
|
|
|
|
2010-02-03 08:07:40 +03:00
|
|
|
ret = ompi_modex_recv_string("MPI_THREAD_LEVEL", thisproc, &tlpointer, &size);
|
|
|
|
if (OMPI_SUCCESS == ret) {
|
|
|
|
thread_level = *((uint8_t *) tlpointer);
|
|
|
|
if ( OMPI_THREADLEVEL_IS_MULTIPLE (thread_level) ) {
|
|
|
|
ompi_comm_world_thread_level_mult = 1;
|
|
|
|
break;
|
|
|
|
}
|
2010-05-18 03:08:56 +04:00
|
|
|
} else if (OMPI_ERR_NOT_IMPLEMENTED == OPAL_SOS_GET_ERROR_CODE(ret)) {
|
2010-02-03 08:07:40 +03:00
|
|
|
if (ompi_mpi_thread_multiple) {
|
|
|
|
ompi_comm_world_thread_level_mult = 1;
|
|
|
|
}
|
2009-07-07 22:32:14 +04:00
|
|
|
break;
|
2010-02-03 08:07:40 +03:00
|
|
|
} else {
|
|
|
|
return ret;
|
2009-07-07 22:32:14 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2007-08-17 20:15:26 +04:00
|
|
|
|
2004-09-17 20:28:58 +04:00
|
|
|
int ompi_comm_nextcid ( ompi_communicator_t* newcomm,
|
|
|
|
ompi_communicator_t* comm,
|
|
|
|
ompi_communicator_t* bridgecomm,
|
|
|
|
void* local_leader,
|
|
|
|
void* remote_leader,
|
|
|
|
int mode, int send_first )
|
|
|
|
{
|
2010-01-15 06:15:18 +03:00
|
|
|
int nextcid;
|
2006-08-24 20:38:08 +04:00
|
|
|
bool flag;
|
2010-01-15 01:01:26 +03:00
|
|
|
int nextlocal_cid;
|
|
|
|
int done=0;
|
|
|
|
int response, glresponse=0;
|
|
|
|
int start;
|
|
|
|
unsigned int i;
|
2004-09-17 20:28:58 +04:00
|
|
|
|
|
|
|
ompi_comm_cid_allredfct* allredfnct;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine which implementation of allreduce we have to use
|
|
|
|
* for the current scenario
|
|
|
|
*/
|
2009-05-27 19:21:07 +04:00
|
|
|
|
2004-09-17 20:28:58 +04:00
|
|
|
switch (mode)
|
2010-10-04 18:54:58 +04:00
|
|
|
{
|
2004-09-17 20:28:58 +04:00
|
|
|
case OMPI_COMM_CID_INTRA:
|
|
|
|
allredfnct=(ompi_comm_cid_allredfct*)ompi_comm_allreduce_intra;
|
|
|
|
break;
|
|
|
|
case OMPI_COMM_CID_INTER:
|
|
|
|
allredfnct=(ompi_comm_cid_allredfct*)ompi_comm_allreduce_inter;
|
|
|
|
break;
|
|
|
|
case OMPI_COMM_CID_INTRA_BRIDGE:
|
|
|
|
allredfnct=(ompi_comm_cid_allredfct*)ompi_comm_allreduce_intra_bridge;
|
|
|
|
break;
|
|
|
|
case OMPI_COMM_CID_INTRA_OOB:
|
|
|
|
allredfnct=(ompi_comm_cid_allredfct*)ompi_comm_allreduce_intra_oob;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return MPI_UNDEFINED;
|
|
|
|
break;
|
2010-10-04 18:54:58 +04:00
|
|
|
}
|
2009-05-27 19:21:07 +04:00
|
|
|
|
2010-01-07 19:26:30 +03:00
|
|
|
do {
|
2010-10-04 18:54:58 +04:00
|
|
|
/* Only one communicator function allowed in same time on the
|
|
|
|
* same communicator.
|
|
|
|
*/
|
|
|
|
OPAL_THREAD_LOCK(&ompi_cid_lock);
|
|
|
|
response = ompi_comm_register_cid (comm->c_contextid);
|
|
|
|
OPAL_THREAD_UNLOCK(&ompi_cid_lock);
|
2010-01-07 19:26:30 +03:00
|
|
|
} while (OMPI_SUCCESS != response );
|
|
|
|
start = ompi_mpi_communicators.lowest_free;
|
|
|
|
|
|
|
|
while (!done) {
|
2010-10-04 18:54:58 +04:00
|
|
|
/**
|
|
|
|
* This is the real algorithm described in the doc
|
|
|
|
*/
|
|
|
|
OPAL_THREAD_LOCK(&ompi_cid_lock);
|
|
|
|
if (comm->c_contextid != ompi_comm_lowest_cid() ) {
|
|
|
|
/* if not lowest cid, we do not continue, but sleep and try again */
|
|
|
|
OPAL_THREAD_UNLOCK(&ompi_cid_lock);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
OPAL_THREAD_UNLOCK(&ompi_cid_lock);
|
|
|
|
|
|
|
|
for (i=start; i < mca_pml.pml_max_contextid ; i++) {
|
|
|
|
flag=opal_pointer_array_test_and_set_item(&ompi_mpi_communicators,
|
|
|
|
i, comm);
|
|
|
|
if (true == flag) {
|
|
|
|
nextlocal_cid = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
(allredfnct)(&nextlocal_cid, &nextcid, 1, MPI_MAX, comm, bridgecomm,
|
|
|
|
local_leader, remote_leader, send_first );
|
|
|
|
if (nextcid == nextlocal_cid) {
|
|
|
|
response = 1; /* fine with me */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
opal_pointer_array_set_item(&ompi_mpi_communicators,
|
|
|
|
nextlocal_cid, NULL);
|
|
|
|
|
|
|
|
flag = opal_pointer_array_test_and_set_item(&ompi_mpi_communicators,
|
|
|
|
nextcid, comm );
|
|
|
|
if (true == flag) {
|
|
|
|
response = 1; /* works as well */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
response = 0; /* nope, not acceptable */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
(allredfnct)(&response, &glresponse, 1, MPI_MIN, comm, bridgecomm,
|
|
|
|
local_leader, remote_leader, send_first );
|
|
|
|
if (1 == glresponse) {
|
|
|
|
done = 1; /* we are done */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if ( 0 == glresponse ) {
|
|
|
|
if ( 1 == response ) {
|
|
|
|
/* we could use that, but other don't agree */
|
|
|
|
opal_pointer_array_set_item(&ompi_mpi_communicators,
|
|
|
|
nextcid, NULL);
|
|
|
|
}
|
|
|
|
start = nextcid+1; /* that's where we can start the next round */
|
|
|
|
}
|
2004-09-17 20:28:58 +04:00
|
|
|
}
|
2010-10-04 18:54:58 +04:00
|
|
|
|
2004-09-17 20:28:58 +04:00
|
|
|
/* set the according values to the newcomm */
|
|
|
|
newcomm->c_contextid = nextcid;
|
|
|
|
newcomm->c_f_to_c_index = newcomm->c_contextid;
|
2007-12-21 09:02:00 +03:00
|
|
|
opal_pointer_array_set_item (&ompi_mpi_communicators, nextcid, newcomm);
|
2010-10-04 18:54:58 +04:00
|
|
|
|
2010-01-07 19:26:30 +03:00
|
|
|
OPAL_THREAD_LOCK(&ompi_cid_lock);
|
|
|
|
ompi_comm_unregister_cid (comm->c_contextid);
|
|
|
|
OPAL_THREAD_UNLOCK(&ompi_cid_lock);
|
2010-10-04 18:54:58 +04:00
|
|
|
|
2004-09-17 20:28:58 +04:00
|
|
|
return (MPI_SUCCESS);
|
|
|
|
}
|
2006-12-13 01:01:39 +03:00
|
|
|
|
2004-09-21 22:39:06 +04:00
|
|
|
/**************************************************************************/
|
|
|
|
/**************************************************************************/
|
|
|
|
/**************************************************************************/
|
|
|
|
static void ompi_comm_reg_constructor (ompi_comm_reg_t *regcom)
|
|
|
|
{
|
|
|
|
regcom->cid=MPI_UNDEFINED;
|
|
|
|
}
|
2004-09-17 20:28:58 +04:00
|
|
|
|
2004-09-21 22:39:06 +04:00
|
|
|
static void ompi_comm_reg_destructor (ompi_comm_reg_t *regcom)
|
2004-05-21 23:36:19 +04:00
|
|
|
{
|
2004-09-21 22:39:06 +04:00
|
|
|
}
|
2004-05-21 23:36:19 +04:00
|
|
|
|
2004-09-21 22:39:06 +04:00
|
|
|
void ompi_comm_reg_init (void)
|
|
|
|
{
|
2005-07-03 20:22:16 +04:00
|
|
|
OBJ_CONSTRUCT(&ompi_registered_comms, opal_list_t);
|
2008-09-09 16:57:45 +04:00
|
|
|
OBJ_CONSTRUCT(&ompi_cid_lock, opal_mutex_t);
|
2004-09-21 22:39:06 +04:00
|
|
|
}
|
2004-05-21 23:36:19 +04:00
|
|
|
|
2004-09-21 22:39:06 +04:00
|
|
|
void ompi_comm_reg_finalize (void)
|
|
|
|
{
|
|
|
|
OBJ_DESTRUCT(&ompi_registered_comms);
|
2008-09-09 16:57:45 +04:00
|
|
|
OBJ_DESTRUCT(&ompi_cid_lock);
|
2004-09-21 22:39:06 +04:00
|
|
|
}
|
2004-05-21 23:36:19 +04:00
|
|
|
|
|
|
|
|
2004-09-21 22:39:06 +04:00
|
|
|
static int ompi_comm_register_cid (uint32_t cid )
|
|
|
|
{
|
2007-07-17 04:33:27 +04:00
|
|
|
opal_list_item_t *item;
|
|
|
|
ompi_comm_reg_t *regcom;
|
2004-09-21 22:39:06 +04:00
|
|
|
ompi_comm_reg_t *newentry = OBJ_NEW(ompi_comm_reg_t);
|
2004-09-16 16:16:21 +04:00
|
|
|
|
2004-09-21 22:39:06 +04:00
|
|
|
newentry->cid = cid;
|
2005-07-03 20:22:16 +04:00
|
|
|
if ( !(opal_list_is_empty (&ompi_registered_comms)) ) {
|
2007-04-06 23:18:31 +04:00
|
|
|
for (item = opal_list_get_first(&ompi_registered_comms);
|
|
|
|
item != opal_list_get_end(&ompi_registered_comms);
|
|
|
|
item = opal_list_get_next(item)) {
|
|
|
|
regcom = (ompi_comm_reg_t *)item;
|
|
|
|
if ( regcom->cid > cid ) {
|
|
|
|
break;
|
|
|
|
}
|
2010-03-17 02:10:50 +03:00
|
|
|
#if OMPI_ENABLE_THREAD_MULTIPLE
|
2007-07-17 04:33:27 +04:00
|
|
|
if( regcom->cid == cid ) {
|
|
|
|
/**
|
|
|
|
* The MPI standard state that is the user responsability to
|
|
|
|
* schedule the global communications in order to avoid any
|
|
|
|
* kind of troubles. As, managing communicators involve several
|
|
|
|
* collective communications, we should enforce a sequential
|
|
|
|
* execution order. This test only allow one communicator
|
|
|
|
* creation function based on the same communicator.
|
|
|
|
*/
|
|
|
|
OBJ_RELEASE(newentry);
|
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
2010-03-17 02:10:50 +03:00
|
|
|
#endif /* OMPI_ENABLE_THREAD_MULTIPLE */
|
2007-04-06 23:18:31 +04:00
|
|
|
}
|
2007-07-17 04:33:27 +04:00
|
|
|
opal_list_insert_pos (&ompi_registered_comms, item,
|
2007-04-06 23:18:31 +04:00
|
|
|
(opal_list_item_t *)newentry);
|
2004-05-21 23:36:19 +04:00
|
|
|
}
|
2004-09-21 22:39:06 +04:00
|
|
|
else {
|
2007-04-06 23:18:31 +04:00
|
|
|
opal_list_append (&ompi_registered_comms, (opal_list_item_t *)newentry);
|
2004-09-21 22:39:06 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return OMPI_SUCCESS;
|
2004-05-21 23:36:19 +04:00
|
|
|
}
|
|
|
|
|
2004-09-21 22:39:06 +04:00
|
|
|
static int ompi_comm_unregister_cid (uint32_t cid)
|
|
|
|
{
|
2007-09-11 17:23:46 +04:00
|
|
|
ompi_comm_reg_t *regcom;
|
|
|
|
opal_list_item_t *item;
|
2004-09-21 22:39:06 +04:00
|
|
|
|
2007-09-11 17:23:46 +04:00
|
|
|
for (item = opal_list_get_first(&ompi_registered_comms);
|
|
|
|
item != opal_list_get_end(&ompi_registered_comms);
|
|
|
|
item = opal_list_get_next(item)) {
|
|
|
|
regcom = (ompi_comm_reg_t *)item;
|
|
|
|
if(regcom->cid == cid) {
|
|
|
|
opal_list_remove_item(&ompi_registered_comms, item);
|
2007-09-11 21:59:40 +04:00
|
|
|
OBJ_RELEASE(regcom);
|
2007-09-11 17:23:46 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2004-09-21 22:39:06 +04:00
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t ompi_comm_lowest_cid (void)
|
|
|
|
{
|
|
|
|
ompi_comm_reg_t *regcom=NULL;
|
2005-07-03 20:22:16 +04:00
|
|
|
opal_list_item_t *item=opal_list_get_first (&ompi_registered_comms);
|
2004-09-21 22:39:06 +04:00
|
|
|
|
|
|
|
regcom = (ompi_comm_reg_t *)item;
|
|
|
|
return regcom->cid;
|
|
|
|
}
|
2004-08-05 20:31:30 +04:00
|
|
|
/**************************************************************************/
|
|
|
|
/**************************************************************************/
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This routine serves two purposes:
|
|
|
|
* - the allreduce acts as a kind of Barrier,
|
|
|
|
* which avoids, that we have incoming fragments
|
|
|
|
* on the new communicator before everybody has set
|
|
|
|
* up the comm structure.
|
|
|
|
* - some components (e.g. the collective MagPIe component
|
|
|
|
* might want to generate new communicators and communicate
|
|
|
|
* using the new comm. Thus, it can just be called after
|
|
|
|
* the 'barrier'.
|
|
|
|
*
|
|
|
|
* The reason that this routine is in comm_cid and not in
|
|
|
|
* comm.c is, that this file contains the allreduce implementations
|
|
|
|
* which are required, and thus we avoid having duplicate code...
|
|
|
|
*/
|
so here is what happens:
in the v1.2 series the cid's could never go above the max. allowed for a
particular pml. Because of that, pml_add_comm never checked for the cid, and
in fact pml_add_comm was called in comm_set, which is *before* we knew the
cid.
in the v1.3 series (and trunk) we check now the cid to detect overflow, and
because of that pml_add_comm has been moved *after* the cid allocation
routine, namely into the comm_activate routine.
in the v1.2 series, the comm_activate contained a synchronization step of the
old communicator in order to prevent incoming fragments on the new
communicator, with the main problem being that the allreduce in the
communicator allocation finished at different times on different processes,
and thus, this scenario could and did really occur.
in the v1.3 series, the comm_activate does not contain the synchronization
step anymore, since we introduced the new queue for fragments with unknown
cid. The problem is however, that whether a fragment is known or not is
decided by using ompi_comm_lookup(), which will return something useful as
soon as the cid allocation finished, even before pml_add_comm has been
called. So there is a small time gap where we will not post a message into
queue for unknown cid's, but we can also not look up the process structure
belonging to the rank in that comm ( that is in pml_ob1_match_recv_frag or
something like that).
The current fix reintroduces the synchronization step in comm_activate, and
ensures that no fragment can be received for a new communicator before the
synchronization occurs , and thus comm_nextcid() and pml_add_comm has been
called. It seems to be the safest and easiest way for now. Welcome back, v1.2.
This commit was SVN r21970.
2009-09-17 18:37:02 +04:00
|
|
|
int ompi_comm_activate ( ompi_communicator_t** newcomm,
|
|
|
|
ompi_communicator_t* comm,
|
|
|
|
ompi_communicator_t* bridgecomm,
|
|
|
|
void* local_leader,
|
|
|
|
void* remote_leader,
|
|
|
|
int mode,
|
|
|
|
int send_first )
|
2004-08-05 20:31:30 +04:00
|
|
|
{
|
2008-11-05 00:58:06 +03:00
|
|
|
int ret = 0;
|
2004-08-05 20:31:30 +04:00
|
|
|
|
so here is what happens:
in the v1.2 series the cid's could never go above the max. allowed for a
particular pml. Because of that, pml_add_comm never checked for the cid, and
in fact pml_add_comm was called in comm_set, which is *before* we knew the
cid.
in the v1.3 series (and trunk) we check now the cid to detect overflow, and
because of that pml_add_comm has been moved *after* the cid allocation
routine, namely into the comm_activate routine.
in the v1.2 series, the comm_activate contained a synchronization step of the
old communicator in order to prevent incoming fragments on the new
communicator, with the main problem being that the allreduce in the
communicator allocation finished at different times on different processes,
and thus, this scenario could and did really occur.
in the v1.3 series, the comm_activate does not contain the synchronization
step anymore, since we introduced the new queue for fragments with unknown
cid. The problem is however, that whether a fragment is known or not is
decided by using ompi_comm_lookup(), which will return something useful as
soon as the cid allocation finished, even before pml_add_comm has been
called. So there is a small time gap where we will not post a message into
queue for unknown cid's, but we can also not look up the process structure
belonging to the rank in that comm ( that is in pml_ob1_match_recv_frag or
something like that).
The current fix reintroduces the synchronization step in comm_activate, and
ensures that no fragment can be received for a new communicator before the
synchronization occurs , and thus comm_nextcid() and pml_add_comm has been
called. It seems to be the safest and easiest way for now. Welcome back, v1.2.
This commit was SVN r21970.
2009-09-17 18:37:02 +04:00
|
|
|
int ok=0, gok=0;
|
|
|
|
ompi_comm_cid_allredfct* allredfnct;
|
|
|
|
|
|
|
|
/* Step 1: the barrier, after which it is allowed to
|
|
|
|
* send messages over the new communicator
|
|
|
|
*/
|
|
|
|
switch (mode)
|
2010-10-04 18:54:58 +04:00
|
|
|
{
|
so here is what happens:
in the v1.2 series the cid's could never go above the max. allowed for a
particular pml. Because of that, pml_add_comm never checked for the cid, and
in fact pml_add_comm was called in comm_set, which is *before* we knew the
cid.
in the v1.3 series (and trunk) we check now the cid to detect overflow, and
because of that pml_add_comm has been moved *after* the cid allocation
routine, namely into the comm_activate routine.
in the v1.2 series, the comm_activate contained a synchronization step of the
old communicator in order to prevent incoming fragments on the new
communicator, with the main problem being that the allreduce in the
communicator allocation finished at different times on different processes,
and thus, this scenario could and did really occur.
in the v1.3 series, the comm_activate does not contain the synchronization
step anymore, since we introduced the new queue for fragments with unknown
cid. The problem is however, that whether a fragment is known or not is
decided by using ompi_comm_lookup(), which will return something useful as
soon as the cid allocation finished, even before pml_add_comm has been
called. So there is a small time gap where we will not post a message into
queue for unknown cid's, but we can also not look up the process structure
belonging to the rank in that comm ( that is in pml_ob1_match_recv_frag or
something like that).
The current fix reintroduces the synchronization step in comm_activate, and
ensures that no fragment can be received for a new communicator before the
synchronization occurs , and thus comm_nextcid() and pml_add_comm has been
called. It seems to be the safest and easiest way for now. Welcome back, v1.2.
This commit was SVN r21970.
2009-09-17 18:37:02 +04:00
|
|
|
case OMPI_COMM_CID_INTRA:
|
|
|
|
allredfnct=(ompi_comm_cid_allredfct*)ompi_comm_allreduce_intra;
|
|
|
|
break;
|
|
|
|
case OMPI_COMM_CID_INTER:
|
|
|
|
allredfnct=(ompi_comm_cid_allredfct*)ompi_comm_allreduce_inter;
|
|
|
|
break;
|
|
|
|
case OMPI_COMM_CID_INTRA_BRIDGE:
|
|
|
|
allredfnct=(ompi_comm_cid_allredfct*)ompi_comm_allreduce_intra_bridge;
|
|
|
|
break;
|
|
|
|
case OMPI_COMM_CID_INTRA_OOB:
|
|
|
|
allredfnct=(ompi_comm_cid_allredfct*)ompi_comm_allreduce_intra_oob;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return MPI_UNDEFINED;
|
|
|
|
break;
|
2010-10-04 18:54:58 +04:00
|
|
|
}
|
so here is what happens:
in the v1.2 series the cid's could never go above the max. allowed for a
particular pml. Because of that, pml_add_comm never checked for the cid, and
in fact pml_add_comm was called in comm_set, which is *before* we knew the
cid.
in the v1.3 series (and trunk) we check now the cid to detect overflow, and
because of that pml_add_comm has been moved *after* the cid allocation
routine, namely into the comm_activate routine.
in the v1.2 series, the comm_activate contained a synchronization step of the
old communicator in order to prevent incoming fragments on the new
communicator, with the main problem being that the allreduce in the
communicator allocation finished at different times on different processes,
and thus, this scenario could and did really occur.
in the v1.3 series, the comm_activate does not contain the synchronization
step anymore, since we introduced the new queue for fragments with unknown
cid. The problem is however, that whether a fragment is known or not is
decided by using ompi_comm_lookup(), which will return something useful as
soon as the cid allocation finished, even before pml_add_comm has been
called. So there is a small time gap where we will not post a message into
queue for unknown cid's, but we can also not look up the process structure
belonging to the rank in that comm ( that is in pml_ob1_match_recv_frag or
something like that).
The current fix reintroduces the synchronization step in comm_activate, and
ensures that no fragment can be received for a new communicator before the
synchronization occurs , and thus comm_nextcid() and pml_add_comm has been
called. It seems to be the safest and easiest way for now. Welcome back, v1.2.
This commit was SVN r21970.
2009-09-17 18:37:02 +04:00
|
|
|
|
|
|
|
if (MPI_UNDEFINED != (*newcomm)->c_local_group->grp_my_rank) {
|
|
|
|
|
2010-10-04 18:54:58 +04:00
|
|
|
/* Initialize the PML stuff in the newcomm */
|
|
|
|
if ( OMPI_SUCCESS != (ret = MCA_PML_CALL(add_comm(*newcomm))) ) {
|
|
|
|
goto bail_on_error;
|
|
|
|
}
|
|
|
|
OMPI_COMM_SET_PML_ADDED(*newcomm);
|
so here is what happens:
in the v1.2 series the cid's could never go above the max. allowed for a
particular pml. Because of that, pml_add_comm never checked for the cid, and
in fact pml_add_comm was called in comm_set, which is *before* we knew the
cid.
in the v1.3 series (and trunk) we check now the cid to detect overflow, and
because of that pml_add_comm has been moved *after* the cid allocation
routine, namely into the comm_activate routine.
in the v1.2 series, the comm_activate contained a synchronization step of the
old communicator in order to prevent incoming fragments on the new
communicator, with the main problem being that the allreduce in the
communicator allocation finished at different times on different processes,
and thus, this scenario could and did really occur.
in the v1.3 series, the comm_activate does not contain the synchronization
step anymore, since we introduced the new queue for fragments with unknown
cid. The problem is however, that whether a fragment is known or not is
decided by using ompi_comm_lookup(), which will return something useful as
soon as the cid allocation finished, even before pml_add_comm has been
called. So there is a small time gap where we will not post a message into
queue for unknown cid's, but we can also not look up the process structure
belonging to the rank in that comm ( that is in pml_ob1_match_recv_frag or
something like that).
The current fix reintroduces the synchronization step in comm_activate, and
ensures that no fragment can be received for a new communicator before the
synchronization occurs , and thus comm_nextcid() and pml_add_comm has been
called. It seems to be the safest and easiest way for now. Welcome back, v1.2.
This commit was SVN r21970.
2009-09-17 18:37:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
(allredfnct)(&ok, &gok, 1, MPI_MIN, comm, bridgecomm,
|
|
|
|
local_leader, remote_leader, send_first );
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-11-05 00:58:06 +03:00
|
|
|
/**
|
|
|
|
* Check to see if this process is in the new communicator.
|
|
|
|
*
|
|
|
|
* Specifically, this function is invoked by all proceses in the
|
|
|
|
* old communicator, regardless of whether they are in the new
|
|
|
|
* communicator or not. This is because it is far simpler to use
|
|
|
|
* MPI collective functions on the old communicator to determine
|
|
|
|
* some data for the new communicator (e.g., remote_leader) than
|
|
|
|
* to kludge up our own pseudo-collective routines over just the
|
|
|
|
* processes in the new communicator. Hence, *all* processes in
|
|
|
|
* the old communicator need to invoke this function.
|
|
|
|
*
|
|
|
|
* That being said, only processes in the new communicator need to
|
|
|
|
* select a coll module for the new communicator. More
|
|
|
|
* specifically, proceses who are not in the new communicator
|
|
|
|
* should *not* select a coll module -- for example,
|
|
|
|
* ompi_comm_rank(newcomm) returns MPI_UNDEFINED for processes who
|
|
|
|
* are not in the new communicator. This can cause errors in the
|
|
|
|
* selection / initialization of a coll module. Plus, it's
|
|
|
|
* wasteful -- processes in the new communicator will end up
|
|
|
|
* freeing the new communicator anyway, so we might as well leave
|
|
|
|
* the coll selection as NULL (the coll base comm unselect code
|
|
|
|
* handles that case properly).
|
|
|
|
*/
|
|
|
|
if (MPI_UNDEFINED == (*newcomm)->c_local_group->grp_my_rank) {
|
|
|
|
return OMPI_SUCCESS;
|
2007-03-27 06:06:42 +04:00
|
|
|
}
|
2004-08-05 20:31:30 +04:00
|
|
|
|
2008-11-05 00:58:06 +03:00
|
|
|
/* Let the collectives components fight over who will do
|
|
|
|
collective on this new comm. */
|
so here is what happens:
in the v1.2 series the cid's could never go above the max. allowed for a
particular pml. Because of that, pml_add_comm never checked for the cid, and
in fact pml_add_comm was called in comm_set, which is *before* we knew the
cid.
in the v1.3 series (and trunk) we check now the cid to detect overflow, and
because of that pml_add_comm has been moved *after* the cid allocation
routine, namely into the comm_activate routine.
in the v1.2 series, the comm_activate contained a synchronization step of the
old communicator in order to prevent incoming fragments on the new
communicator, with the main problem being that the allreduce in the
communicator allocation finished at different times on different processes,
and thus, this scenario could and did really occur.
in the v1.3 series, the comm_activate does not contain the synchronization
step anymore, since we introduced the new queue for fragments with unknown
cid. The problem is however, that whether a fragment is known or not is
decided by using ompi_comm_lookup(), which will return something useful as
soon as the cid allocation finished, even before pml_add_comm has been
called. So there is a small time gap where we will not post a message into
queue for unknown cid's, but we can also not look up the process structure
belonging to the rank in that comm ( that is in pml_ob1_match_recv_frag or
something like that).
The current fix reintroduces the synchronization step in comm_activate, and
ensures that no fragment can be received for a new communicator before the
synchronization occurs , and thus comm_nextcid() and pml_add_comm has been
called. It seems to be the safest and easiest way for now. Welcome back, v1.2.
This commit was SVN r21970.
2009-09-17 18:37:02 +04:00
|
|
|
if (OMPI_SUCCESS != (ret = mca_coll_base_comm_select(*newcomm))) {
|
2010-10-04 18:54:58 +04:00
|
|
|
goto bail_on_error;
|
2008-11-05 00:58:06 +03:00
|
|
|
}
|
2010-02-20 02:45:30 +03:00
|
|
|
|
|
|
|
/* For an inter communicator, we have to deal with the potential
|
|
|
|
* problem of what is happening if the local_comm that we created
|
|
|
|
* has a lower CID than the parent comm. This is not a problem
|
|
|
|
* as long as the user calls MPI_Comm_free on the inter communicator.
|
|
|
|
* However, if the communicators are not freed by the user but released
|
|
|
|
* by Open MPI in MPI_Finalize, we walk through the list of still available
|
|
|
|
* communicators and free them one by one. Thus, local_comm is freed before
|
|
|
|
* the actual inter-communicator. However, the local_comm pointer in the
|
|
|
|
* inter communicator will still contain the 'previous' address of the local_comm
|
|
|
|
* and thus this will lead to a segmentation violation. In order to prevent
|
|
|
|
* that from happening, we increase the reference counter local_comm
|
|
|
|
* by one if its CID is lower than the parent. We cannot increase however
|
|
|
|
* its reference counter if the CID of local_comm is larger than
|
|
|
|
* the CID of the inter communicators, since a regular MPI_Comm_free would
|
|
|
|
* leave in that the case the local_comm hanging around and thus we would not
|
|
|
|
* recycle CID's properly, which was the reason and the cause for this trouble.
|
|
|
|
*/
|
|
|
|
if ( OMPI_COMM_IS_INTER(*newcomm)) {
|
|
|
|
if ( OMPI_COMM_CID_IS_LOWER(*newcomm, comm)) {
|
2010-02-24 00:24:07 +03:00
|
|
|
OMPI_COMM_SET_EXTRA_RETAIN (*newcomm);
|
2010-02-20 02:45:30 +03:00
|
|
|
OBJ_RETAIN (*newcomm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-05 20:31:30 +04:00
|
|
|
return OMPI_SUCCESS;
|
2008-11-05 00:58:06 +03:00
|
|
|
|
|
|
|
bail_on_error:
|
|
|
|
OBJ_RELEASE(*newcomm);
|
|
|
|
*newcomm = MPI_COMM_NULL;
|
|
|
|
return ret;
|
2004-08-05 20:31:30 +04:00
|
|
|
}
|
|
|
|
|
2004-08-04 02:07:45 +04:00
|
|
|
/**************************************************************************/
|
|
|
|
/**************************************************************************/
|
|
|
|
/**************************************************************************/
|
2004-05-21 23:36:19 +04:00
|
|
|
/* Arguments not used in this implementation:
|
2004-06-17 02:37:03 +04:00
|
|
|
* - bridgecomm
|
|
|
|
* - local_leader
|
|
|
|
* - remote_leader
|
2004-08-05 20:31:30 +04:00
|
|
|
* - send_first
|
2004-06-17 02:37:03 +04:00
|
|
|
*/
|
2004-08-04 02:07:45 +04:00
|
|
|
static int ompi_comm_allreduce_intra ( int *inbuf, int *outbuf,
|
2005-05-20 03:16:06 +04:00
|
|
|
int count, struct ompi_op_t *op,
|
2004-08-04 02:07:45 +04:00
|
|
|
ompi_communicator_t *comm,
|
|
|
|
ompi_communicator_t *bridgecomm,
|
|
|
|
void* local_leader,
|
2004-08-05 20:31:30 +04:00
|
|
|
void* remote_leader,
|
|
|
|
int send_first )
|
2004-05-21 23:36:19 +04:00
|
|
|
{
|
2004-08-04 02:07:45 +04:00
|
|
|
return comm->c_coll.coll_allreduce ( inbuf, outbuf, count, MPI_INT,
|
2007-08-19 07:37:49 +04:00
|
|
|
op,comm,
|
|
|
|
comm->c_coll.coll_allreduce_module );
|
2004-05-21 23:36:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Arguments not used in this implementation:
|
2004-06-17 02:37:03 +04:00
|
|
|
* - bridgecomm
|
|
|
|
* - local_leader
|
|
|
|
* - remote_leader
|
2004-08-05 20:31:30 +04:00
|
|
|
* - send_first
|
2004-06-17 02:37:03 +04:00
|
|
|
*/
|
2004-08-04 02:07:45 +04:00
|
|
|
static int ompi_comm_allreduce_inter ( int *inbuf, int *outbuf,
|
2005-05-20 03:16:06 +04:00
|
|
|
int count, struct ompi_op_t *op,
|
2004-08-04 02:07:45 +04:00
|
|
|
ompi_communicator_t *intercomm,
|
|
|
|
ompi_communicator_t *bridgecomm,
|
|
|
|
void* local_leader,
|
2004-08-05 20:31:30 +04:00
|
|
|
void* remote_leader,
|
|
|
|
int send_first )
|
2004-05-21 23:36:19 +04:00
|
|
|
{
|
2004-08-04 02:07:45 +04:00
|
|
|
int local_rank, rsize;
|
|
|
|
int i, rc;
|
|
|
|
int *sbuf;
|
|
|
|
int *tmpbuf=NULL;
|
|
|
|
int *rcounts=NULL, scount=0;
|
|
|
|
int *rdisps=NULL;
|
2004-05-21 23:36:19 +04:00
|
|
|
|
2009-02-24 20:17:33 +03:00
|
|
|
if ( &ompi_mpi_op_sum.op != op && &ompi_mpi_op_prod.op != op &&
|
|
|
|
&ompi_mpi_op_max.op != op && &ompi_mpi_op_min.op != op ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
return MPI_ERR_OP;
|
|
|
|
}
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
if ( !OMPI_COMM_IS_INTER (intercomm)) {
|
2004-05-21 23:36:19 +04:00
|
|
|
return MPI_ERR_COMM;
|
|
|
|
}
|
|
|
|
|
2004-08-04 02:07:45 +04:00
|
|
|
/* Allocate temporary arrays */
|
|
|
|
rsize = ompi_comm_remote_size (intercomm);
|
2004-06-07 19:33:53 +04:00
|
|
|
local_rank = ompi_comm_rank ( intercomm );
|
2004-05-21 23:36:19 +04:00
|
|
|
|
2004-08-04 02:07:45 +04:00
|
|
|
tmpbuf = (int *) malloc ( count * sizeof(int));
|
|
|
|
rdisps = (int *) calloc ( rsize, sizeof(int));
|
|
|
|
rcounts = (int *) calloc ( rsize, sizeof(int) );
|
2008-08-11 13:43:01 +04:00
|
|
|
if ( OPAL_UNLIKELY (NULL == tmpbuf || NULL == rdisps || NULL == rcounts)) {
|
|
|
|
rc = OMPI_ERR_OUT_OF_RESOURCE;
|
|
|
|
goto exit;
|
2004-08-04 02:07:45 +04:00
|
|
|
}
|
2010-10-04 18:54:58 +04:00
|
|
|
|
2004-08-04 02:07:45 +04:00
|
|
|
/* Execute the inter-allreduce: the result of our group will
|
|
|
|
be in the buffer of the remote group */
|
2004-06-29 04:02:25 +04:00
|
|
|
rc = intercomm->c_coll.coll_allreduce ( inbuf, tmpbuf, count, MPI_INT,
|
2007-08-19 07:37:49 +04:00
|
|
|
op, intercomm,
|
|
|
|
intercomm->c_coll.coll_allreduce_module);
|
2004-06-07 19:33:53 +04:00
|
|
|
if ( OMPI_SUCCESS != rc ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( 0 == local_rank ) {
|
|
|
|
MPI_Request req;
|
|
|
|
|
2004-08-04 02:07:45 +04:00
|
|
|
/* for the allgatherv later */
|
|
|
|
scount = count;
|
|
|
|
|
|
|
|
/* local leader exchange their data and determine the overall result
|
|
|
|
for both groups */
|
2005-04-13 07:19:48 +04:00
|
|
|
rc = MCA_PML_CALL(irecv (outbuf, count, MPI_INT, 0,
|
2009-08-04 18:51:15 +04:00
|
|
|
OMPI_COMM_ALLREDUCE_TAG,
|
|
|
|
intercomm, &req));
|
2004-06-07 19:33:53 +04:00
|
|
|
if ( OMPI_SUCCESS != rc ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
goto exit;
|
|
|
|
}
|
2005-04-13 07:19:48 +04:00
|
|
|
rc = MCA_PML_CALL(send (tmpbuf, count, MPI_INT, 0,
|
2009-08-04 18:51:15 +04:00
|
|
|
OMPI_COMM_ALLREDUCE_TAG,
|
|
|
|
MCA_PML_BASE_SEND_STANDARD,
|
|
|
|
intercomm));
|
2004-06-07 19:33:53 +04:00
|
|
|
if ( OMPI_SUCCESS != rc ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
goto exit;
|
|
|
|
}
|
2009-08-04 18:51:15 +04:00
|
|
|
rc = ompi_request_wait ( &req, MPI_STATUS_IGNORE );
|
2004-06-07 19:33:53 +04:00
|
|
|
if ( OMPI_SUCCESS != rc ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2009-02-24 20:17:33 +03:00
|
|
|
if ( &ompi_mpi_op_max.op == op ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
for ( i = 0 ; i < count; i++ ) {
|
2010-10-04 18:54:58 +04:00
|
|
|
if (tmpbuf[i] > outbuf[i]) {
|
|
|
|
outbuf[i] = tmpbuf[i];
|
|
|
|
}
|
2004-05-21 23:36:19 +04:00
|
|
|
}
|
|
|
|
}
|
2009-02-24 20:17:33 +03:00
|
|
|
else if ( &ompi_mpi_op_min.op == op ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
for ( i = 0 ; i < count; i++ ) {
|
2010-10-04 18:54:58 +04:00
|
|
|
if (tmpbuf[i] < outbuf[i]) {
|
|
|
|
outbuf[i] = tmpbuf[i];
|
|
|
|
}
|
2004-05-21 23:36:19 +04:00
|
|
|
}
|
|
|
|
}
|
2009-02-24 20:17:33 +03:00
|
|
|
else if ( &ompi_mpi_op_sum.op == op ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
for ( i = 0 ; i < count; i++ ) {
|
|
|
|
outbuf[i] += tmpbuf[i];
|
|
|
|
}
|
|
|
|
}
|
2009-02-24 20:17:33 +03:00
|
|
|
else if ( &ompi_mpi_op_prod.op == op ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
for ( i = 0 ; i < count; i++ ) {
|
|
|
|
outbuf[i] *= tmpbuf[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-10-04 18:54:58 +04:00
|
|
|
|
2004-08-04 02:07:45 +04:00
|
|
|
/* distribute the overall result to all processes in the other group.
|
|
|
|
Instead of using bcast, we are using here allgatherv, to avoid the
|
|
|
|
possible deadlock. Else, we need an algorithm to determine,
|
|
|
|
which group sends first in the inter-bcast and which receives
|
|
|
|
the result first.
|
|
|
|
*/
|
|
|
|
rcounts[0] = count;
|
|
|
|
sbuf = outbuf;
|
|
|
|
rc = intercomm->c_coll.coll_allgatherv (sbuf, scount, MPI_INT, outbuf,
|
|
|
|
rcounts, rdisps, MPI_INT,
|
2007-08-19 07:37:49 +04:00
|
|
|
intercomm,
|
|
|
|
intercomm->c_coll.coll_allgatherv_module);
|
2010-10-04 18:54:58 +04:00
|
|
|
|
2004-05-21 23:36:19 +04:00
|
|
|
exit:
|
|
|
|
if ( NULL != tmpbuf ) {
|
|
|
|
free ( tmpbuf );
|
|
|
|
}
|
2004-08-04 02:07:45 +04:00
|
|
|
if ( NULL != rcounts ) {
|
|
|
|
free ( rcounts );
|
|
|
|
}
|
|
|
|
if ( NULL != rdisps ) {
|
|
|
|
free ( rdisps );
|
|
|
|
}
|
|
|
|
|
2004-05-21 23:36:19 +04:00
|
|
|
return (rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Arguments not used in this implementation:
|
2004-08-05 20:31:30 +04:00
|
|
|
* - send_first
|
|
|
|
*/
|
2004-08-04 02:07:45 +04:00
|
|
|
static int ompi_comm_allreduce_intra_bridge (int *inbuf, int *outbuf,
|
2005-05-20 03:16:06 +04:00
|
|
|
int count, struct ompi_op_t *op,
|
2004-08-04 02:07:45 +04:00
|
|
|
ompi_communicator_t *comm,
|
|
|
|
ompi_communicator_t *bcomm,
|
2004-08-05 20:31:30 +04:00
|
|
|
void* lleader, void* rleader,
|
|
|
|
int send_first )
|
2004-05-21 23:36:19 +04:00
|
|
|
{
|
|
|
|
int *tmpbuf=NULL;
|
|
|
|
int local_rank;
|
|
|
|
int i;
|
|
|
|
int rc;
|
2004-06-17 02:37:03 +04:00
|
|
|
int local_leader, remote_leader;
|
2010-10-04 18:54:58 +04:00
|
|
|
|
2004-06-17 02:37:03 +04:00
|
|
|
local_leader = (*((int*)lleader));
|
|
|
|
remote_leader = (*((int*)rleader));
|
2004-05-21 23:36:19 +04:00
|
|
|
|
2009-02-24 20:17:33 +03:00
|
|
|
if ( &ompi_mpi_op_sum.op != op && &ompi_mpi_op_prod.op != op &&
|
|
|
|
&ompi_mpi_op_max.op != op && &ompi_mpi_op_min.op != op ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
return MPI_ERR_OP;
|
|
|
|
}
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
local_rank = ompi_comm_rank ( comm );
|
2004-05-21 23:36:19 +04:00
|
|
|
tmpbuf = (int *) malloc ( count * sizeof(int));
|
|
|
|
if ( NULL == tmpbuf ) {
|
2008-08-11 13:43:01 +04:00
|
|
|
rc = OMPI_ERR_OUT_OF_RESOURCE;
|
|
|
|
goto exit;
|
2004-05-21 23:36:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Intercomm_create */
|
2004-06-29 04:02:25 +04:00
|
|
|
rc = comm->c_coll.coll_allreduce ( inbuf, tmpbuf, count, MPI_INT,
|
2007-08-19 07:37:49 +04:00
|
|
|
op, comm, comm->c_coll.coll_allreduce_module );
|
2004-06-07 19:33:53 +04:00
|
|
|
if ( OMPI_SUCCESS != rc ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (local_rank == local_leader ) {
|
|
|
|
MPI_Request req;
|
|
|
|
|
2005-04-13 07:19:48 +04:00
|
|
|
rc = MCA_PML_CALL(irecv ( outbuf, count, MPI_INT, remote_leader,
|
2010-10-04 18:54:58 +04:00
|
|
|
OMPI_COMM_ALLREDUCE_TAG,
|
|
|
|
bcomm, &req));
|
2004-06-07 19:33:53 +04:00
|
|
|
if ( OMPI_SUCCESS != rc ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
goto exit;
|
|
|
|
}
|
2005-04-13 07:19:48 +04:00
|
|
|
rc = MCA_PML_CALL(send (tmpbuf, count, MPI_INT, remote_leader,
|
2010-10-04 18:54:58 +04:00
|
|
|
OMPI_COMM_ALLREDUCE_TAG,
|
|
|
|
MCA_PML_BASE_SEND_STANDARD, bcomm));
|
2004-06-07 19:33:53 +04:00
|
|
|
if ( OMPI_SUCCESS != rc ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
goto exit;
|
|
|
|
}
|
2004-10-12 19:50:01 +04:00
|
|
|
rc = ompi_request_wait_all ( 1, &req, MPI_STATUS_IGNORE);
|
2004-06-07 19:33:53 +04:00
|
|
|
if ( OMPI_SUCCESS != rc ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2009-02-24 20:17:33 +03:00
|
|
|
if ( &ompi_mpi_op_max.op == op ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
for ( i = 0 ; i < count; i++ ) {
|
2010-10-04 18:54:58 +04:00
|
|
|
if (tmpbuf[i] > outbuf[i]) {
|
|
|
|
outbuf[i] = tmpbuf[i];
|
|
|
|
}
|
2004-05-21 23:36:19 +04:00
|
|
|
}
|
|
|
|
}
|
2009-02-24 20:17:33 +03:00
|
|
|
else if ( &ompi_mpi_op_min.op == op ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
for ( i = 0 ; i < count; i++ ) {
|
2010-10-04 18:54:58 +04:00
|
|
|
if (tmpbuf[i] < outbuf[i]) {
|
|
|
|
outbuf[i] = tmpbuf[i];
|
|
|
|
}
|
2004-05-21 23:36:19 +04:00
|
|
|
}
|
|
|
|
}
|
2009-02-24 20:17:33 +03:00
|
|
|
else if ( &ompi_mpi_op_sum.op == op ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
for ( i = 0 ; i < count; i++ ) {
|
|
|
|
outbuf[i] += tmpbuf[i];
|
|
|
|
}
|
|
|
|
}
|
2009-02-24 20:17:33 +03:00
|
|
|
else if ( &ompi_mpi_op_prod.op == op ) {
|
2004-05-21 23:36:19 +04:00
|
|
|
for ( i = 0 ; i < count; i++ ) {
|
|
|
|
outbuf[i] *= tmpbuf[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-10-04 18:54:58 +04:00
|
|
|
|
2004-08-04 02:07:45 +04:00
|
|
|
rc = comm->c_coll.coll_bcast ( outbuf, count, MPI_INT, local_leader,
|
2007-08-19 07:37:49 +04:00
|
|
|
comm, comm->c_coll.coll_bcast_module );
|
2004-05-21 23:36:19 +04:00
|
|
|
|
|
|
|
exit:
|
|
|
|
if (NULL != tmpbuf ) {
|
|
|
|
free (tmpbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (rc);
|
|
|
|
}
|
|
|
|
|
2004-06-17 02:37:03 +04:00
|
|
|
/* Arguments not used in this implementation:
|
|
|
|
* - bridgecomm
|
|
|
|
*
|
2004-08-05 20:31:30 +04:00
|
|
|
* lleader is the local rank of root in comm
|
|
|
|
* rleader is the OOB contact information of the
|
|
|
|
* root processes in the other world.
|
2004-06-17 02:37:03 +04:00
|
|
|
*/
|
2004-08-04 02:07:45 +04:00
|
|
|
static int ompi_comm_allreduce_intra_oob (int *inbuf, int *outbuf,
|
2005-05-20 03:16:06 +04:00
|
|
|
int count, struct ompi_op_t *op,
|
2004-08-04 02:07:45 +04:00
|
|
|
ompi_communicator_t *comm,
|
2004-06-17 02:37:03 +04:00
|
|
|
ompi_communicator_t *bridgecomm,
|
2004-08-05 20:31:30 +04:00
|
|
|
void* lleader, void* rleader,
|
|
|
|
int send_first )
|
2004-06-17 02:37:03 +04:00
|
|
|
{
|
|
|
|
int *tmpbuf=NULL;
|
|
|
|
int i;
|
|
|
|
int rc;
|
2004-08-05 20:31:30 +04:00
|
|
|
int local_leader, local_rank;
|
2005-03-14 23:57:21 +03:00
|
|
|
orte_process_name_t *remote_leader=NULL;
|
2006-08-15 23:54:10 +04:00
|
|
|
orte_std_cntr_t size_count;
|
2010-10-04 18:54:58 +04:00
|
|
|
|
2004-08-05 20:31:30 +04:00
|
|
|
local_leader = (*((int*)lleader));
|
2005-03-14 23:57:21 +03:00
|
|
|
remote_leader = (orte_process_name_t*)rleader;
|
2005-07-06 00:59:35 +04:00
|
|
|
size_count = count;
|
2004-06-17 02:37:03 +04:00
|
|
|
|
2009-02-24 20:17:33 +03:00
|
|
|
if ( &ompi_mpi_op_sum.op != op && &ompi_mpi_op_prod.op != op &&
|
|
|
|
&ompi_mpi_op_max.op != op && &ompi_mpi_op_min.op != op ) {
|
2004-06-17 02:37:03 +04:00
|
|
|
return MPI_ERR_OP;
|
|
|
|
}
|
2010-10-04 18:54:58 +04:00
|
|
|
|
|
|
|
|
2004-08-05 20:31:30 +04:00
|
|
|
local_rank = ompi_comm_rank ( comm );
|
2005-04-07 21:48:42 +04:00
|
|
|
tmpbuf = (int *) malloc ( count * sizeof(int));
|
2004-06-17 02:37:03 +04:00
|
|
|
if ( NULL == tmpbuf ) {
|
2008-08-11 13:43:01 +04:00
|
|
|
rc = OMPI_ERR_OUT_OF_RESOURCE;
|
|
|
|
goto exit;
|
2004-06-17 02:37:03 +04:00
|
|
|
}
|
|
|
|
|
2004-08-05 20:31:30 +04:00
|
|
|
/* comm is an intra-communicator */
|
2007-08-19 07:37:49 +04:00
|
|
|
rc = comm->c_coll.coll_allreduce(inbuf,tmpbuf,count,MPI_INT,op, comm,
|
|
|
|
comm->c_coll.coll_allreduce_module);
|
2004-06-17 02:37:03 +04:00
|
|
|
if ( OMPI_SUCCESS != rc ) {
|
|
|
|
goto exit;
|
|
|
|
}
|
2004-08-05 20:31:30 +04:00
|
|
|
|
2004-06-17 02:37:03 +04:00
|
|
|
if (local_rank == local_leader ) {
|
2008-02-28 04:57:57 +03:00
|
|
|
opal_buffer_t *sbuf;
|
|
|
|
opal_buffer_t *rbuf;
|
2004-08-05 20:31:30 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
sbuf = OBJ_NEW(opal_buffer_t);
|
|
|
|
rbuf = OBJ_NEW(opal_buffer_t);
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
if (ORTE_SUCCESS != (rc = opal_dss.pack(sbuf, tmpbuf, (orte_std_cntr_t)count, OPAL_INT))) {
|
2005-03-14 23:57:21 +03:00
|
|
|
goto exit;
|
|
|
|
}
|
2004-08-05 20:31:30 +04:00
|
|
|
|
2004-08-13 02:41:42 +04:00
|
|
|
if ( send_first ) {
|
2008-06-18 07:15:56 +04:00
|
|
|
if (0 > (rc = orte_rml.send_buffer(remote_leader, sbuf, OMPI_RML_TAG_COMM_CID_INTRA, 0))) {
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
if (0 > (rc = orte_rml.recv_buffer(remote_leader, rbuf, OMPI_RML_TAG_COMM_CID_INTRA, 0))) {
|
|
|
|
goto exit;
|
|
|
|
}
|
2004-08-05 20:31:30 +04:00
|
|
|
}
|
|
|
|
else {
|
2008-06-18 07:15:56 +04:00
|
|
|
if (0 > (rc = orte_rml.recv_buffer(remote_leader, rbuf, OMPI_RML_TAG_COMM_CID_INTRA, 0))) {
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
if (0 > (rc = orte_rml.send_buffer(remote_leader, sbuf, OMPI_RML_TAG_COMM_CID_INTRA, 0))) {
|
|
|
|
goto exit;
|
|
|
|
}
|
2004-08-05 20:31:30 +04:00
|
|
|
}
|
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
if (ORTE_SUCCESS != (rc = opal_dss.unpack(rbuf, outbuf, &size_count, OPAL_INT))) {
|
2005-03-14 23:57:21 +03:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
OBJ_RELEASE(sbuf);
|
|
|
|
OBJ_RELEASE(rbuf);
|
2006-08-15 23:54:10 +04:00
|
|
|
count = (int)size_count;
|
2004-08-13 02:41:42 +04:00
|
|
|
|
2009-02-24 20:17:33 +03:00
|
|
|
if ( &ompi_mpi_op_max.op == op ) {
|
2004-06-17 02:37:03 +04:00
|
|
|
for ( i = 0 ; i < count; i++ ) {
|
2010-10-04 18:54:58 +04:00
|
|
|
if (tmpbuf[i] > outbuf[i]) {
|
|
|
|
outbuf[i] = tmpbuf[i];
|
|
|
|
}
|
2004-06-17 02:37:03 +04:00
|
|
|
}
|
|
|
|
}
|
2009-02-24 20:17:33 +03:00
|
|
|
else if ( &ompi_mpi_op_min.op == op ) {
|
2004-06-17 02:37:03 +04:00
|
|
|
for ( i = 0 ; i < count; i++ ) {
|
2010-10-04 18:54:58 +04:00
|
|
|
if (tmpbuf[i] < outbuf[i]) {
|
|
|
|
outbuf[i] = tmpbuf[i];
|
|
|
|
}
|
2004-06-17 02:37:03 +04:00
|
|
|
}
|
|
|
|
}
|
2009-02-24 20:17:33 +03:00
|
|
|
else if ( &ompi_mpi_op_sum.op == op ) {
|
2004-06-17 02:37:03 +04:00
|
|
|
for ( i = 0 ; i < count; i++ ) {
|
|
|
|
outbuf[i] += tmpbuf[i];
|
|
|
|
}
|
|
|
|
}
|
2009-02-24 20:17:33 +03:00
|
|
|
else if ( &ompi_mpi_op_prod.op == op ) {
|
2004-06-17 02:37:03 +04:00
|
|
|
for ( i = 0 ; i < count; i++ ) {
|
|
|
|
outbuf[i] *= tmpbuf[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-10-04 18:54:58 +04:00
|
|
|
|
2004-08-05 20:31:30 +04:00
|
|
|
rc = comm->c_coll.coll_bcast (outbuf, count, MPI_INT,
|
2007-08-19 07:37:49 +04:00
|
|
|
local_leader, comm,
|
|
|
|
comm->c_coll.coll_bcast_module);
|
2004-06-17 02:37:03 +04:00
|
|
|
|
|
|
|
exit:
|
|
|
|
if (NULL != tmpbuf ) {
|
|
|
|
free (tmpbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (rc);
|
|
|
|
}
|
2008-02-28 04:57:57 +03:00
|
|
|
|
|
|
|
END_C_DECLS
|