XGC1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
domain_decomposition.hpp
Go to the documentation of this file.
1 #ifndef DOMAIN_DECOMPOSITION_HPP
2 #define DOMAIN_DECOMPOSITION_HPP
3 #include "space_settings.hpp"
4 #include "NamelistReader.hpp"
5 #ifdef USE_MPI
6 # include "my_mpi.hpp"
7 #endif
9 #include "grid_weights.hpp"
10 
11 // Decomposition class
12 template<class Device>
14  public:
15 
16  // Constructor
18 
19  DomainDecomposition(NLReader::NamelistReader& nlr, int nnodes_in);
20 
21  DomainDecomposition(int nranks_in);
22 
23  void setup_gvid0_pid(NLReader::NamelistReader& nlr, int nnodes_in);
24 
25  int nplanes;
26 
27 #ifdef USE_MPI
28  // MPI communicators etc
29  const MyMPI mpi;
30 #endif
31 
32  // Updater
33  void update(int new_f0_inode1);
34 
35  void update_pol_decomp();
36 
37  KOKKOS_INLINE_FUNCTION int node_to_plane_rank(int node) const;
38 
39  KOKKOS_INLINE_FUNCTION void node_to_rank(const SimdGridWeights<Order::Zero, PIT_GLOBAL>& grid_wts0, const Simd<int>& iphi, bool plane_sort_only, Simd<int>& pid) const;
40 
41  // Constants
42  bool pol_decomp;
45  int n_pids;
46  int my_pid;
50 
53 
54  // Variables
56  int nnodes;
57 
58  // Views
59  Kokkos::View<int*,Kokkos::LayoutRight,HostType> gvid0_pid_h;
60  Kokkos::View<int*,Kokkos::LayoutRight,Device> gvid0_pid;
61 };
62 
63 #include "domain_decomposition.tpp"
64 #endif
bool decompose_fields
Whether to decompose fields.
Definition: domain_decomposition.hpp:51
int plane_totalpe
Processors per plane?
Definition: domain_decomposition.hpp:44
int plane_index
Offset of local plane.
Definition: domain_decomposition.hpp:48
Definition: grid_weights.hpp:47
Definition: NamelistReader.hpp:193
int node_offset
Offset of first mesh node belonging to this MPI rank.
Definition: domain_decomposition.hpp:55
void update_pol_decomp()
Definition: domain_decomposition.tpp:145
int nnodes
Number of nodes belonging to this MPI rank.
Definition: domain_decomposition.hpp:56
int my_pid
ID of this processor.
Definition: domain_decomposition.hpp:46
int pe_per_plane
Processors per plane.
Definition: domain_decomposition.hpp:43
Definition: my_mpi.hpp:19
int n_pids
Processors per plane?
Definition: domain_decomposition.hpp:45
int nnodes_on_plane
Number of nodes on local plane.
Definition: domain_decomposition.hpp:49
void setup_gvid0_pid(NLReader::NamelistReader &nlr, int nnodes_in)
Definition: domain_decomposition.tpp:79
void update(int new_f0_inode1)
Definition: domain_decomposition.tpp:125
Definition: field_decomposition.hpp:12
int nplanes
Definition: domain_decomposition.hpp:25
Kokkos::View< int *, Kokkos::LayoutRight, Device > gvid0_pid
Which processors get which vertices.
Definition: domain_decomposition.hpp:60
int my_plane_pid
Poloidal ID of this processor.
Definition: domain_decomposition.hpp:47
KOKKOS_INLINE_FUNCTION void node_to_rank(const SimdGridWeights< Order::Zero, PIT_GLOBAL > &grid_wts0, const Simd< int > &iphi, bool plane_sort_only, Simd< int > &pid) const
Definition: domain_decomposition.tpp:185
DomainDecomposition(NLReader::NamelistReader &nlr)
Definition: domain_decomposition.tpp:32
Definition: domain_decomposition.hpp:13
FieldDecomposition< Device > field_decomp
Definition: domain_decomposition.hpp:52
bool pol_decomp
Use poloidal decomposition.
Definition: domain_decomposition.hpp:42
KOKKOS_INLINE_FUNCTION int node_to_plane_rank(int node) const
Definition: domain_decomposition.tpp:167
Kokkos::View< int *, Kokkos::LayoutRight, HostType > gvid0_pid_h
Which processors get which vertices (host)
Definition: domain_decomposition.hpp:59