14 #include "hebench/modules/timer/include/timer.h"
17 #include "hebench/modules/general/include/hebench_math_utils.h"
20 #include "../include/hebench_eltwisemult_l.h"
23 namespace TestHarness {
24 namespace EltwiseMult {
31 bool BenchmarkDescriptor::m_b_registered =
35 const std::vector<hebench::APIBridge::WorkloadParam> &w_params)
const
37 assert(m_b_registered);
67 ss = std::stringstream();
69 std::uint64_t result_batch_size = 1;
73 result_batch_size *= batch_sizes[param_i];
76 ss <<
", , C[i] = V0[i] * V1[i]" << std::endl
77 <<
", , , Elements, Batch size" << std::endl;
80 ss <<
", , V" << i <<
", " << vector_size <<
", " << batch_sizes[i] << std::endl;
82 ss <<
", , C, " << vector_size <<
", " << result_batch_size << std::endl;
90 assert(m_b_registered);
95 retval =
new Benchmark(p_engine, description_token);
109 assert(m_b_registered);
118 Benchmark::Benchmark(std::shared_ptr<Engine> p_engine,
126 hebench::Common::EventTimer timer;
127 hebench::Common::TimingReportEvent::Ptr p_timing_event;
128 std::uint64_t vector_size;
130 std::stringstream ss;
136 std::cout <<
IOS_MSG_INFO << hebench::Logging::GlobalLogger::log(
"Preparing workload.") << std::endl;
142 std::cout <<
IOS_MSG_INFO << hebench::Logging::GlobalLogger::log(
"Generating data...") << std::endl;
144 batch_sizes[0], batch_sizes[1],
149 std::stringstream ss;
150 ss <<
"Loading data from external dataset: " << std::endl
152 std::cout <<
IOS_MSG_INFO << hebench::Logging::GlobalLogger::log(ss.str()) << std::endl;
155 batch_sizes[0], batch_sizes[1],
157 this->getBenchmarkConfiguration().dataset_filename);
159 p_timing_event = timer.stop<std::milli>();
161 ss = std::stringstream();
162 ss <<
"Total data loaded: " << m_data->getTotalDataLoaded() <<
" bytes";
163 std::cout <<
IOS_MSG_DONE << hebench::Logging::GlobalLogger::log(ss.str()) << std::endl;
164 ss = std::stringstream();
165 ss <<
"Elapsed wall time: " << p_timing_event->elapsedWallTime<std::milli>() <<
" ms";
166 std::cout <<
IOS_MSG_INFO << hebench::Logging::GlobalLogger::log(ss.str()) << std::endl;
167 ss = std::stringstream();
168 ss <<
"Elapsed CPU time: " << p_timing_event->elapsedCPUTime<std::milli>() <<
" ms";
169 std::cout <<
IOS_MSG_INFO << hebench::Logging::GlobalLogger::log(ss.str()) << std::endl;
173 const std::uint64_t *param_data_pack_indices,
174 const std::vector<hebench::APIBridge::NativeDataBuffer *> &outputs,
Specifies a benchmark configuration.
std::vector< hebench::APIBridge::WorkloadParam > w_params
Set of arguments for workload parameters.
std::string dataset_filename
File containing data for the benchmark. If empty string, benchmarks that can auto generate the datase...
static bool registerSupportedBenchmark(std::shared_ptr< IBenchmarkDescriptor > p_desc_obj)
Registers a benchmark description object that represents one of the supported workloads.
Base class for workload benchmarks in the latency category.
bool matchBenchmarkDescriptor(const hebench::APIBridge::BenchmarkDescriptor &bench_desc, const std::vector< hebench::APIBridge::WorkloadParam > &w_params) const override
Determines if the represented benchmark can perform the workload described by a specified HEBench ben...
static constexpr std::uint64_t OpParameterCount
static std::uint64_t fetchVectorSize(const std::vector< hebench::APIBridge::WorkloadParam > &w_params)
static constexpr std::uint64_t OpResultCount
void completeWorkloadDescription(WorkloadDescriptionOutput &output, const Engine &engine, const BenchmarkDescription::Backend &backend_desc, const BenchmarkDescription::Configuration &config) const override
Completes the description for the matched benchmark.
static DataLoader::Ptr create(std::uint64_t vector_size, std::uint64_t batch_size_a, std::uint64_t batch_size_b, hebench::APIBridge::DataType data_type)
bool matchBenchmarkDescriptor(const hebench::APIBridge::BenchmarkDescriptor &bench_desc, const std::vector< hebench::APIBridge::WorkloadParam > &w_params) const override
Determines if the represented benchmark can perform the workload described by a specified HEBench ben...
void destroyBenchmark(hebench::TestHarness::PartialBenchmark *p_bench) override
Destroys an object returned by createBenchmark().
static constexpr std::uint64_t DefaultBatchSize
hebench::TestHarness::PartialBenchmark * createBenchmark(std::shared_ptr< Engine > p_engine, const DescriptionToken &description_token) override
Creates the represented IBenchmark object that can perform the workload specified by the HEBench benc...
void completeWorkloadDescription(WorkloadDescriptionOutput &output, const Engine &engine, const BenchmarkDescription::Backend &backend_desc, const BenchmarkDescription::Configuration &config) const override
Completes the description for the matched benchmark.
bool validateResult(IDataLoader::Ptr dataset, const std::uint64_t *param_data_pack_indices, const std::vector< hebench::APIBridge::NativeDataBuffer * > &p_outputs, hebench::APIBridge::DataType data_type) const override
Validates the result of an operation against the ground truth.
void init() override
Initializes the partial benchmark members.
Token returned by a successful call to IBenchmarkDescriptor::matchBenchmarkDescriptor().
std::shared_ptr< IDataLoader > Ptr
virtual bool validateResult(IDataLoader::Ptr dataset, const std::uint64_t *param_data_pack_indices, const std::vector< hebench::APIBridge::NativeDataBuffer * > &outputs, hebench::APIBridge::DataType data_type) const
Validates the result of an operation against the ground truth.
std::string workload_header
Workload specific information to be added to the report header.
std::size_t operation_params_count
Number of parameters for the represented workload operation.
Bundles values that need to be filled by a workload during completeWorkloadDescription().
Base class for benchmarks.
const BenchmarkDescription::Backend & getBackendDescription() const
Allows read-only access to this benchmark backend description.
const BenchmarkDescription::Configuration & getBenchmarkConfiguration() const
Allows read-only access to this benchmark configuration.
DataType
Defines data types for a workload.
Category category
Category for the benchmark.
Defines a benchmark test.