2004-01-12 00:26:55 +03: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.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2004-11-28 23:09:25 +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.
|
2012-04-04 19:11:03 +04:00
|
|
|
* Copyright (c) 2012 Oak Ridge National Labs. All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-01-12 00:26:55 +03:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#include "ompi_config.h"
|
2004-02-15 00:26:30 +03:00
|
|
|
#include "coll_basic.h"
|
2004-01-12 00:26:55 +03:00
|
|
|
|
|
|
|
#include "mpi.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/constants.h"
|
2005-07-04 04:13:44 +04:00
|
|
|
#include "opal/util/bit_ops.h"
|
2005-09-13 00:21:53 +04:00
|
|
|
#include "ompi/mca/pml/pml.h"
|
|
|
|
#include "ompi/mca/coll/coll.h"
|
|
|
|
#include "ompi/mca/coll/base/coll_tags.h"
|
2004-01-12 00:26:55 +03:00
|
|
|
#include "coll_basic.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2004-06-29 04:02:25 +04:00
|
|
|
* barrier_intra_lin
|
2004-01-12 00:26:55 +03:00
|
|
|
*
|
|
|
|
* Function: - barrier using O(N) algorithm
|
|
|
|
* Accepts: - same as MPI_Barrier()
|
|
|
|
* Returns: - MPI_SUCCESS or error code
|
|
|
|
*/
|
2005-08-10 14:51:42 +04:00
|
|
|
int
|
2007-08-19 07:37:49 +04:00
|
|
|
mca_coll_basic_barrier_intra_lin(struct ompi_communicator_t *comm,
|
2008-07-29 02:40:57 +04:00
|
|
|
mca_coll_base_module_t *module)
|
2004-01-12 00:26:55 +03:00
|
|
|
{
|
2005-08-10 14:51:42 +04:00
|
|
|
int i;
|
|
|
|
int err;
|
|
|
|
int size = ompi_comm_size(comm);
|
|
|
|
int rank = ompi_comm_rank(comm);
|
|
|
|
|
|
|
|
/* All non-root send & receive zero-length message. */
|
|
|
|
|
|
|
|
if (rank > 0) {
|
2005-08-10 21:53:43 +04:00
|
|
|
err =
|
|
|
|
MCA_PML_CALL(send
|
|
|
|
(NULL, 0, MPI_BYTE, 0, MCA_COLL_BASE_TAG_BARRIER,
|
|
|
|
MCA_PML_BASE_SEND_STANDARD, comm));
|
|
|
|
if (MPI_SUCCESS != err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
err =
|
|
|
|
MCA_PML_CALL(recv
|
|
|
|
(NULL, 0, MPI_BYTE, 0, MCA_COLL_BASE_TAG_BARRIER,
|
|
|
|
comm, MPI_STATUS_IGNORE));
|
|
|
|
if (MPI_SUCCESS != err) {
|
|
|
|
return err;
|
|
|
|
}
|
2004-01-12 00:26:55 +03:00
|
|
|
}
|
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
/* The root collects and broadcasts the messages. */
|
|
|
|
|
|
|
|
else {
|
2005-08-10 21:53:43 +04:00
|
|
|
for (i = 1; i < size; ++i) {
|
|
|
|
err = MCA_PML_CALL(recv(NULL, 0, MPI_BYTE, MPI_ANY_SOURCE,
|
|
|
|
MCA_COLL_BASE_TAG_BARRIER,
|
|
|
|
comm, MPI_STATUS_IGNORE));
|
|
|
|
if (MPI_SUCCESS != err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 1; i < size; ++i) {
|
|
|
|
err =
|
|
|
|
MCA_PML_CALL(send
|
|
|
|
(NULL, 0, MPI_BYTE, i,
|
|
|
|
MCA_COLL_BASE_TAG_BARRIER,
|
|
|
|
MCA_PML_BASE_SEND_STANDARD, comm));
|
|
|
|
if (MPI_SUCCESS != err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
2004-01-12 00:26:55 +03:00
|
|
|
}
|
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
/* All done */
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
return MPI_SUCCESS;
|
2004-01-12 00:26:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2004-06-29 04:02:25 +04:00
|
|
|
* barrier_intra_log
|
2004-01-12 00:26:55 +03:00
|
|
|
*
|
|
|
|
* Function: - barrier using O(log(N)) algorithm
|
|
|
|
* Accepts: - same as MPI_Barrier()
|
|
|
|
* Returns: - MPI_SUCCESS or error code
|
|
|
|
*/
|
2005-08-10 14:51:42 +04:00
|
|
|
int
|
2007-08-19 07:37:49 +04:00
|
|
|
mca_coll_basic_barrier_intra_log(struct ompi_communicator_t *comm,
|
2008-07-29 02:40:57 +04:00
|
|
|
mca_coll_base_module_t *module)
|
2004-01-12 00:26:55 +03:00
|
|
|
{
|
2005-08-10 14:51:42 +04:00
|
|
|
int i;
|
|
|
|
int err;
|
|
|
|
int peer;
|
|
|
|
int dim;
|
|
|
|
int hibit;
|
|
|
|
int mask;
|
|
|
|
int size = ompi_comm_size(comm);
|
|
|
|
int rank = ompi_comm_rank(comm);
|
|
|
|
|
|
|
|
/* Send null-messages up and down the tree. Synchronization at the
|
|
|
|
* root (rank 0). */
|
|
|
|
|
|
|
|
dim = comm->c_cube_dim;
|
|
|
|
hibit = opal_hibit(rank, dim);
|
|
|
|
--dim;
|
|
|
|
|
|
|
|
/* Receive from children. */
|
|
|
|
|
|
|
|
for (i = dim, mask = 1 << i; i > hibit; --i, mask >>= 1) {
|
2005-08-10 21:53:43 +04:00
|
|
|
peer = rank | mask;
|
|
|
|
if (peer < size) {
|
|
|
|
err = MCA_PML_CALL(recv(NULL, 0, MPI_BYTE, peer,
|
|
|
|
MCA_COLL_BASE_TAG_BARRIER,
|
|
|
|
comm, MPI_STATUS_IGNORE));
|
|
|
|
if (MPI_SUCCESS != err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
2004-01-12 00:26:55 +03:00
|
|
|
}
|
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
/* Send to and receive from parent. */
|
|
|
|
|
|
|
|
if (rank > 0) {
|
2005-08-10 21:53:43 +04:00
|
|
|
peer = rank & ~(1 << hibit);
|
|
|
|
err =
|
|
|
|
MCA_PML_CALL(send
|
|
|
|
(NULL, 0, MPI_BYTE, peer,
|
|
|
|
MCA_COLL_BASE_TAG_BARRIER,
|
|
|
|
MCA_PML_BASE_SEND_STANDARD, comm));
|
|
|
|
if (MPI_SUCCESS != err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = MCA_PML_CALL(recv(NULL, 0, MPI_BYTE, peer,
|
|
|
|
MCA_COLL_BASE_TAG_BARRIER,
|
|
|
|
comm, MPI_STATUS_IGNORE));
|
2012-04-04 19:11:03 +04:00
|
|
|
if (MPI_SUCCESS != err) {
|
|
|
|
return err;
|
|
|
|
}
|
2004-01-12 00:26:55 +03:00
|
|
|
}
|
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
/* Send to children. */
|
|
|
|
|
|
|
|
for (i = hibit + 1, mask = 1 << i; i <= dim; ++i, mask <<= 1) {
|
2005-08-10 21:53:43 +04:00
|
|
|
peer = rank | mask;
|
|
|
|
if (peer < size) {
|
|
|
|
err = MCA_PML_CALL(send(NULL, 0, MPI_BYTE, peer,
|
|
|
|
MCA_COLL_BASE_TAG_BARRIER,
|
|
|
|
MCA_PML_BASE_SEND_STANDARD, comm));
|
|
|
|
if (MPI_SUCCESS != err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
2004-01-12 00:26:55 +03:00
|
|
|
}
|
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
/* All done */
|
2004-01-12 00:26:55 +03:00
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
return MPI_SUCCESS;
|
2004-01-12 00:26:55 +03:00
|
|
|
}
|
2004-06-29 04:02:25 +04:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* barrier_inter_lin
|
|
|
|
*
|
|
|
|
* Function: - barrier using O(log(N)) algorithm
|
|
|
|
* Accepts: - same as MPI_Barrier()
|
|
|
|
* Returns: - MPI_SUCCESS or error code
|
|
|
|
*/
|
2005-08-10 14:51:42 +04:00
|
|
|
int
|
2007-08-19 07:37:49 +04:00
|
|
|
mca_coll_basic_barrier_inter_lin(struct ompi_communicator_t *comm,
|
2008-07-29 02:40:57 +04:00
|
|
|
mca_coll_base_module_t *module)
|
2004-06-29 04:02:25 +04:00
|
|
|
{
|
2004-08-04 02:12:57 +04:00
|
|
|
int rank;
|
|
|
|
int result;
|
|
|
|
|
2005-08-10 14:51:42 +04:00
|
|
|
rank = ompi_comm_rank(comm);
|
|
|
|
return comm->c_coll.coll_allreduce(&rank, &result, 1, MPI_INT, MPI_MAX,
|
2007-10-04 20:29:24 +04:00
|
|
|
comm, comm->c_coll.coll_allreduce_module);
|
2004-06-29 04:02:25 +04:00
|
|
|
}
|