aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetInterp2/src/fasterp.hh
blob: 1a58e82221f98f91ad05dc3467160499df1c7f06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
#ifndef FASTERP_HH
#define FASTERP_HH

#include <cassert>
#include <cstdlib>
#include <iostream>
#include <vector>

#include <cctk.h>

#include <defs.hh>
#include <dist.hh>
#include <typeprops.hh>
#include <vect.hh>



namespace CarpetInterp2 {
  
  using namespace std;
  
  
  
  int const dim = 3;
  
  // Each interpolation point descriptor requires
  //    (dim * (max_order+1) + 1)
  // CCTK_REAL values of memory
  int const max_order = 11;
  
  
  
  // Keep a map, refinement level, and component index together, and
  // map the triple to small integers
  struct mrc_t {
    static int maps;
    static int reflevels;
    static int components;
    
    static void determine_mrc_info ();
    static int get_max_ind () CCTK_ATTRIBUTE_PURE
    {
      return maps * reflevels * components;
    }
    
    int m;
    int rl;
    int c;
    
    mrc_t ()
    {
    }
    
    mrc_t (int const m_, int const rl_, int const c_)
      : m(m_), rl(rl_), c(c_)
    {
      assert (m>=0 and m<maps);
      assert (rl>=0 and rl<reflevels);
      assert (c>=0 and c<components);
    }
    
    // Create a mrc from an integer index
    mrc_t (int ind);
    
    // Convert a mrc into an integer index
    int get_ind () const CCTK_ATTRIBUTE_PURE
    {
      return c + components * (rl + reflevels * m);
    }
    
    bool operator== (mrc_t const & a) const CCTK_ATTRIBUTE_PURE
    {
      return m == a.m and rl == a.rl and c == a.c;
    }
    
    void output (ostream& os) const;
  };
  
  inline
  ostream& operator<< (ostream& os, mrc_t const & mrc)
  { mrc.output(os); return os; }
  
  
  
  // Keep a processor and an integer index together
  struct pn_t {
    int p;
    int n;
    
    pn_t ()
    {
    }
    
    pn_t (int const p_, int const n_)
      : p(p_), n(n_)
    {
      assert (p>=0 and p<dist::size());
      assert (n>=0);
    }
    
    void output (ostream& os) const;
  };
  
  inline
  ostream& operator<< (ostream& os, pn_t const & pn)
  { pn.output(os); return os; }
  
  
  
  // A global location, given by its global coordinates
  struct fasterp_glocs_t {
    vector<CCTK_REAL> coords[dim];
    fasterp_glocs_t (size_t const n)
    {
      for (int d=0; d<dim; ++d) {
        coords[d].resize(n);
      }
    }
    size_t size () const CCTK_ATTRIBUTE_PURE { return coords[0].size(); }
  };
  
  // A local location, given by map and local coordinates
  struct fasterp_llocs_t {
    vector<int> maps;
    vector<CCTK_REAL> coords[dim];
    fasterp_llocs_t (size_t const n)
    {
      maps.resize(n);
      for (int d=0; d<dim; ++d) {
        coords[d].resize(n);
      }
    }
    size_t size () const CCTK_ATTRIBUTE_PURE { return maps.size(); }
  };
  
  // An integer location, given by map, refinement level, and
  // component
  struct fasterp_iloc_t {
    mrc_t mrc;                  // map, refinement level, component
    
#ifdef CARPET_DEBUG
    pn_t pn;                    // origin of this point
    ivect ipos;                 // closest grid point (Carpet indexing)
    ivect ind;                  // closest grid point (local indexing)
#endif
    int ind3d;                  // closest grid point
    rvect offset;               // in terms of grid points
    
    static MPI_Datatype mpi_datatype () CCTK_ATTRIBUTE_CONST;
    
    void output (ostream& os) const;
  };
  
  inline
  ostream& operator<< (ostream& os, fasterp_iloc_t const & iloc)
  { iloc.output(os); return os; }
  
  
  
  struct fasterp_dest_loc_t {
    // ivect idx;
    int ind3d;                  // destination grid point index
  };
  
  class fasterp_src_loc_t {
    CCTK_REAL coeffs[dim][max_order+1]; // interpolation coefficients
    bvect exact;
    
#ifdef CARPET_DEBUG
  public:
    pn_t pn;                    // origin of this point
    mrc_t mrc;                  // map, refinement level, component
    ivect ipos;                 // closest grid point (Carpet indexing)
    ivect ind;                  // source grid point offset
  private:
#endif
    int ind3d;                  // source grid point offset
    
#ifdef CARPET_DEBUG
  public:
    ivect saved_lsh;            // copy of lsh
  private:
#endif
    
  public:
    void
    calc_stencil (fasterp_iloc_t const & iloc,
                  ivect const & lsh,
                  int order);
    void
    interpolate (ivect const & lsh,
                 int order,
                 vector<CCTK_REAL const *> const & varptrs,
                 CCTK_REAL * restrict vals)
      const;
    
  private:
    template <int O>
    void
    interpolate (ivect const & lsh,
                 vector<CCTK_REAL const *> const & varptrs,
                 CCTK_REAL * restrict vals)
      const;
    template <int O0, int O1, int O2>
    void
    interpolate (ivect const & lsh,
                 vector<CCTK_REAL const *> const & varptrs,
                 CCTK_REAL * restrict vals)
      const;
    
  public:
    void output (ostream& os) const;
  };
  
  inline
  ostream& operator<< (ostream& os, fasterp_src_loc_t const & sloc)
  { sloc.output(os); return os; }
  
  
  
  // A receive descriptor, describing what is received from other
  // processors
  struct recv_proc_t {
    int p;                      // sending processor
    int offset;
    int npoints;                // total number of received points
  };

  struct recv_descr_t {
    vector<recv_proc_t> procs;
    vector<int> procinds;
    int npoints;                // total number of received points
    
    vector<int> index;   // gather index list: index[user-location] =
                         // mpi-location
  };
  
  // A send descriptor; describing what to send to other processors
  struct send_comp_t {
    // This structure does not exist for all components -- components
    // which are not accessed are not described, making this a sparse
    // data structure.  The fields m, rl, and c identify the
    // component.
    vector<fasterp_src_loc_t> locs;
    
    mrc_t mrc;                  // source map, refinement level, component
    ivect lsh;
    int offset;
    int npoints;
  };
  
  struct send_proc_t {
    // This structure does not exist for all processors -- processors
    // with which there is no communication are not described, making
    // this a sparse data structure.  The field p contains the
    // processor number.
    vector<send_comp_t> comps;
    
    int p;                      // receiving processor
    int offset;
    int npoints;                // total number of sent points
    
    // gather index list: index[mpi-location] = calculation-location
    vector<int> index;
  };
  
  struct send_descr_t {
    vector<send_proc_t> procs;
    // vector<int> procinds;
    int npoints;                // total number of sent points
  };
  
  
  
  class fasterp_setup_t {
    recv_descr_t recv_descr;
    send_descr_t send_descr;
    int order;
    
    int regridding_epoch;
    
    void
    setup (cGH const * restrict cctkGH,
           fasterp_llocs_t const & locations);
    
  public:
    fasterp_setup_t (cGH const * restrict cctkGH,
                     fasterp_glocs_t const & locations,
                     int order);
    
    fasterp_setup_t (cGH const * restrict cctkGH,
                     fasterp_llocs_t const & locations,
                     int order);
    
    ~ fasterp_setup_t ();
    
    void 
    interpolate (cGH const * restrict cctkGH,
                 vector<int> const & varinds,
                 vector<CCTK_REAL *> & values)
      const;
    
    size_t
    get_npoints ()
      const CCTK_ATTRIBUTE_PURE
    {
      return recv_descr.npoints;
    }
  };
  
  
  
} // namespace CarpetInterp2

#endif  // #define FASTERP_HH