Bridge++  Version 1.4.4
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
test_HMC_Wilson_Leapfrog_Nf2.cpp
Go to the documentation of this file.
1 
14 #include "Tests/test.h"
15 
17 
18 #include "Fopr/fopr_Smeared.h"
19 
22 
23 #include "HMC/hmc_Leapfrog.h"
24 
25 #include "IO/gaugeConfig.h"
26 
28 
29 #include "Smear/projection.h"
30 
31 #include "Tools/file_utils.h"
34 
35 //====================================================================
37 
51 namespace Test_HMC_Wilson {
52  const std::string test_name = "HMC.Wilson.Leapfrog_Nf2";
53 
54  //- test-private parameters
55  namespace {
56  const std::string filename_input = "test_HMC_Wilson_Leapfrog_Nf2.yaml";
57  }
58 
59  //- prototype declaration
60  int leapfrog_Nf2(void);
61 
62 #ifdef USE_TESTMANAGER_AUTOREGISTER
63  namespace {
64 #if defined(USE_GROUP_SU2)
65  // Nc=2 is not available.
66 #else
67  static const bool is_registered = TestManager::RegisterTest(
68  test_name,
70  );
71 #endif
72  }
73 #endif
74 
75  //====================================================================
76  int leapfrog_Nf2(void)
77  {
78  // ##### parameter setup #####
79  int Nc = CommonParameters::Nc();
80  int Nvol = CommonParameters::Nvol();
81  int Ndim = CommonParameters::Ndim();
82 
83  Parameters params_all = ParameterManager::read(filename_input);
84 
85  Parameters params_test = params_all.lookup("Test_HMC_Wilson");
86  Parameters params_action_G = params_all.lookup("Action_G");
87  Parameters params_fopr = params_all.lookup("Fopr");
88  Parameters params_proj = params_all.lookup("Projection");
89  Parameters params_smear = params_all.lookup("Smear");
90  Parameters params_dr_smear = params_all.lookup("Director_Smear");
91  Parameters params_solver_MD = params_all.lookup("Solver_MD");
92  Parameters params_solver_H = params_all.lookup("Solver_H");
93  Parameters params_hmc = params_all.lookup("HMC_Leapfrog");
94 
95  const string str_gconf_status = params_test.get_string("gauge_config_status");
96  const string str_gconf_read = params_test.get_string("gauge_config_type_input");
97  const string readfile = params_test.get_string("config_filename_input");
98  const string str_gconf_write = params_test.get_string("gauge_config_type_output");
99  const string writefile = params_test.get_string("config_filename_output");
100  const string str_rand_type = params_test.get_string("random_number_type");
101  const unsigned long seed = params_test.get_unsigned_long("seed_for_random_number");
102  int i_conf = params_test.get_int("trajectory_number");
103  const int Ntraj = params_test.get_int("trajectory_number_step");
104  const int i_save_conf = params_test.get_int("save_config_interval");
105  const string str_vlevel = params_test.get_string("verbose_level");
106 
107  const bool do_check = params_test.is_set("expected_result");
108  const double expected_result = do_check ? params_test.get_double("expected_result") : 0.0;
109 
110  const string str_action_G_type = params_action_G.get_string("action_type");
111  const string str_fopr_type = params_fopr.get_string("fermion_type");
112  const string str_gmset_type = params_fopr.get_string("gamma_matrix_type");
113  const string str_proj_type = params_proj.get_string("projection_type");
114  const string str_smear_type = params_smear.get_string("smear_type");
115  const string str_solver_MD_type = params_solver_MD.get_string("solver_type");
116  const string str_solver_H_type = params_solver_H.get_string("solver_type");
117 
119 
120  //- print input parameters
121  vout.general(vl, " gconf_status = %s\n", str_gconf_status.c_str());
122  vout.general(vl, " gconf_read = %s\n", str_gconf_read.c_str());
123  vout.general(vl, " readfile = %s\n", readfile.c_str());
124  vout.general(vl, " gconf_write = %s\n", str_gconf_write.c_str());
125  vout.general(vl, " writefile = %s\n", writefile.c_str());
126  vout.general(vl, " rand_type = %s\n", str_rand_type.c_str());
127  vout.general(vl, " seed = %lu\n", seed);
128  vout.general(vl, " i_conf = %d\n", i_conf);
129  vout.general(vl, " Ntraj = %d\n", Ntraj);
130  vout.general(vl, " i_save_conf = %d\n", i_save_conf);
131  vout.general(vl, " vlevel = %s\n", str_vlevel.c_str());
132  vout.general(vl, " gmset_type = %s\n", str_gmset_type.c_str());
133  vout.general(vl, " proj_type = %s\n", str_proj_type.c_str());
134  vout.general(vl, " smear_type = %s\n", str_smear_type.c_str());
135  vout.general(vl, " solver_MD_type = %s\n", str_solver_MD_type.c_str());
136  vout.general(vl, " solver_H_type = %s\n", str_solver_H_type.c_str());
137  vout.general(vl, "\n");
138 
139  //- input parameter check
140  int err = 0;
141  err += ParameterCheck::non_NULL(str_gconf_status);
142  err += ParameterCheck::non_negative(i_conf);
143  err += ParameterCheck::non_negative(Ntraj);
144  err += ParameterCheck::non_negative(i_save_conf);
145 
146  if (err) {
147  vout.crucial(vl, "Error at %s: input parameters have not been set\n", test_name.c_str());
148  exit(EXIT_FAILURE);
149  }
150 
151 
152  RandomNumberManager::initialize(str_rand_type, seed);
153 
154 
155  // ##### object setup #####
156  unique_ptr<Field_G> U(new Field_G(Nvol, Ndim));
157 
158  if (str_gconf_status == "Continue") {
159  GaugeConfig(str_gconf_read).read(U, readfile);
160  } else if (str_gconf_status == "Cold_start") {
161  GaugeConfig("Unit").read(U);
162  } else if (str_gconf_status == "Hot_start") {
163  GaugeConfig("Random").read(U);
164  } else {
165  vout.crucial(vl, "Error at %s: unsupported gconf status \"%s\"\n", test_name.c_str(), str_gconf_status.c_str());
166  exit(EXIT_FAILURE);
167  }
168 
169  unique_ptr<GaugeConfig> gconf_write(new GaugeConfig(str_gconf_write));
170 
171 
172  unique_ptr<Action> action_G(Action::New(str_action_G_type));
173  action_G->set_parameters(params_action_G);
174 
175  //-- N_f=2 part
176  unique_ptr<Fopr> fopr(Fopr::New(str_fopr_type, str_gmset_type));
177  fopr->set_parameters(params_fopr);
178 
179  unique_ptr<Force> force_fopr(new Force_F_Wilson_Nf2(str_gmset_type));
180  // define fermion force (SA)
181  force_fopr->set_parameters(params_fopr);
182 
183  // define smearing method (SA)
184  unique_ptr<Projection> proj(Projection::New(str_proj_type));
185  proj->set_parameters(params_proj);
186 
187  unique_ptr<Smear> smear(Smear::New(str_smear_type, proj));
188  smear->set_parameters(params_smear);
189 
190  // define force smearing method (SA)
191  unique_ptr<ForceSmear> force_smear(ForceSmear::New(str_smear_type, proj));
192  force_smear->set_parameters(params_smear);
193 
194  unique_ptr<Director> dr_smear(new Director_Smear(smear));
195  dr_smear->set_parameters(params_dr_smear);
196 
197  unique_ptr<Fopr> fopr_smear(Fopr::New("Smeared", fopr, dr_smear));
198  // define smeared fermion operator (SA)
199  unique_ptr<Force> force_fopr_smear(
200  new Force_F_Smeared(force_fopr, force_smear, dr_smear));
201  // define smeared fermion force (SA)
202 
203  unique_ptr<Solver> solver_MD(Solver::New(str_solver_MD_type, fopr_smear));
204  solver_MD->set_parameters(params_solver_MD);
205  unique_ptr<Fprop> fprop_MD(new Fprop_Standard_lex(solver_MD));
206 
207  unique_ptr<Solver> solver_H(Solver::New(str_solver_H_type, fopr_smear));
208  solver_H->set_parameters(params_solver_H);
209  unique_ptr<Fprop> fprop_H(new Fprop_Standard_lex(solver_H));
210 
211  unique_ptr<Action> action_F(
212  new Action_F_Standard_lex(fopr_smear, force_fopr_smear,
213  fprop_MD, fprop_H));
214  // define fermion action (SA)
215 
216 
217  ActionList actions(1); // one level
218  actions.append(0, action_F); // register actions at level0
219  actions.append(0, action_G);
220 
221  std::vector<Director *> directors(1);
222  directors[0] = (Director *)dr_smear.get(); // register director[0] (SA)
223 
224  //- Random number is initialized with a parameter specified by i_conf
226 
227  HMC_Leapfrog hmc(actions, directors, rand); // define hmc_leapfrog (SA)
228  hmc.set_parameters(params_hmc);
229 
230  unique_ptr<Timer> timer(new Timer(test_name));
231 
232 
233  // #### Execution main part ####
234  timer->start();
235 
236  vout.general(vl, "HMC: Ntraj = %d\n", Ntraj); // a number of trajectory (SA)
237 
238  double result = 0.0;
239  for (int traj = 0; traj < Ntraj; ++traj) {
240  vout.general(vl, "\n");
241  vout.general(vl, "traj = %d\n", traj);
242 
243  result = hmc.update(*U); // hmc update (SA)
244 
245  if ((i_conf + traj + 1) % i_save_conf == 0) {
246  std::string filename = FileUtils::generate_filename("%s-%06d", writefile.c_str(), (i_conf + traj + 1));
247  gconf_write->write_file(U, filename);
248  }
249  }
250 
251  gconf_write->write_file(U, writefile);
252 
253  timer->report();
254 
256 
257 
258  if (do_check) {
259  return Test::verify(result, expected_result);
260  } else {
261  vout.detailed(vl, "check skipped: expected_result not set.\n\n");
262  return EXIT_SKIP;
263  }
264  }
265 } // namespace Test_HMC_Wilson
#define EXIT_SKIP
Definition: test.h:17
Random number generator base on M-series.
BridgeIO vout
Definition: bridgeIO.cpp:495
void detailed(const char *format,...)
Definition: bridgeIO.cpp:212
void set_parameters(const Parameters &params)
virtual void set_parameters(const Parameters &param)=0
void general(const char *format,...)
Definition: bridgeIO.cpp:195
virtual void set_parameters(const Parameters &)=0
int get_int(const string &key) const
Definition: parameters.cpp:87
Class for parameters.
Definition: parameters.h:46
bool append(const int level, Action *action)
Definition: action_list.cpp:27
virtual void set_parameters(const Parameters &param)=0
virtual void set_parameters(const Parameters &params)=0
Parameters lookup(const string &key) const
Definition: parameters.h:78
static bool RegisterTest(const std::string &key, const Test_function func)
Definition: testManager.h:69
static bool initialize(const std::string &rng_type, unsigned long seed)
SU(N) gauge field.
Definition: field_G.h:38
Manager of commonly used data object in HMC.
Definition: director.h:37
void read(Field_G *U, const string &filename=string())
unsigned long get_unsigned_long(const string &key) const
Definition: parameters.cpp:104
double get_double(const string &key) const
Definition: parameters.cpp:70
std::string generate_filename(const char *fmt,...)
Definition: file_utils.cpp:17
double update(Field_G &)
pointer get() const
virtual void set_parameters(const Parameters &)=0
HMC with single level leapfrog intetgrator.
Definition: hmc_Leapfrog.h:44
int non_NULL(const std::string v)
Definition: checker.cpp:61
bool is_set(const string &key) const
Definition: parameters.cpp:396
void start()
Definition: timer.cpp:44
Get quark propagator for Fopr with lexical site index.
void crucial(const char *format,...)
Definition: bridgeIO.cpp:178
virtual void set_parameters(const Parameters &params)=0
static void read(const std::string &params_file, Parameters &params)
Force for the standard Wilson fermion operator.
lists of actions at respective integrator levels.
Definition: action_list.h:40
Manager of smeared configurations.
int verify(const double result, const double expected, double eps)
Definition: test.cpp:27
Bridge::VerboseLevel vl
Definition: checker.cpp:18
VerboseLevel
Definition: bridgeIO.h:42
void write_file(Field_G *U, const string &filename)
Definition: gaugeConfig.h:107
Force calculation for smeared fermion operators.
int non_negative(const int v)
Definition: checker.cpp:21
virtual void set_parameters(const Parameters &)=0
GaugeConfig class for file I/O of gauge configuration.
Definition: gaugeConfig.h:75
Definition: timer.h:31
string get_string(const string &key) const
Definition: parameters.cpp:116
void report(const Bridge::VerboseLevel vl=Bridge::GENERAL)
Definition: timer.cpp:128
virtual void set_parameters(const Parameters &)=0
Standard fermion action for HMC.
static VerboseLevel set_verbose_level(const std::string &str)
Definition: bridgeIO.cpp:131