Bridge++  Ver. 2.0.2
test_HMC_Domainwall_Nf2.cpp
Go to the documentation of this file.
1 
14 #include "test.h"
15 
17 
18 #include "Fopr/fopr_Domainwall.h"
19 #include "Fopr/fopr_Smeared.h"
20 
23 
24 #include "HMC/hmc_General.h"
25 #include "HMC/builder_Integrator.h"
26 
27 #include "IO/gaugeConfig.h"
28 
30 
31 #include "Tools/file_utils.h"
34 
35 //====================================================================
37 
51  const std::string test_name = "HMC.Domainwall.Nf2";
52 
53  //- test-private parameters
54  namespace {
55  const std::string filename_input = "test_HMC_Domainwall_Nf2.yaml";
56  }
57 
58  //- prototype declaration
59  int update_Nf2(void);
60 
61 #ifdef USE_TESTMANAGER_AUTOREGISTER
62  namespace {
63 #if defined(USE_GROUP_SU2)
64  // Nc=2 is not available.
65 #else
66  static const bool is_registered = TestManager::RegisterTest(
67  test_name,
69  );
70 #endif
71  }
72 #endif
73 
74  //====================================================================
75  int update_Nf2(void)
76  {
77  // ##### parameter setup #####
78  const int Nc = CommonParameters::Nc();
79  const int Nvol = CommonParameters::Nvol();
80  const int Ndim = CommonParameters::Ndim();
81 
82  const Parameters params_all = ParameterManager::read(filename_input);
83 
84  const Parameters params_test = params_all.lookup("Test_HMC_Domainwall");
85  const Parameters params_action_G = params_all.lookup("Action_G");
86  const Parameters params_dw = params_all.lookup("Fopr_Domainwall");
87  const Parameters params_proj = params_all.lookup("Projection");
88  const Parameters params_smear = params_all.lookup("Smear");
89  const Parameters params_dr_smear = params_all.lookup("Director_Smear");
90  const Parameters params_solver_MD = params_all.lookup("Solver_MD");
91  const Parameters params_solver_H = params_all.lookup("Solver_H");
92  const Parameters params_integrator = params_all.lookup("Builder_Integrator");
93  const Parameters params_hmc = params_all.lookup("HMC_General");
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_gmset_type = params_dw.get_string("gamma_matrix_type");
112  const string str_proj_type = params_proj.get_string("projection_type");
113  const string str_smear_type = params_smear.get_string("smear_type");
114  // const int Nsmear = params_dr_smear.get_int("number_of_smearing");
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  const int Nlevels = params_integrator.get_int("number_of_levels");
118  const std::vector<int> level_action = params_integrator.get_int_vector("level_of_actions");
119 
120  const Bridge::VerboseLevel vl = vout.set_verbose_level(str_vlevel);
121 
122  //- print input parameters
123  vout.general(vl, " gconf_status = %s\n", str_gconf_status.c_str());
124  vout.general(vl, " gconf_read = %s\n", str_gconf_read.c_str());
125  vout.general(vl, " readfile = %s\n", readfile.c_str());
126  vout.general(vl, " gconf_write = %s\n", str_gconf_write.c_str());
127  vout.general(vl, " writefile = %s\n", writefile.c_str());
128  vout.general(vl, " rand_type = %s\n", str_rand_type.c_str());
129  vout.general(vl, " seed = %lu\n", seed);
130  vout.general(vl, " i_conf = %d\n", i_conf);
131  vout.general(vl, " Ntraj = %d\n", Ntraj);
132  vout.general(vl, " i_save_conf = %d\n", i_save_conf);
133  vout.general(vl, " vlevel = %s\n", str_vlevel.c_str());
134  vout.general(vl, " gmset_type = %s\n", str_gmset_type.c_str());
135  vout.general(vl, " proj_type = %s\n", str_proj_type.c_str());
136  vout.general(vl, " smear_type = %s\n", str_smear_type.c_str());
137  vout.general(vl, " solver_MD_type = %s\n", str_solver_MD_type.c_str());
138  vout.general(vl, " solver_H_type = %s\n", str_solver_H_type.c_str());
139  vout.general(vl, "\n");
140 
141  //- input parameter check
142  int err = 0;
143  err += ParameterCheck::non_NULL(str_gconf_status);
144  err += ParameterCheck::non_negative(i_conf);
145  err += ParameterCheck::non_negative(Ntraj);
146  err += ParameterCheck::non_negative(i_save_conf);
147 
148  if (err) {
149  vout.crucial(vl, "Error at %s: input parameters have not been set\n", test_name.c_str());
150  exit(EXIT_FAILURE);
151  }
152 
153  // if ( (Nsmear > 0) && (str_proj_type == "Stout_SU3") ) {
154  if (str_proj_type == "Stout_SU3") {
155  if (CommonParameters::Nc() != 3) {
156  vout.crucial(vl, "check skipped: Nc = 3 is needed, but Nc = %d.\n\n", CommonParameters::Nc());
157  return EXIT_SKIP;
158  }
159  }
160 
161 
162  RandomNumberManager::initialize(str_rand_type, seed);
163 
164 
165  // ##### object setup #####
166  Field_G U(Nvol, Ndim);
167 
168  if (str_gconf_status == "Continue") {
169  GaugeConfig(str_gconf_read).read(U, readfile);
170  } else if (str_gconf_status == "Cold_start") {
171  GaugeConfig("Unit").read(U);
172  } else if (str_gconf_status == "Hot_start") {
173  GaugeConfig("Random").read(U);
174  } else {
175  vout.crucial(vl, "Error at %s: unsupported gconf status \"%s\"\n", test_name.c_str(), str_gconf_status.c_str());
176  exit(EXIT_FAILURE);
177  }
178 
179  GaugeConfig gconf_write(str_gconf_write);
180 
181 
182  unique_ptr<Action> action_G(Action::New(str_action_G_type, params_action_G));
183 
184  unique_ptr<Projection> proj(Projection::New(str_proj_type, params_proj));
185  unique_ptr<Smear> smear(Smear::New(str_smear_type, proj.get(), params_smear));
186 
187  unique_ptr<ForceSmear> force_smear(ForceSmear::New(str_smear_type, proj.get(), params_smear));
188 
189  unique_ptr<Director_Smear> dr_smear(new Director_Smear(smear.get(), params_dr_smear));
190 
191  unique_ptr<Fopr> fopr_dw(Fopr::New("Domainwall", params_dw));
192 
193  unique_ptr<Force> force_fopr_dw(new Force_F_Domainwall(params_dw));
194 
195  unique_ptr<Fopr> fopr_smear(Fopr::New("Smeared", fopr_dw.get(), dr_smear.get()));
196  unique_ptr<Force> force_fopr_smear(new Force_F_Smeared(force_fopr_dw.get(), force_smear.get(), dr_smear.get()));
197 
198 
199  unique_ptr<Solver> solver_MD(Solver::New(str_solver_MD_type, fopr_smear.get(), params_solver_MD));
200  unique_ptr<Fprop> fprop_MD(new Fprop_Standard_lex(solver_MD.get()));
201 
202  unique_ptr<Solver> solver_H(Solver::New(str_solver_H_type, fopr_smear.get(), params_solver_H));
203  unique_ptr<Fprop> fprop_H(new Fprop_Standard_lex(solver_H.get()));
204 
205  unique_ptr<Action> action_F(new Action_F_Standard_lex(fopr_smear.get(), force_fopr_smear.get(), fprop_MD.get(), fprop_H.get()));
206 
207 
208  ActionList actions(Nlevels);
209  actions.append(level_action[0], action_F.get());
210  actions.append(level_action[1], action_G.get());
211 
212  std::vector<Director *> directors(1);
213  directors[0] = static_cast<Director *>(dr_smear.get());
214 
215  unique_ptr<Builder_Integrator> builder(new Builder_Integrator(actions, directors, params_integrator));
216  Integrator *integrator = builder->build();
217 
218  unique_ptr<RandomNumbers> rand(new RandomNumbers_Mseries(i_conf));
219 
220  HMC_General hmc(actions, directors, integrator, rand.get(), params_hmc);
221 
222  Timer timer(test_name);
223 
224 
225  // #### Execution main part ####
226  timer.start();
227 
228  vout.general(vl, "HMC: Ntraj = %d\n", Ntraj);
229 
230  double result = 0.0;
231  for (int traj = 0; traj < Ntraj; ++traj) {
232  vout.general(vl, "\n");
233  vout.general(vl, "traj = %d\n", traj);
234 
235  result = hmc.update(U);
236 
237  if ((i_conf + traj + 1) % i_save_conf == 0) {
238  std::string filename = FileUtils::generate_filename("%s-%06d", writefile.c_str(), (i_conf + traj + 1));
239  gconf_write.write_file(U, filename);
240  }
241  }
242 
243  gconf_write.write_file(U, writefile);
244 
245  timer.report();
246 
248 
249 
250  if (do_check) {
251  return Test::verify(result, expected_result);
252  } else {
253  vout.detailed(vl, "check skipped: expected_result not set.\n\n");
254  return EXIT_SKIP;
255  }
256  }
257 } // namespace Test_HMC_Domainwall
Test::verify
int verify(const double result, const double expected, double eps)
Definition: test.cpp:27
Test_HMC_Domainwall
Test of HMC update for domain-wall fermion operator.
Definition: test_HMC_Domainwall_Nf2.cpp:50
randomNumbers_Mseries.h
ParameterCheck::non_NULL
int non_NULL(const std::string v)
Definition: parameterCheck.cpp:65
Fprop_Standard_lex
Get quark propagator for Fopr with lexical site index.
Definition: fprop_Standard_lex.h:33
HMC_General::update
double update(Field_G &)
Definition: hmc_General.cpp:196
CommonParameters::Ndim
static int Ndim()
Definition: commonParameters.h:117
Parameters
Class for parameters.
Definition: parameters.h:46
Parameters::get_int
int get_int(const string &key) const
Definition: parameters.cpp:192
Bridge::BridgeIO::detailed
void detailed(const char *format,...)
Definition: bridgeIO.cpp:219
GaugeConfig::read
void read(Field_G &U, const string &filename=string())
Definition: gaugeConfig.cpp:121
GaugeConfig::write_file
void write_file(Field_G &U, const string &filename)
Definition: gaugeConfig.h:103
fprop_Standard_lex.h
gaugeConfig.h
CommonParameters::Nvol
static int Nvol()
Definition: commonParameters.h:109
Force_F_Smeared
Force calculation for smeared fermion operators.
Definition: force_F_Smeared.h:39
action_F_Standard_lex.h
fopr_Domainwall.h
ParameterCheck::non_negative
int non_negative(const int v)
Definition: parameterCheck.cpp:21
force_F_Smeared.h
Parameters::get_int_vector
vector< int > get_int_vector(const string &key) const
Definition: parameters.cpp:267
Timer
Definition: timer.h:31
RandomNumberManager::finalize
static void finalize()
Definition: randomNumberManager.cpp:80
builder_Integrator.h
ActionList
lists of actions at respective integrator levels.
Definition: action_list.h:40
RandomNumberManager::initialize
static bool initialize(const std::string &rng_type, unsigned long seed)
Definition: randomNumberManager.cpp:57
Builder_Integrator
Builder of MD integrator for HMC.
Definition: builder_Integrator.h:39
Timer::start
void start()
Definition: timer.cpp:44
CommonParameters::Nc
static int Nc()
Definition: commonParameters.h:115
hmc_General.h
ParameterCheck::vl
Bridge::VerboseLevel vl
Definition: parameterCheck.cpp:18
RandomNumbers_Mseries
Random number generator base on M-series.
Definition: randomNumbers_Mseries.h:46
file_utils.h
test.h
Test_HMC_Domainwall::test_name
const std::string test_name
Definition: test_HMC_Domainwall_Nf2.cpp:51
ParameterManager::read
static void read(const std::string &params_file, Parameters &params)
Definition: parameterManager.cpp:33
Parameters::get_double
double get_double(const string &key) const
Definition: parameters.cpp:175
Director_Smear
Manager of smeared configurations.
Definition: director_Smear.h:39
Test_HMC_Domainwall::update_Nf2
int update_Nf2(void)
Definition: test_HMC_Domainwall_Nf2.cpp:75
Parameters::get_unsigned_long
unsigned long get_unsigned_long(const string &key) const
Definition: parameters.cpp:209
HMC_General
General HMC update class.
Definition: hmc_General.h:45
EXIT_SKIP
#define EXIT_SKIP
Definition: test.h:17
ActionList::append
bool append(const int level, Action *action)
Definition: action_list.cpp:27
FileUtils::generate_filename
std::string generate_filename(const char *fmt,...)
Definition: file_utils.cpp:17
randomNumberManager.h
GaugeConfig
GaugeConfig class for file I/O of gauge configuration.
Definition: gaugeConfig.h:80
Bridge::BridgeIO::set_verbose_level
static VerboseLevel set_verbose_level(const std::string &str)
Definition: bridgeIO.cpp:133
Parameters::is_set
bool is_set(const string &key) const
Definition: parameters.cpp:525
Force_F_Domainwall
Force calculation for domain-wall fermions.
Definition: force_F_Domainwall.h:36
Director
Manager of commonly used data object in HMC.
Definition: director.h:37
fopr_Smeared.h
Parameters::get_string
string get_string(const string &key) const
Definition: parameters.cpp:221
Bridge::BridgeIO::crucial
void crucial(const char *format,...)
Definition: bridgeIO.cpp:180
Bridge::VerboseLevel
VerboseLevel
Definition: bridgeIO.h:42
Field_G
SU(N) gauge field.
Definition: field_G.h:38
Integrator
Base class of Integrator class family.
Definition: integrator.h:29
Bridge::BridgeIO::general
void general(const char *format,...)
Definition: bridgeIO.cpp:200
force_F_Domainwall.h
Action_F_Standard_lex
Standard fermion action for HMC.
Definition: action_F_Standard_lex.h:37
Parameters::lookup
Parameters lookup(const string &key) const
Definition: parameters.h:79
Timer::report
void report(const Bridge::VerboseLevel vl=Bridge::GENERAL)
Definition: timer.cpp:128
Bridge::vout
BridgeIO vout
Definition: bridgeIO.cpp:512
TestManager::RegisterTest
static bool RegisterTest(const std::string &key, const Test_function func)
Definition: testManager.h:69