2004-01-21 03:05:46 +03:00
|
|
|
/*
|
|
|
|
* $HEADERS$
|
|
|
|
*/
|
2004-06-07 19:33:53 +04:00
|
|
|
#include "ompi_config.h"
|
2004-01-21 03:05:46 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "mpi.h"
|
2004-03-17 21:45:16 +03:00
|
|
|
#include "mpi/c/bindings.h"
|
2004-04-22 00:55:54 +04:00
|
|
|
#include "communicator/communicator.h"
|
|
|
|
#include "mca/topo/topo.h"
|
|
|
|
#include "errhandler/errhandler.h"
|
2004-01-21 03:05:46 +03:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
2004-01-21 03:05:46 +03:00
|
|
|
#pragma weak MPI_Cart_sub = PMPI_Cart_sub
|
|
|
|
#endif
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#if OMPI_PROFILING_DEFINES
|
2004-04-20 22:50:43 +04:00
|
|
|
#include "mpi/c/profile/defines.h"
|
|
|
|
#endif
|
|
|
|
|
2004-01-21 03:05:46 +03:00
|
|
|
|
|
|
|
int MPI_Cart_sub(MPI_Comm comm, int *remain_dims, MPI_Comm *new_comm) {
|
2004-04-22 00:55:54 +04:00
|
|
|
int err;
|
|
|
|
mca_topo_base_cart_sub_fn_t func;
|
|
|
|
|
|
|
|
/* check the arguments */
|
|
|
|
if (MPI_PARAM_CHECK) {
|
|
|
|
if (MPI_COMM_NULL == comm) {
|
2004-06-07 19:33:53 +04:00
|
|
|
return OMPI_ERRHANDLER_INVOKE (MPI_COMM_WORLD, MPI_ERR_COMM,
|
2004-04-22 00:55:54 +04:00
|
|
|
"MPI_Cart_sub");
|
|
|
|
}
|
2004-06-07 19:33:53 +04:00
|
|
|
if (OMPI_COMM_IS_INTER(comm)) {
|
|
|
|
return OMPI_ERRHANDLER_INVOKE (MPI_COMM_WORLD, MPI_ERR_COMM,
|
2004-04-22 00:55:54 +04:00
|
|
|
"MPI_Cart_sub");
|
|
|
|
}
|
2004-06-07 19:33:53 +04:00
|
|
|
if (!OMPI_COMM_IS_CART(comm)) {
|
|
|
|
return OMPI_ERRHANDLER_INVOKE (MPI_COMM_WORLD, MPI_ERR_TOPOLOGY,
|
2004-04-22 00:55:54 +04:00
|
|
|
"MPI_Cart_sub");
|
|
|
|
}
|
|
|
|
if (NULL == remain_dims || NULL == new_comm) {
|
2004-06-07 19:33:53 +04:00
|
|
|
return OMPI_ERRHANDLER_INVOKE (MPI_COMM_WORLD, MPI_ERR_ARG,
|
2004-04-22 00:55:54 +04:00
|
|
|
"MPI_Cart_sub");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get the function pointer on this communicator */
|
2004-07-21 02:21:47 +04:00
|
|
|
func = comm->c_topo->topo_cart_sub;
|
2004-04-22 00:55:54 +04:00
|
|
|
if (NULL == func) {
|
2004-06-07 19:33:53 +04:00
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_OTHER,
|
2004-04-22 00:55:54 +04:00
|
|
|
"MPI_Cart_sub");
|
|
|
|
}
|
|
|
|
/* call the function */
|
|
|
|
if ( MPI_SUCCESS !=
|
|
|
|
(err = func(comm, remain_dims, new_comm))) {
|
2004-06-07 19:33:53 +04:00
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, err, "MPI_Cart_sub");
|
2004-04-22 00:55:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* all done */
|
2004-01-21 03:05:46 +03:00
|
|
|
return MPI_SUCCESS;
|
|
|
|
}
|