Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of framagit.org:simgrid/simgrid
[simgrid.git] / src / smpi / include / smpi_comm.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_COMM_HPP_INCLUDED
7 #define SMPI_COMM_HPP_INCLUDED
8
9 #include <list>
10 #include <string>
11 #include "smpi_errhandler.hpp"
12 #include "smpi_keyvals.hpp"
13 #include "smpi_group.hpp"
14 #include "smpi_topo.hpp"
15
16 namespace simgrid{
17 namespace smpi{
18
19 class Comm : public F2C, public Keyval{
20   friend Topo;
21   MPI_Group group_;
22   SMPI_Topo_type topoType_ = MPI_INVALID_TOPO;
23   MPI_Topology topo_; // to be replaced by an union
24   int refcount_          = 1;
25   MPI_Comm leaders_comm_ = MPI_COMM_NULL; // inter-node communicator
26   MPI_Comm intra_comm_   = MPI_COMM_NULL; // intra-node communicator. For MPI_COMM_WORLD this can't be used, as var is
27                                           // global. Use an intracomm stored in the process data instead
28   int* leaders_map_     = nullptr;        // who is the leader of each process
29   int is_uniform_       = 1;
30   int* non_uniform_map_ = nullptr; // set if smp nodes have a different number of processes allocated
31   int is_blocked_       = 0;       // are ranks allocated on the same smp node contiguous ?
32   int is_smp_comm_;             // set to 0 in case this is already an intra-comm or a leader-comm to avoid recursion
33   std::list<MPI_Win> rma_wins_; // attached windows for synchronization.
34   std::string name_;
35   MPI_Info info_ = MPI_INFO_NULL;
36   int id_;
37   MPI_Errhandler errhandler_ = MPI_ERRORS_ARE_FATAL;
38
39 public:
40   static std::unordered_map<int, smpi_key_elem> keyvals_;
41   static int keyval_id_;
42
43   Comm() = default;
44   Comm(MPI_Group group, MPI_Topology topo, int smp = 0, int id=MPI_UNDEFINED);
45   int dup(MPI_Comm* newcomm);
46   int dup_with_info(MPI_Info info, MPI_Comm* newcomm);
47   MPI_Group group();
48   MPI_Topology topo() { return topo_; }
49   int size();
50   int rank();
51   int id();
52   void get_name(char* name, int* len);
53   void set_name(const char* name);
54   MPI_Info info();
55   void set_info( MPI_Info info);
56   MPI_Errhandler errhandler();
57   void set_errhandler( MPI_Errhandler errhandler);
58   void set_leaders_comm(MPI_Comm leaders);
59   void set_intra_comm(MPI_Comm leaders) { intra_comm_ = leaders; };
60   int* get_non_uniform_map();
61   int* get_leaders_map();
62   MPI_Comm get_leaders_comm();
63   MPI_Comm get_intra_comm();
64   MPI_Comm find_intra_comm(int* leader);
65   int is_uniform();
66   int is_blocked();
67   int is_smp_comm();
68   MPI_Comm split(int color, int key);
69   void cleanup_smp();
70   void ref();
71   static void unref(MPI_Comm comm);
72   static void destroy(MPI_Comm comm);
73   void init_smp();
74
75   static void free_f(int id);
76   static Comm* f2c(int);
77
78   static int keyval_create(MPI_Comm_copy_attr_function* copy_fn, MPI_Comm_delete_attr_function* delete_fn, int* keyval,
79                            void* extra_state);
80   static int keyval_free(int* keyval);
81   static void keyval_cleanup();
82
83   void add_rma_win(MPI_Win win);
84   void remove_rma_win(MPI_Win win);
85   void finish_rma_calls();
86   MPI_Comm split_type(int type, int key, MPI_Info info);
87 };
88
89 } // namespace smpi
90 } // namespace simgrid
91
92 #endif