26 # if __has_include(<fj_tool/fapp.h>)
27 # include <fj_tool/fapp.h>
51 int mult(
const std::string&);
56 return mult(
"test_Mult_Clover.yaml");
62 return mult(
"test_Mult_CloverGeneral.yaml");
68 return mult(
"test_Mult_Clover_Isochemical.yaml");
94 return mult(
"test_Mult_WilsonGeneral.yaml");
100 return mult(
"test_Mult_Wilson_Isochemical.yaml");
111 #ifdef USE_TESTMANAGER_AUTOREGISTER
113 #if defined(USE_GROUP_SU2)
122 "Mult.CloverGeneral",
127 "Mult.Clover_Isochemical",
149 "Mult.WilsonGeneral",
154 "Mult.Wilson_Isochemical",
168 int mult(
const std::string& filename_input)
184 const string str_gconf_status = params_test.
get_string(
"gauge_config_status");
185 const string str_gconf_read = params_test.
get_string(
"gauge_config_type_input");
186 const string readfile = params_test.
get_string(
"config_filename_input");
187 const string str_rand_type = params_test.
get_string(
"random_number_type");
188 const unsigned long seed = params_test.
get_unsigned_long(
"seed_for_random_number");
189 const int Nmult = params_test.
get_int(
"number_of_mult");
190 const string str_vlevel = params_test.
get_string(
"verbose_level");
192 const bool do_check = params_test.
is_set(
"expected_result");
193 const double expected_result = do_check ? params_test.
get_double(
"expected_result") : 0.0;
194 const double tolerance = params_test.
get_double(
"tolerance");
196 const string str_fopr_type = params_fopr.
get_string(
"fermion_type");
197 const string str_gmset_type = params_fopr.
get_string(
"gamma_matrix_type");
202 vout.
general(vl,
" gconf_status = %s\n", str_gconf_status.c_str());
203 vout.
general(vl,
" gconf_read = %s\n", str_gconf_read.c_str());
204 vout.
general(vl,
" readfile = %s\n", readfile.c_str());
205 vout.
general(vl,
" rand_type = %s\n", str_rand_type.c_str());
208 vout.
general(vl,
" vlevel = %s\n", str_vlevel.c_str());
209 vout.
general(vl,
" gmset_type = %s\n", str_gmset_type.c_str());
227 if (str_gconf_status ==
"Continue") {
229 }
else if (str_gconf_status ==
"Cold_start") {
231 }
else if (str_gconf_status ==
"Hot_start") {
234 vout.
crucial(vl,
"Error at %s: unsupported gconf status \"%s\"\n",
test_name.c_str(), str_gconf_status.c_str());
267 for (
int i = 0; i < Nmult; ++i) {
282 const double gflops_mult = fopr->
flop_count() * Nmult / (elapse_sec * NPE * Nthread);
292 return Test::verify(result, expected_result, tolerance);
294 vout.
detailed(vl,
"check skipped: expected_result not set.\n\n");
void detailed(const char *format,...)
void set(const int jin, const int site, const int jex, double v)
double elapsed_sec() const
void general(const char *format,...)
virtual void set_mode(const std::string mode)
setting the mode of multiplication if necessary. Default implementation here is just to avoid irrelev...
virtual void set_config(Field *)=0
setting pointer to the gauge configuration.
int mult_Wilson_Isochemical()
int get_int(const string &key) const
Wilson-type fermion field.
const std::string test_name
Parameters lookup(const string &key) const
static bool RegisterTest(const std::string &key, const Test_function func)
static bool initialize(const std::string &rng_type, unsigned long seed)
void read(Field_G *U, const string &filename=string())
unsigned long get_unsigned_long(const string &key) const
double get_double(const string &key) const
virtual double flop_count()
returns the flop in giga unit
virtual void set_parameters(const Parameters &)=0
static int get_num_threads_available()
returns number of threads (works outside of parallel region).
int mult_Clover_Isochemical()
int non_NULL(const std::string v)
bool is_set(const string &key) const
void crucial(const char *format,...)
static void read(const std::string ¶ms_file, Parameters ¶ms)
int verify(const double result, const double expected, double eps)
virtual void mult(Field &, const Field &)=0
multiplies fermion operator to a given field (2nd argument)
GaugeConfig class for file I/O of gauge configuration.
string get_string(const string &key) const
int mult(const std::string &)
static VerboseLevel set_verbose_level(const std::string &str)