25 # if __has_include(<fj_tool/fapp.h>)
26 # include <fj_tool/fapp.h>
40 namespace Test_Mult_Wilson {
45 const std::string filename_input =
"test_Mult_Wilson.yaml";
51 #ifdef USE_TESTMANAGER_AUTOREGISTER
77 const string str_gconf_status = params_test.
get_string(
"gauge_config_status");
78 const string str_gconf_read = params_test.
get_string(
"gauge_config_type_input");
79 const string readfile = params_test.
get_string(
"config_filename_input");
80 const string str_rand_type = params_test.
get_string(
"random_number_type");
81 const unsigned long seed = params_test.
get_unsigned_long(
"seed_for_random_number");
82 const int Nmult = params_test.
get_int(
"number_of_mult");
83 const string str_vlevel = params_test.
get_string(
"verbose_level");
85 const bool do_check = params_test.
is_set(
"expected_result");
86 const double expected_result = do_check ? params_test.
get_double(
"expected_result") : 0.0;
87 const double tolerance = params_test.
get_double(
"tolerance");
89 const string str_gmset_type = params_fopr.
get_string(
"gamma_matrix_type");
94 vout.
general(vl,
" gconf_status = %s\n", str_gconf_status.c_str());
95 vout.
general(vl,
" gconf_read = %s\n", str_gconf_read.c_str());
96 vout.
general(vl,
" readfile = %s\n", readfile.c_str());
97 vout.
general(vl,
" rand_type = %s\n", str_rand_type.c_str());
100 vout.
general(vl,
" vlevel = %s\n", str_vlevel.c_str());
101 vout.
general(vl,
" gmset_type = %s\n", str_gmset_type.c_str());
119 if (str_gconf_status ==
"Continue") {
121 }
else if (str_gconf_status ==
"Cold_start") {
123 }
else if (str_gconf_status ==
"Hot_start") {
126 vout.
crucial(vl,
"Error at %s: unsupported gconf status \"%s\"\n",
test_name.c_str(), str_gconf_status.c_str());
158 for (
int i = 0; i < Nmult; ++i) {
173 const double gflops_mult = fopr->
flop_count() * Nmult / (elapse_sec * NPE * Nthread);
183 #if defined(USE_GROUP_SU2)
185 vout.
detailed(vl,
"check skipped: expected_result not set.\n\n");
188 return Test::verify(result, expected_result, tolerance);
191 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 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
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)
const std::string test_name
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)