26 # if __has_include(<fj_tool/fapp.h>)
27 # include <fj_tool/fapp.h>
41 namespace Test_Mult_eo {
50 int mult(
const std::string&);
55 return mult(
"test_Mult_Clover_eo.yaml");
61 return mult(
"test_Mult_Wilson_eo.yaml");
65 #ifdef USE_TESTMANAGER_AUTOREGISTER
67 #if defined(USE_GROUP_SU2)
84 int mult(
const std::string& filename_input)
100 const string str_gconf_status = params_test.
get_string(
"gauge_config_status");
101 const string str_gconf_read = params_test.
get_string(
"gauge_config_type_input");
102 const string readfile = params_test.
get_string(
"config_filename_input");
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 const int Nmult = params_test.
get_int(
"number_of_mult");
106 const string str_vlevel = params_test.
get_string(
"verbose_level");
108 const bool do_check = params_test.
is_set(
"expected_result");
109 const double expected_result = do_check ? params_test.
get_double(
"expected_result") : 0.0;
110 const double tolerance = params_test.
get_double(
"tolerance");
112 const string str_fopr_type = params_fopr.
get_string(
"fermion_type");
113 const string str_gmset_type = params_fopr.
get_string(
"gamma_matrix_type");
118 vout.
general(vl,
" gconf_status = %s\n", str_gconf_status.c_str());
119 vout.
general(vl,
" gconf_read = %s\n", str_gconf_read.c_str());
120 vout.
general(vl,
" readfile = %s\n", readfile.c_str());
121 vout.
general(vl,
" rand_type = %s\n", str_rand_type.c_str());
124 vout.
general(vl,
" vlevel = %s\n", str_vlevel.c_str());
125 vout.
general(vl,
" gmset_type = %s\n", str_gmset_type.c_str());
143 if (str_gconf_status ==
"Continue") {
145 }
else if (str_gconf_status ==
"Cold_start") {
147 }
else if (str_gconf_status ==
"Hot_start") {
150 vout.
crucial(vl,
"Error at %s: unsupported gconf status \"%s\"\n",
test_name.c_str(), str_gconf_status.c_str());
170 const int Nin = b.
nin();
172 const int Nex = b.
nex();
174 Field be(Nin, Nvol / 2, Nex);
175 Field ye(Nin, Nvol / 2, Nex);
188 for (
int i = 0; i < Nmult; ++i) {
202 const double gflops_mult = fopr->
flop_count() * Nmult / (elapse_sec * NPE * Nthread);
212 return Test::verify(result, expected_result, tolerance);
214 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)
int mult(const std::string &)
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.
Container of Field-type object.
int get_int(const string &key) const
Wilson-type fermion field.
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
const std::string test_name
virtual void set_parameters(const Parameters &)=0
static int get_num_threads_available()
returns number of threads (works outside of parallel region).
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
static VerboseLevel set_verbose_level(const std::string &str)