2004-06-29 04:02:25 +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-06-29 04:02:25 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "mpi.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/communicator/communicator.h"
|
|
|
|
#include "opal/mca/mca.h"
|
|
|
|
#include "opal/mca/base/base.h"
|
|
|
|
#include "ompi/mca/coll/base/base.h"
|
2004-06-29 04:02:25 +04:00
|
|
|
|
2007-08-19 07:37:49 +04:00
|
|
|
#define CLOSE(comm, func) \
|
|
|
|
do { \
|
|
|
|
if (NULL != comm->c_coll.coll_ ## func ## _module) { \
|
|
|
|
OBJ_RELEASE(comm->c_coll.coll_ ## func ## _module); \
|
|
|
|
comm->c_coll.coll_## func = NULL; \
|
|
|
|
comm->c_coll.coll_## func ## _module = NULL; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2004-06-29 04:02:25 +04:00
|
|
|
|
2008-12-31 15:17:08 +03:00
|
|
|
int mca_coll_base_comm_unselect(ompi_communicator_t * comm)
|
2004-06-29 04:02:25 +04:00
|
|
|
{
|
2008-12-31 15:17:08 +03:00
|
|
|
CLOSE(comm, allgather);
|
|
|
|
CLOSE(comm, allgatherv);
|
|
|
|
CLOSE(comm, allreduce);
|
|
|
|
CLOSE(comm, alltoall);
|
|
|
|
CLOSE(comm, alltoallv);
|
|
|
|
CLOSE(comm, alltoallw);
|
|
|
|
CLOSE(comm, barrier);
|
|
|
|
CLOSE(comm, bcast);
|
|
|
|
CLOSE(comm, exscan);
|
|
|
|
CLOSE(comm, gather);
|
|
|
|
CLOSE(comm, gatherv);
|
|
|
|
CLOSE(comm, reduce);
|
|
|
|
CLOSE(comm, reduce_scatter);
|
|
|
|
CLOSE(comm, scan);
|
|
|
|
CLOSE(comm, scatter);
|
|
|
|
CLOSE(comm, scatterv);
|
2004-06-29 04:02:25 +04:00
|
|
|
|
2007-08-19 07:37:49 +04:00
|
|
|
/* All done */
|
|
|
|
return OMPI_SUCCESS;
|
2004-06-29 04:02:25 +04:00
|
|
|
}
|