2004-08-21 04:49:07 +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.
|
|
|
|
* 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.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-08-21 04:49:07 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
2005-09-07 01:41:55 +04:00
|
|
|
/** @file */
|
2004-08-21 04:49:07 +04:00
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/constants.h"
|
2004-08-21 04:49:07 +04:00
|
|
|
#include "coll_sm.h"
|
|
|
|
|
2005-01-30 04:42:57 +03:00
|
|
|
|
2005-09-07 01:41:55 +04:00
|
|
|
/**
|
|
|
|
* Shared memory allreduce.
|
2005-01-30 04:42:57 +03:00
|
|
|
*
|
2005-09-07 01:41:55 +04:00
|
|
|
* For the moment, all we're doing is a reduce to root==0 and then a
|
|
|
|
* broadcast. It is possible that we'll do something better someday.
|
2005-01-30 04:42:57 +03:00
|
|
|
*/
|
|
|
|
int mca_coll_sm_allreduce_intra(void *sbuf, void *rbuf, int count,
|
|
|
|
struct ompi_datatype_t *dtype,
|
|
|
|
struct ompi_op_t *op,
|
|
|
|
struct ompi_communicator_t *comm)
|
|
|
|
{
|
2005-09-07 01:41:55 +04:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = mca_coll_sm_reduce_intra(sbuf, rbuf, count, dtype, op, 0, comm);
|
|
|
|
return (ret == OMPI_SUCCESS) ?
|
|
|
|
mca_coll_sm_bcast_intra(rbuf, count, dtype, 0, comm) : ret;
|
2005-01-30 04:42:57 +03:00
|
|
|
}
|