Bridge++  Ver. 1.2.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
fopr_Wilson_impl.h
Go to the documentation of this file.
1 
14 #ifndef FOPR_WILSON_IMPL_INCLUDED
15 #define FOPR_WILSON_IMPL_INCLUDED
16 
17 #include "fopr_Wilson.h"
18 
19 #include "gammaMatrixSet.h"
20 #include "shiftField_lex.h"
21 
22 #include "channel.h"
23 
24 #include "mat_SU_N.h"
25 #include "vec_SU_N.h"
26 
27 #include "bridgeIO.h"
28 using Bridge::vout;
29 
31 
47 {
48  public:
49  static const std::string class_name;
50 
51  private:
52 
53  // lattice parameters
54  int m_Nc, m_Nd, m_Nvc, m_Ndf;
55  int m_Nx, m_Ny, m_Nz, m_Nt;
56  int m_Nvol, m_Ndim;
57 
58  // physical parameters
59  double m_kappa;
60  std::valarray<int> m_boundary;
61  std::valarray<double> m_boundary2;
62 
63  const Field_G *m_U;
64  std::valarray<GammaMatrix> m_GM;
65 
67 
68  std::string m_mode;
69  std::string m_repr;
70 
71  Field m_w1, m_w2;
72 
74  double *vcp1_xp, *vcp2_xp, *vcp1_xm, *vcp2_xm;
75  double *vcp1_yp, *vcp2_yp, *vcp1_ym, *vcp2_ym;
76  double *vcp1_zp, *vcp2_zp, *vcp1_zm, *vcp2_zm;
77  double *vcp1_tp, *vcp2_tp, *vcp1_tm, *vcp2_tm;
78 
79  // use async data transfer
80  std::valarray<int> m_npe;
81  std::valarray<Channel *> m_fw_send;
82  std::valarray<Channel *> m_fw_recv;
83  std::valarray<Channel *> m_bw_send;
84  std::valarray<Channel *> m_bw_recv;
85 
86  public:
87 
89 
90  void init(std::string repr);
91 
92  void tidyup();
93 
94  void set_parameters(const double kappa, const std::valarray<int> bc);
95 
96  void set_config(Field *U)
97  { m_U = (Field_G *)U; }
98 
99  void set_mode(std::string mode);
100 
101  std::string get_mode() const;
102 
103  inline void mult(Field& v, const Field& f)
104  { (this->*m_mult)(v, f); }
105 
106  inline void mult_dag(Field& v, const Field& f)
107  { (this->*m_mult_dag)(v, f); }
108 
109  inline void mult_gm5(Field& v, const Field& f)
110  { (this->*m_gm5)(v, f); }
111 
112  inline void D(Field& v, const Field& f)
113  { (this->*m_D)(v, f); }
114 
115  inline void Ddag(Field& w, const Field& f)
116  {
117  mult_gm5(w, f);
118  D(m_w1, w);
119  mult_gm5(w, m_w1);
120  }
121 
122  inline void DdagD(Field& w, const Field& f)
123  {
124  D(m_w1, f);
125  mult_gm5(w, m_w1);
126  D(m_w1, w);
127  mult_gm5(w, m_w1);
128  }
129 
130  inline void DDdag(Field& w, const Field& f)
131  {
132  mult_gm5(m_w1, f);
133  D(w, m_w1);
134  mult_gm5(m_w1, w);
135  D(w, m_w1);
136  }
137 
138  inline void H(Field& w, const Field& f)
139  {
140  D(m_w1, f);
141  mult_gm5(w, m_w1);
142  }
143 
144  inline void mult_undef(Field&, const Field& f)
145  {
146  vout.crucial(m_vl, "Fopr_Wilson: mode undefined.\n");
147  abort();
148  }
149 
150  inline void D_ex(Field& v, const int ex1,
151  const Field& f, const int ex2)
152  { (this->*m_D_ex)(v, ex1, f, ex2); }
153 
154  const Field_F mult_gm5p(int mu, const Field_F& w)
155  {
156  mult_gm5p(mu, m_w1, w);
157  return (Field_F)m_w1;
158  }
159 
160  void mult_gm5p(int mu, Field&, const Field&);
161 
162  void proj_chiral(Field& w, const int ex1,
163  const Field& v, const int ex2, const int ipm);
164 
165  void mult_up(int mu, Field&, const Field&);
166  void mult_dn(int mu, Field&, const Field&);
167 
168  double flop_count();
169 
170  void fprop_normalize(Field& v);
171 
172  void fopr_normalize(Field& v);
173 
174  const double get_fprop_normfactor() { return 2.0 * m_kappa; }
175 
176  const double get_fopr_normfactor() { return 1.0 / (2.0 * m_kappa); }
177 
178  private:
179 
180  // prohibit copy
183 
184  void (Fopr_Wilson::Fopr_Wilson_impl::*m_mult)(Field &, const Field &);
186  void (Fopr_Wilson::Fopr_Wilson_impl::*m_D)(Field &, const Field &);
187  void (Fopr_Wilson::Fopr_Wilson_impl::*m_gm5)(Field &, const Field &);
188  void (Fopr_Wilson::Fopr_Wilson_impl::*m_mult_tp)(Field &, const Field &);
189  void (Fopr_Wilson::Fopr_Wilson_impl::*m_mult_tm)(Field &, const Field &);
190  void (Fopr_Wilson::Fopr_Wilson_impl::*m_D_ex)(Field &, const int,
191  const Field &, const int);
192 
193  void D_chiral(Field&, const Field&);
194  void D_dirac(Field&, const Field&);
195  void gm5_chiral(Field&, const Field&);
196  void gm5_dirac(Field&, const Field&);
197 
198  void D_ex_chiral(Field&, const int ex1, const Field&, const int ex2);
199  void D_ex_dirac(Field&, const int ex1, const Field&, const int ex2);
200 
201  void mult_p(int mu, Field_F&, const Field_F&);
202  void mult_m(int mu, Field_F&, const Field_F&);
203 
204  void mult_xp(Field&, const Field&);
205  void mult_xm(Field&, const Field&);
206  void mult_yp(Field&, const Field&);
207  void mult_ym(Field&, const Field&);
208  void mult_zp(Field&, const Field&);
209  void mult_zm(Field&, const Field&);
210 
211  void mult_tp_dirac(Field&, const Field&);
212  void mult_tm_dirac(Field&, const Field&);
213  void mult_tp_chiral(Field&, const Field&);
214  void mult_tm_chiral(Field&, const Field&);
215 
216  void daypx(Field&, double, const Field&);
217  void clear(Field&);
218 
219  // member data for threading
220  int m_Mz, m_Mt;
221  int m_Nthread, m_Ntask;
222  int m_Ntask_z, m_Ntask_t;
223 
224  struct mult_arg
225  {
226  int isite;
228  int kz0, kz1, kt0, kt1;
229  };
230  valarray<mult_arg> m_arg;
231 
232  // member functions for threading
233  void setup_thread();
234  void mult_xp1_thread(int, double *, double *);
235  void mult_xp2_thread(int, double *, double *);
236  void mult_xpb_thread(int, double *, double *);
237  void mult_xm1_thread(int, double *, double *);
238  void mult_xm2_thread(int, double *, double *);
239  void mult_xmb_thread(int, double *, double *);
240  void mult_yp1_thread(int, double *, double *);
241  void mult_yp2_thread(int, double *, double *);
242  void mult_ypb_thread(int, double *, double *);
243  void mult_ym1_thread(int, double *, double *);
244  void mult_ym2_thread(int, double *, double *);
245  void mult_ymb_thread(int, double *, double *);
246  void mult_zp1_thread(int, double *, double *);
247  void mult_zp2_thread(int, double *, double *);
248  void mult_zpb_thread(int, double *, double *);
249  void mult_zm1_thread(int, double *, double *);
250  void mult_zm2_thread(int, double *, double *);
251  void mult_zmb_thread(int, double *, double *);
252  void mult_tp1_dirac_thread(int, double *, double *);
253  void mult_tp2_dirac_thread(int, double *, double *);
254  void mult_tpb_dirac_thread(int, double *, double *);
255  void mult_tm1_dirac_thread(int, double *, double *);
256  void mult_tm2_dirac_thread(int, double *, double *);
257  void mult_tmb_dirac_thread(int, double *, double *);
258  void mult_tp1_chiral_thread(int, double *, double *);
259  void mult_tp2_chiral_thread(int, double *, double *);
260  void mult_tpb_chiral_thread(int, double *, double *);
261  void mult_tm1_chiral_thread(int, double *, double *);
262  void mult_tm2_chiral_thread(int, double *, double *);
263  void mult_tmb_chiral_thread(int, double *, double *);
264  void daypx_thread(int, double *, double, double *);
265  void clear_thread(int, double *);
266  void gm5_dirac_thread(int, double *, double *);
267  void gm5_chiral_thread(int, double *, double *);
268 };
269 #endif
void daypx(Field &, double, const Field &)
void mult_tpb_dirac_thread(int, double *, double *)
void mult_zp(Field &, const Field &)
void mult_tm1_chiral_thread(int, double *, double *)
BridgeIO vout
Definition: bridgeIO.cpp:207
void gm5_chiral(Field &, const Field &)
void set_parameters(const double kappa, const std::valarray< int > bc)
void proj_chiral(Field &w, const int ex1, const Field &v, const int ex2, const int ipm)
void mult_dag(Field &v, const Field &f)
double * vcp1_xp
arrays for data transfer.
void mult_m(int mu, Field_F &, const Field_F &)
void mult_tm_dirac(Field &, const Field &)
void mult_xp1_thread(int, double *, double *)
void daypx_thread(int, double *, double, double *)
Container of Field-type object.
Definition: field.h:37
void D_ex(Field &v, const int ex1, const Field &f, const int ex2)
void(Fopr_Wilson::Fopr_Wilson_impl::* m_D_ex)(Field &, const int, const Field &, const int)
void mult_xm2_thread(int, double *, double *)
void mult_zm2_thread(int, double *, double *)
void D(Field &v, const Field &f)
void mult_xp2_thread(int, double *, double *)
void(Fopr_Wilson::Fopr_Wilson_impl::* m_mult_dag)(Field &, const Field &)
std::valarray< Channel * > m_fw_recv
std::valarray< int > m_npe
void mult_tp_chiral(Field &, const Field &)
void mult_ymb_thread(int, double *, double *)
std::valarray< Channel * > m_bw_send
void H(Field &w, const Field &f)
void mult_tm2_chiral_thread(int, double *, double *)
void gm5_dirac_thread(int, double *, double *)
std::valarray< double > m_boundary2
b.c. for each node.
void mult_zmb_thread(int, double *, double *)
void D_chiral(Field &, const Field &)
void mult_tm2_dirac_thread(int, double *, double *)
std::valarray< Channel * > m_bw_recv
void mult_zp1_thread(int, double *, double *)
void mult_xm(Field &, const Field &)
Wilson-type fermion field.
Definition: field_F.h:37
void mult_ym1_thread(int, double *, double *)
void DdagD(Field &w, const Field &f)
const Field_G * m_U
gauge configuration.
Field m_w2
temporary fields.
void mult_yp2_thread(int, double *, double *)
SU(N) gauge field.
Definition: field_G.h:36
Fopr_Wilson_impl & operator=(const Fopr_Wilson::Fopr_Wilson_impl &)
void mult_zp2_thread(int, double *, double *)
void(Fopr_Wilson::Fopr_Wilson_impl::* m_mult)(Field &, const Field &)
void mult_tm1_dirac_thread(int, double *, double *)
void DDdag(Field &w, const Field &f)
Fopr_Wilson_impl(const Fopr_Wilson::Fopr_Wilson_impl &)
void mult_tp1_chiral_thread(int, double *, double *)
void mult_xmb_thread(int, double *, double *)
std::valarray< GammaMatrix > m_GM
gamma matrices.
void mult_ym(Field &, const Field &)
void(Fopr_Wilson::Fopr_Wilson_impl::* m_D)(Field &, const Field &)
void mult_xm1_thread(int, double *, double *)
double m_kappa
hopping parameter.
void(Fopr_Wilson::Fopr_Wilson_impl::* m_gm5)(Field &, const Field &)
void mult_p(int mu, Field_F &, const Field_F &)
void D_ex_chiral(Field &, const int ex1, const Field &, const int ex2)
void D_ex_dirac(Field &, const int ex1, const Field &, const int ex2)
static const std::string class_name
void mult_tp1_dirac_thread(int, double *, double *)
const Field_F mult_gm5p(int mu, const Field_F &w)
void mult_zm1_thread(int, double *, double *)
void mult_xpb_thread(int, double *, double *)
void mult_tmb_dirac_thread(int, double *, double *)
void crucial(const char *format,...)
Definition: bridgeIO.cpp:26
void mult_tp2_chiral_thread(int, double *, double *)
void set_mode(std::string mode)
void mult_ypb_thread(int, double *, double *)
VerboseLevel
Definition: bridgeIO.h:25
void(Fopr_Wilson::Fopr_Wilson_impl::* m_mult_tm)(Field &, const Field &)
void mult_tp2_dirac_thread(int, double *, double *)
void gm5_chiral_thread(int, double *, double *)
Wilson fermion operator.
void mult_tp_dirac(Field &, const Field &)
std::valarray< int > m_boundary
boundary condition.
void mult_up(int mu, Field &, const Field &)
void mult(Field &v, const Field &f)
void mult_zpb_thread(int, double *, double *)
void mult_ym2_thread(int, double *, double *)
void D_dirac(Field &, const Field &)
void mult_gm5(Field &v, const Field &f)
void mult_zm(Field &, const Field &)
void mult_undef(Field &, const Field &f)
void mult_tpb_chiral_thread(int, double *, double *)
void mult_yp1_thread(int, double *, double *)
void mult_tmb_chiral_thread(int, double *, double *)
void mult_yp(Field &, const Field &)
void mult_xp(Field &, const Field &)
void mult_dn(int mu, Field &, const Field &)
void Ddag(Field &w, const Field &f)
std::valarray< Channel * > m_fw_send
void init(std::string repr)
void(Fopr_Wilson::Fopr_Wilson_impl::* m_mult_tp)(Field &, const Field &)
void mult_tm_chiral(Field &, const Field &)
void gm5_dirac(Field &, const Field &)