Bridge++  Ver. 2.0.2
test_HMC_Clover_Isochemical_Nf2.cpp
Go to the documentation of this file.
1 
14 #include "test.h"
15 
17 
18 #include "Fopr/fopr_Smeared.h"
19 
22 
23 #include "HMC/hmc_General.h"
24 #include "HMC/builder_Integrator.h"
25 
26 #include "IO/gaugeConfig.h"
27 
32 
33 #include "Tools/file_utils.h"
36 
37 //====================================================================
39 
54  const std::string test_name = "HMC.Clover_Isochemical.Nf2";
55 
56  //- test-private parameters
57  namespace {
58  const std::string filename_input = "test_HMC_Clover_Isochemical_Nf2.yaml";
59  }
60 
61  //- prototype declaration
62  int update_Nf2(void);
63 
64 #ifdef USE_TESTMANAGER_AUTOREGISTER
65  namespace {
66 #if defined(USE_GROUP_SU2)
67  // Nc=2 is not available.
68 #else
69  static const bool is_registered = TestManager::RegisterTest(
70  test_name,
72  );
73 #endif
74  }
75 #endif
76 
77  //====================================================================
78  int update_Nf2(void)
79  {
80  // ##### parameter setup #####
81  const int Nc = CommonParameters::Nc();
82  const int Nvol = CommonParameters::Nvol();
83  const int Ndim = CommonParameters::Ndim();
84 
85  const Parameters params_all = ParameterManager::read(filename_input);
86 
87  const Parameters params_test = params_all.lookup("Test_HMC_Clover_Isochemical");
88  const Parameters params_action_G = params_all.lookup("Action_G");
89  const Parameters params_fopr = params_all.lookup("Fopr");
90  const Parameters params_proj = params_all.lookup("Projection");
91  const Parameters params_smear = params_all.lookup("Smear");
92  const Parameters params_dr_smear = params_all.lookup("Director_Smear");
93  const Parameters params_solver_MD = params_all.lookup("Solver_MD");
94  const Parameters params_solver_H = params_all.lookup("Solver_H");
95  const Parameters params_integrator = params_all.lookup("Builder_Integrator");
96  const Parameters params_hmc = params_all.lookup("HMC_General");
97 
98  const string str_gconf_status = params_test.get_string("gauge_config_status");
99  const string str_gconf_read = params_test.get_string("gauge_config_type_input");
100  const string readfile = params_test.get_string("config_filename_input");
101  const string str_gconf_write = params_test.get_string("gauge_config_type_output");
102  const string writefile = params_test.get_string("config_filename_output");
103  const string str_rand_type = params_test.get_string("random_number_type");
104  const unsigned long seed = params_test.get_unsigned_long("seed_for_random_number");
105  int i_conf = params_test.get_int("trajectory_number");
106  const int Ntraj = params_test.get_int("trajectory_number_step");
107  const int i_save_conf = params_test.get_int("save_config_interval");
108  const int i_seed_noise = params_test.get_int("int_seed_for_noise");
109  const string str_vlevel = params_test.get_string("verbose_level");
110 
111  const bool do_check = params_test.is_set("expected_result");
112  const double expected_result = do_check ? params_test.get_double("expected_result") : 0.0;
113 
114  const string str_action_G_type = params_action_G.get_string("action_type");
115  const string str_fopr_type = params_fopr.get_string("fermion_type");
116  const string str_gmset_type = params_fopr.get_string("gamma_matrix_type");
117  const string str_proj_type = params_proj.get_string("projection_type");
118  const string str_smear_type = params_smear.get_string("smear_type");
119  // const int Nsmear = params_dr_smear.get_int("number_of_smearing");
120  const string str_solver_MD_type = params_solver_MD.get_string("solver_type");
121  const string str_solver_H_type = params_solver_H.get_string("solver_type");
122  const int Nlevels = params_integrator.get_int("number_of_levels");
123  const std::vector<int> level_action = params_integrator.get_int_vector("level_of_actions");
124 
125  const Bridge::VerboseLevel vl = vout.set_verbose_level(str_vlevel);
126 
127  //- print input parameters
128  vout.general(vl, " gconf_status = %s\n", str_gconf_status.c_str());
129  vout.general(vl, " gconf_read = %s\n", str_gconf_read.c_str());
130  vout.general(vl, " readfile = %s\n", readfile.c_str());
131  vout.general(vl, " gconf_write = %s\n", str_gconf_write.c_str());
132  vout.general(vl, " writefile = %s\n", writefile.c_str());
133  vout.general(vl, " rand_type = %s\n", str_rand_type.c_str());
134  vout.general(vl, " seed = %lu\n", seed);
135  vout.general(vl, " i_conf = %d\n", i_conf);
136  vout.general(vl, " Ntraj = %d\n", Ntraj);
137  vout.general(vl, " i_save_conf = %d\n", i_save_conf);
138  vout.general(vl, " i_seed_noise = %d\n", i_seed_noise);
139  vout.general(vl, " vlevel = %s\n", str_vlevel.c_str());
140  vout.general(vl, " gmset_type = %s\n", str_gmset_type.c_str());
141  vout.general(vl, " proj_type = %s\n", str_proj_type.c_str());
142  vout.general(vl, " smear_type = %s\n", str_smear_type.c_str());
143  vout.general(vl, " solver_MD_type = %s\n", str_solver_MD_type.c_str());
144  vout.general(vl, " solver_H_type = %s\n", str_solver_H_type.c_str());
145  vout.general(vl, "\n");
146 
147  //- input parameter check
148  int err = 0;
149  err += ParameterCheck::non_NULL(str_gconf_status);
150  err += ParameterCheck::non_negative(i_conf);
151  err += ParameterCheck::non_negative(Ntraj);
152  err += ParameterCheck::non_negative(i_save_conf);
153 
154  if (err) {
155  vout.crucial(vl, "Error at %s: input parameters have not been set\n", test_name.c_str());
156  exit(EXIT_FAILURE);
157  }
158 
159  // if ( (Nsmear > 0) && (str_proj_type == "Stout_SU3") ) {
160  if (str_proj_type == "Stout_SU3") {
161  if (CommonParameters::Nc() != 3) {
162  vout.crucial(vl, "check skipped: Nc = 3 is needed, but Nc = %d.\n\n", CommonParameters::Nc());
163  return EXIT_SKIP;
164  }
165  }
166 
167  RandomNumberManager::initialize(str_rand_type, seed);
168 
169 
170  // ##### object setup #####
171  Field_G U(Nvol, Ndim);
172 
173  if (str_gconf_status == "Continue") {
174  GaugeConfig(str_gconf_read).read(U, readfile);
175  } else if (str_gconf_status == "Cold_start") {
176  GaugeConfig("Unit").read(U);
177  } else if (str_gconf_status == "Hot_start") {
178  GaugeConfig("Random").read(U);
179  } else {
180  vout.crucial(vl, "Error at %s: unsupported gconf status \"%s\"\n", test_name.c_str(), str_gconf_status.c_str());
181  exit(EXIT_FAILURE);
182  }
183 
184  GaugeConfig gconf_write(str_gconf_write);
185 
186 
187  unique_ptr<Action> action_G(Action::New(str_action_G_type, params_action_G));
188 
189  //-- N_f=2 part
190  unique_ptr<Fopr> fopr(Fopr::New(str_fopr_type, params_fopr));
191 
192  // define fermion force (SA)
193  unique_ptr<Force> force_fopr(new Force_F_Clover_Nf2_Isochemical(params_fopr));
194 
195  // define smearing method (SA)
196  unique_ptr<Projection> proj(Projection::New(str_proj_type, params_proj));
197  unique_ptr<Smear> smear(Smear::New(str_smear_type, proj.get(), params_smear));
198 
199  // define force smearing method (SA)
200  unique_ptr<ForceSmear> force_smear(ForceSmear::New(str_smear_type, proj.get(), params_smear));
201 
202  unique_ptr<Director_Smear> dr_smear(new Director_Smear(smear.get(), params_dr_smear));
203 
204  unique_ptr<Fopr> fopr_smear(Fopr::New("Smeared", fopr.get(), dr_smear.get()));
205  // define smeared fermion operator (SA)
206  unique_ptr<Force> force_fopr_smear(new Force_F_Smeared(force_fopr.get(), force_smear.get(), dr_smear.get()));
207  // define smeared fermion force (SA)
208 
209 
210  unique_ptr<Solver> solver_MD(Solver::New(str_solver_MD_type, fopr_smear.get(), params_solver_MD));
211  unique_ptr<Fprop> fprop_MD(new Fprop_Standard_lex(solver_MD.get()));
212 
213  unique_ptr<Solver> solver_H(Solver::New(str_solver_H_type, fopr_smear.get(), params_solver_H));
214  unique_ptr<Fprop> fprop_H(new Fprop_Standard_lex(solver_H.get()));
215 
216  unique_ptr<Action> action_F(new Action_F_Standard_lex(fopr_smear.get(), force_fopr_smear.get(), fprop_MD.get(), fprop_H.get()));
217  // define fermion action (SA)
218 
219 
220  ActionList actions(Nlevels);
221  actions.append(level_action[0], action_F.get());
222  actions.append(level_action[1], action_G.get());
223 
224  std::vector<Director *> directors(1);
225  directors[0] = static_cast<Director *>(dr_smear.get()); // register director[0] (SA)
226 
227  unique_ptr<Builder_Integrator> builder(new Builder_Integrator(actions, directors, params_integrator));
228  Integrator *integrator = builder->build();
229 
230  //- Random number is initialized with a parameter specified by i_conf
231  unique_ptr<RandomNumbers> rand(new RandomNumbers_Mseries(i_conf));
232 
233  // define hmc_leapfrog (SA)
234  HMC_General hmc(actions, directors, integrator, rand.get(), params_hmc);
235 
236 
237  unique_ptr<PolyakovLoop> ploop(new PolyakovLoop);
238 
239  unique_ptr<RandomNumbers> rand_nv(new RandomNumbers_Mseries(i_seed_noise));
240  unique_ptr<NoiseVector> nv(new NoiseVector_Z2(rand_nv.get()));
241  unique_ptr<QuarkNumberSusceptibility_Wilson> quark_suscept(new QuarkNumberSusceptibility_Wilson(fopr_smear.get(), fprop_H.get(), nv.get(), params_test));
242 
243  Timer timer(test_name);
244 
245 
246  // #### Execution main part ####
247  timer.start();
248 
249  vout.general(vl, "HMC: Ntraj = %d\n", Ntraj);
250 
251  const dcomplex ploop0 = ploop->measure_ploop(U);
252  vout.general(vl, "Polyakov loop = %e %e\n", real(ploop0), imag(ploop0));
253 
254  double result = 0.0;
255  for (int traj = 0; traj < Ntraj; ++traj) {
256  vout.general(vl, "\n");
257  vout.general(vl, "traj = %d\n", traj);
258 
259  result = hmc.update(U); // hmc update (SA)
260 
261  if ((i_conf + traj + 1) % i_save_conf == 0) {
262  std::string filename = FileUtils::generate_filename("%s-%06d", writefile.c_str(), (i_conf + traj + 1));
263  gconf_write.write_file(U, filename);
264  }
265 
266  dcomplex ploop1 = ploop->measure_ploop(U);
267  vout.general(vl, "Polyakov loop = %e %e\n", real(ploop1), imag(ploop1));
268 
269  double result_quark_suscept1 = quark_suscept->measure();
270  }
271 
272  gconf_write.write_file(U, writefile);
273 
274  timer.report();
275 
277 
278 
279  if (do_check) {
280  return Test::verify(result, expected_result);
281  } else {
282  vout.detailed(vl, "check skipped: expected_result not set.\n\n");
283  return EXIT_SKIP;
284  }
285  }
286 } // namespace Test_HMC_Clover_Isochemical
Test::verify
int verify(const double result, const double expected, double eps)
Definition: test.cpp:27
Test_HMC_Clover_Isochemical
Test of HMC update for clover fermions with isochemical potential.
Definition: test_HMC_Clover_Isochemical_Nf2.cpp:53
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
Test_HMC_Clover_Isochemical::update_Nf2
int update_Nf2(void)
Definition: test_HMC_Clover_Isochemical_Nf2.cpp:78
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
polyakovLoop.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
QuarkNumberSusceptibility_Wilson
Quark number susceptibility for the Wilson-type fermion.
Definition: quarkNumberSusceptibility_Wilson.h:37
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
noiseVector_Z2.h
ParameterCheck::vl
Bridge::VerboseLevel vl
Definition: parameterCheck.cpp:18
RandomNumbers_Mseries
Random number generator base on M-series.
Definition: randomNumbers_Mseries.h:46
quarkNumberSusceptibility_Wilson.h
file_utils.h
test.h
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
NoiseVector_Z2
Z2 Noise vector for a trace calculation.
Definition: noiseVector_Z2.h:28
Director_Smear
Manager of smeared configurations.
Definition: director_Smear.h:39
PolyakovLoop
Polyakov loop measurement.
Definition: polyakovLoop.h:41
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
Director
Manager of commonly used data object in HMC.
Definition: director.h:37
Test_HMC_Clover_Isochemical::test_name
const std::string test_name
Definition: test_HMC_Clover_Isochemical_Nf2.cpp:54
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
force_F_Clover_Nf2_Isochemical.h
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_Clover_Nf2_Isochemical
Force calculation for clover quark action.
Definition: force_F_Clover_Nf2_Isochemical.h:36
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