X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/794555c12839e503e3fd6e101e3e82336036939e..39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f:/src/smpi/bindings/smpi_pmpi_topo.cpp diff --git a/src/smpi/bindings/smpi_pmpi_topo.cpp b/src/smpi/bindings/smpi_pmpi_topo.cpp index 0be7e5fe34..f543fe442d 100644 --- a/src/smpi/bindings/smpi_pmpi_topo.cpp +++ b/src/smpi/bindings/smpi_pmpi_topo.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -9,33 +9,36 @@ XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(smpi_pmpi); /* PMPI User level calls */ -extern "C" { // Obviously, the C MPI interface should use the C linkage /* The topo part of MPI_COMM_WORLD should always be nullptr. When other topologies will be implemented, not only should we * check if the topology is nullptr, but we should check if it is the good topology type (so we have to add a * MPIR_Topo_Type field, and replace the MPI_Topology field by an union)*/ -int PMPI_Cart_create(MPI_Comm comm_old, int ndims, int* dims, int* periodic, int reorder, MPI_Comm* comm_cart) { - if (comm_old == MPI_COMM_NULL){ - return MPI_ERR_COMM; - } else if (ndims < 0 || (ndims > 0 && (dims == nullptr || periodic == nullptr)) || comm_cart == nullptr) { - return MPI_ERR_ARG; - } else{ - simgrid::smpi::Topo_Cart* topo = new simgrid::smpi::Topo_Cart(comm_old, ndims, dims, periodic, reorder, comm_cart); - if(*comm_cart==MPI_COMM_NULL) - delete topo; - return MPI_SUCCESS; +int PMPI_Cart_create(MPI_Comm comm_old, int ndims, const int* dims, const int* periodic, int reorder, MPI_Comm* comm_cart) { + CHECK_COMM2(1, comm_old) + if (ndims > 0){ + CHECK_NULL(3, MPI_ERR_ARG, dims) + CHECK_NULL(4, MPI_ERR_ARG, periodic) + CHECK_NULL(6, MPI_ERR_ARG, comm_cart) + } + CHECK_NEGATIVE(2, MPI_ERR_ARG, ndims) + for (int i = 0; i < ndims; i++) + CHECK_NEGATIVE(2, MPI_ERR_ARG, dims[i]) + const simgrid::smpi::Topo_Cart* topo = + new simgrid::smpi::Topo_Cart(comm_old, ndims, dims, periodic, reorder, comm_cart); + if (*comm_cart == MPI_COMM_NULL) { + delete topo; + } else { + xbt_assert((*comm_cart)->topo().get() == topo); } + return MPI_SUCCESS; } -int PMPI_Cart_rank(MPI_Comm comm, int* coords, int* rank) { - if(comm == MPI_COMM_NULL || comm->topo() == nullptr) { - return MPI_ERR_TOPOLOGY; - } - if (coords == nullptr) { - return MPI_ERR_ARG; - } - MPIR_Cart_Topology topo = static_cast(comm->topo()); +int PMPI_Cart_rank(MPI_Comm comm, const int* coords, int* rank) { + CHECK_COMM(1) + CHECK_NULL(1, MPI_ERR_TOPOLOGY, comm->topo()) + CHECK_NULL(2, MPI_SUCCESS, coords) + MPIR_Cart_Topology topo = static_cast(comm->topo().get()); if (topo==nullptr) { return MPI_ERR_ARG; } @@ -43,13 +46,12 @@ int PMPI_Cart_rank(MPI_Comm comm, int* coords, int* rank) { } int PMPI_Cart_shift(MPI_Comm comm, int direction, int displ, int* source, int* dest) { - if(comm == MPI_COMM_NULL || comm->topo() == nullptr) { - return MPI_ERR_TOPOLOGY; - } - if (source == nullptr || dest == nullptr || direction < 0 ) { - return MPI_ERR_ARG; - } - MPIR_Cart_Topology topo = static_cast(comm->topo()); + CHECK_COMM(1) + CHECK_NULL(1, MPI_ERR_TOPOLOGY, comm->topo()) + CHECK_NEGATIVE(3, MPI_ERR_ARG, direction) + CHECK_NULL(4, MPI_ERR_ARG, source) + CHECK_NULL(5, MPI_ERR_ARG, dest) + MPIR_Cart_Topology topo = static_cast(comm->topo().get()); if (topo==nullptr) { return MPI_ERR_ARG; } @@ -57,19 +59,14 @@ int PMPI_Cart_shift(MPI_Comm comm, int direction, int displ, int* source, int* d } int PMPI_Cart_coords(MPI_Comm comm, int rank, int maxdims, int* coords) { - if(comm == MPI_COMM_NULL || comm->topo() == nullptr) { - return MPI_ERR_TOPOLOGY; - } - if (rank < 0 || rank >= comm->size()) { - return MPI_ERR_RANK; - } - if (maxdims <= 0) { - return MPI_ERR_ARG; - } - if(coords == nullptr) { - return MPI_ERR_ARG; + CHECK_COMM(1) + CHECK_NULL(1, MPI_ERR_TOPOLOGY, comm->topo()) + CHECK_NEGATIVE(3, MPI_ERR_ARG, maxdims) + CHECK_RANK(2, rank, comm) + if(maxdims==0 || coords == nullptr) { + return MPI_SUCCESS; } - MPIR_Cart_Topology topo = static_cast(comm->topo()); + MPIR_Cart_Topology topo = static_cast(comm->topo().get()); if (topo==nullptr) { return MPI_ERR_ARG; } @@ -77,13 +74,13 @@ int PMPI_Cart_coords(MPI_Comm comm, int rank, int maxdims, int* coords) { } int PMPI_Cart_get(MPI_Comm comm, int maxdims, int* dims, int* periods, int* coords) { - if(comm == nullptr || comm->topo() == nullptr) { - return MPI_ERR_TOPOLOGY; - } - if(maxdims <= 0 || dims == nullptr || periods == nullptr || coords == nullptr) { - return MPI_ERR_ARG; + if(dims == nullptr || periods == nullptr || coords == nullptr){ + return MPI_SUCCESS; } - MPIR_Cart_Topology topo = static_cast(comm->topo()); + CHECK_COMM(1) + CHECK_NULL(1, MPI_ERR_TOPOLOGY, comm->topo()) + CHECK_NEGATIVE(3, MPI_ERR_ARG, maxdims) + MPIR_Cart_Topology topo = static_cast(comm->topo().get()); if (topo==nullptr) { return MPI_ERR_ARG; } @@ -91,13 +88,10 @@ int PMPI_Cart_get(MPI_Comm comm, int maxdims, int* dims, int* periods, int* coor } int PMPI_Cartdim_get(MPI_Comm comm, int* ndims) { - if (comm == MPI_COMM_NULL || comm->topo() == nullptr) { - return MPI_ERR_TOPOLOGY; - } - if (ndims == nullptr) { - return MPI_ERR_ARG; - } - MPIR_Cart_Topology topo = static_cast(comm->topo()); + CHECK_COMM(1) + CHECK_NULL(1, MPI_ERR_TOPOLOGY, comm->topo()) + CHECK_NULL(2, MPI_ERR_ARG, ndims) + const simgrid::smpi::Topo_Cart* topo = static_cast(comm->topo().get()); if (topo==nullptr) { return MPI_ERR_ARG; } @@ -105,32 +99,25 @@ int PMPI_Cartdim_get(MPI_Comm comm, int* ndims) { } int PMPI_Dims_create(int nnodes, int ndims, int* dims) { - if(dims == nullptr) { - return MPI_ERR_ARG; - } + CHECK_NULL(3, MPI_SUCCESS, dims) if (ndims < 1 || nnodes < 1) { return MPI_ERR_DIMS; } return simgrid::smpi::Topo_Cart::Dims_create(nnodes, ndims, dims); } -int PMPI_Cart_sub(MPI_Comm comm, int* remain_dims, MPI_Comm* comm_new) { - if(comm == MPI_COMM_NULL || comm->topo() == nullptr) { - return MPI_ERR_TOPOLOGY; - } - if (comm_new == nullptr) { - return MPI_ERR_ARG; - } - MPIR_Cart_Topology topo = static_cast(comm->topo()); +int PMPI_Cart_sub(MPI_Comm comm, const int* remain_dims, MPI_Comm* comm_new) { + CHECK_COMM(1) + CHECK_NULL(1, MPI_ERR_TOPOLOGY, comm->topo()) + CHECK_NULL(3, MPI_ERR_ARG, comm_new) + MPIR_Cart_Topology topo = static_cast(comm->topo().get()); if (topo==nullptr) { return MPI_ERR_ARG; } - MPIR_Cart_Topology cart = topo->sub(remain_dims, comm_new); + const simgrid::smpi::Topo_Cart* cart = topo->sub(remain_dims, comm_new); if(*comm_new==MPI_COMM_NULL) delete cart; if(cart==nullptr) return MPI_ERR_ARG; return MPI_SUCCESS; } - -}