Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix a doc error about actors (Tutorial_algorithms)
[simgrid.git] / src / smpi / include / smpi_topo.hpp
1 /* Copyright (c) 2010-2019. 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 #ifndef SMPI_TOPO_HPP_INCLUDED
7 #define SMPI_TOPO_HPP_INCLUDED
8
9 #include "smpi_comm.hpp"
10 #include "smpi_status.hpp"
11
12 typedef SMPI_Topology *MPI_Topology;
13
14 namespace simgrid{
15 namespace smpi{
16
17 class Topo {
18   MPI_Comm comm_;
19
20 public:
21   virtual ~Topo() = default;
22   MPI_Comm getComm() const { return comm_; }
23   void setComm(MPI_Comm comm) { comm_ = comm; }
24 };
25
26 class Topo_Cart: public Topo {
27   int nnodes_ = 0;
28   int ndims_;
29   std::vector<int> dims_;
30   std::vector<int> periodic_;
31   std::vector<int> position_;
32
33 public:
34   explicit Topo_Cart(int ndims);
35   Topo_Cart(MPI_Comm comm_old, int ndims, const int dims[], const int periods[], int reorder, MPI_Comm* comm_cart);
36   Topo_Cart* sub(const int remain_dims[], MPI_Comm* newcomm);
37   int coords(int rank, int maxdims, int coords[]);
38   int get(int maxdims, int* dims, int* periods, int* coords);
39   int rank(const int* coords, int* rank);
40   int shift(int direction, int disp, int* rank_source, int* rank_dest);
41   int dim_get(int* ndims);
42   static int Dims_create(int nnodes, int ndims, int dims[]);
43 };
44
45
46 class Topo_Graph: public Topo {
47   std::vector<int> index_;
48   std::vector<int> edges_;
49 };
50
51 class Topo_Dist_Graph: public Topo {
52   std::vector<int> in_;
53   std::vector<int> in_weights_;
54   std::vector<int> out_;
55   std::vector<int> out_weights_;
56 };
57
58 }
59 }
60
61
62 #endif