Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'factor_in_actions' into 'master'
[simgrid.git] / src / smpi / bindings / smpi_pmpi_topo.cpp
1 /* Copyright (c) 2007-2021. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "private.hpp"
7 #include "smpi_comm.hpp"
8
9 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(smpi_pmpi);
10
11 /* PMPI User level calls */
12
13 /* The topo part of MPI_COMM_WORLD should always be nullptr. When other topologies will be implemented, not only should we
14  * check if the topology is nullptr, but we should check if it is the good topology type (so we have to add a
15  *  MPIR_Topo_Type field, and replace the MPI_Topology field by an union)*/
16
17 int PMPI_Cart_create(MPI_Comm comm, int ndims, const int* dims, const int* periodic, int reorder, MPI_Comm* comm_cart) {
18   CHECK_COMM(1)
19   if (ndims > 0){
20     CHECK_NULL(3, MPI_ERR_ARG, dims)
21     CHECK_NULL(4, MPI_ERR_ARG, periodic)
22     CHECK_NULL(6, MPI_ERR_ARG, comm_cart)
23   }
24   CHECK_NEGATIVE(2, MPI_ERR_ARG, ndims)
25   for (int i = 0; i < ndims; i++)
26     CHECK_NEGATIVE(2, MPI_ERR_ARG, dims[i])
27   const auto* topo = new simgrid::smpi::Topo_Cart(comm, ndims, dims, periodic, reorder, comm_cart);
28   if (*comm_cart == MPI_COMM_NULL) {
29     delete topo;
30   } else {
31     xbt_assert((*comm_cart)->topo().get() == topo);
32   }
33   return MPI_SUCCESS;
34 }
35
36 int PMPI_Cart_rank(MPI_Comm comm, const int* coords, int* rank) {
37   CHECK_COMM(1)
38   CHECK_NULL(1, MPI_ERR_TOPOLOGY, comm->topo())
39   CHECK_NULL(2, MPI_SUCCESS, coords)
40   auto* topo = static_cast<MPIR_Cart_Topology>(comm->topo().get());
41   if (topo==nullptr) {
42     return MPI_ERR_ARG;
43   }
44   return topo->rank(coords, rank);
45 }
46
47 int PMPI_Cart_shift(MPI_Comm comm, int direction, int displ, int* source, int* dest) {
48   CHECK_COMM(1)
49   CHECK_NULL(1, MPI_ERR_TOPOLOGY, comm->topo())
50   CHECK_NEGATIVE(3, MPI_ERR_ARG, direction)
51   CHECK_NULL(4, MPI_ERR_ARG, source)
52   CHECK_NULL(5, MPI_ERR_ARG, dest)
53   auto* topo = static_cast<MPIR_Cart_Topology>(comm->topo().get());
54   if (topo==nullptr) {
55     return MPI_ERR_ARG;
56   }
57   return topo->shift(direction, displ, source, dest);
58 }
59
60 int PMPI_Cart_coords(MPI_Comm comm, int rank, int maxdims, int* coords) {
61   CHECK_COMM(1)
62   CHECK_NULL(1, MPI_ERR_TOPOLOGY, comm->topo())
63   CHECK_NEGATIVE(3, MPI_ERR_ARG, maxdims)
64   CHECK_RANK(2, rank, comm)
65   if(maxdims==0 || coords == nullptr) {
66     return MPI_SUCCESS;
67   }
68   auto* topo = static_cast<MPIR_Cart_Topology>(comm->topo().get());
69   if (topo==nullptr) {
70     return MPI_ERR_ARG;
71   }
72   return topo->coords(rank, maxdims, coords);
73 }
74
75 int PMPI_Cart_get(MPI_Comm comm, int maxdims, int* dims, int* periods, int* coords) {
76   if(dims == nullptr || periods == nullptr || coords == nullptr){
77     return MPI_SUCCESS;
78   }
79   CHECK_COMM(1)
80   CHECK_NULL(1, MPI_ERR_TOPOLOGY, comm->topo())
81   CHECK_NEGATIVE(3, MPI_ERR_ARG, maxdims)
82   auto* topo = static_cast<MPIR_Cart_Topology>(comm->topo().get());
83   if (topo==nullptr) {
84     return MPI_ERR_ARG;
85   }
86   return topo->get(maxdims, dims, periods, coords);
87 }
88
89 int PMPI_Cartdim_get(MPI_Comm comm, int* ndims) {
90   CHECK_COMM(1)
91   CHECK_NULL(1, MPI_ERR_TOPOLOGY, comm->topo())
92   CHECK_NULL(2, MPI_ERR_ARG, ndims)
93   const auto* topo = static_cast<MPIR_Cart_Topology>(comm->topo().get());
94   if (topo==nullptr) {
95     return MPI_ERR_ARG;
96   }
97   return topo->dim_get(ndims);
98 }
99
100 int PMPI_Dims_create(int nnodes, int ndims, int* dims) {
101   CHECK_NULL(3, MPI_SUCCESS, dims)
102   if (ndims < 1 || nnodes < 1) {
103     return MPI_ERR_DIMS;
104   }
105   return simgrid::smpi::Topo_Cart::Dims_create(nnodes, ndims, dims);
106 }
107
108 int PMPI_Cart_sub(MPI_Comm comm, const int* remain_dims, MPI_Comm* comm_new) {
109   CHECK_COMM(1)
110   CHECK_NULL(1, MPI_ERR_TOPOLOGY, comm->topo())
111   CHECK_NULL(3, MPI_ERR_ARG, comm_new)
112   auto* topo = static_cast<MPIR_Cart_Topology>(comm->topo().get());
113   if (topo==nullptr) {
114     return MPI_ERR_ARG;
115   }
116   const auto* cart = topo->sub(remain_dims, comm_new);
117   if(*comm_new==MPI_COMM_NULL)
118       delete cart;
119   if(cart==nullptr)
120     return  MPI_ERR_ARG;
121   return MPI_SUCCESS;
122 }