14 #include "hebench/modules/timer/include/timer.h"
17 #include "hebench/modules/general/include/hebench_math_utils.h"
20 #include "../include/hebench_simple_set_intersection_l.h"
23 namespace TestHarness {
31 bool BenchmarkDescriptor::m_b_registered =
35 const std::vector<hebench::APIBridge::WorkloadParam> &w_params)
const
37 assert(m_b_registered);
65 ss = std::stringstream();
68 std::uint64_t result_set_size = std::min(set_size.at(0), set_size.at(1));
69 std::uint64_t result_batch_size = 1;
73 result_batch_size *= batch_sizes[param_i];
76 ss <<
", , Z = Intersect(X, Y)" << std::endl
77 <<
", , , Items in set, Batch size, Elements per item" << std::endl;
79 ss <<
", , X, " << set_size.at(0) <<
", " << batch_sizes[0] <<
", " << set_size.at(2) << std::endl;
81 ss <<
", , Y, " << set_size.at(1) <<
", " << batch_sizes[1] <<
", " << set_size.at(2) << std::endl;
83 ss <<
", , Z, " << result_set_size <<
", " << result_batch_size <<
", " << set_size.at(2) << std::endl;
91 assert(m_b_registered);
96 retval =
new Benchmark(p_engine, description_token);
110 assert(m_b_registered);
119 Benchmark::Benchmark(std::shared_ptr<Engine> p_engine,
127 hebench::Common::EventTimer timer;
128 hebench::Common::TimingReportEvent::Ptr p_timing_event;
130 std::stringstream ss;
136 std::cout <<
IOS_MSG_INFO << hebench::Logging::GlobalLogger::log(
"Preparing workload.") << std::endl;
139 m_k_count = set_size.at(2);
146 std::cout <<
IOS_MSG_INFO << hebench::Logging::GlobalLogger::log(
"Generating data...") << std::endl;
148 batch_sizes[0], batch_sizes[1],
150 this->getBackendDescription().descriptor.data_type);
154 std::stringstream ss;
155 ss <<
"Loading data from external dataset: " << std::endl
157 std::cout <<
IOS_MSG_INFO << hebench::Logging::GlobalLogger::log(ss.str()) << std::endl;
160 batch_sizes[0], batch_sizes[1],
162 this->getBackendDescription().descriptor.data_type,
163 this->getBenchmarkConfiguration().dataset_filename);
165 p_timing_event = timer.stop<std::milli>();
167 ss = std::stringstream();
168 ss <<
"Total data loaded: " << m_data->getTotalDataLoaded() <<
" bytes";
169 std::cout <<
IOS_MSG_DONE << hebench::Logging::GlobalLogger::log(ss.str()) << std::endl;
170 ss = std::stringstream();
171 ss <<
"Elapsed wall time: " << p_timing_event->elapsedWallTime<std::milli>() <<
" ms";
172 std::cout <<
IOS_MSG_INFO << hebench::Logging::GlobalLogger::log(ss.str()) << std::endl;
173 ss = std::stringstream();
174 ss <<
"Elapsed CPU time: " << p_timing_event->elapsedCPUTime<std::milli>() <<
" ms";
175 std::cout <<
IOS_MSG_INFO << hebench::Logging::GlobalLogger::log(ss.str()) << std::endl;
179 const std::uint64_t *param_data_pack_indices,
180 const std::vector<hebench::APIBridge::NativeDataBuffer *> &outputs,
188 param_data_pack_indices,
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.
Token returned by a successful call to IBenchmarkDescriptor::matchBenchmarkDescriptor().
std::shared_ptr< IDataLoader > Ptr
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::Configuration & getBenchmarkConfiguration() const
Allows read-only access to this benchmark configuration.
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 std::array< std::uint64_t, BenchmarkDescriptorCategory::WorkloadParameterCount > fetchSetSize(const std::vector< hebench::APIBridge::WorkloadParam > &w_params)
static constexpr std::uint64_t OpResultCount
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 DataLoader::Ptr create(std::uint64_t set_size_x, std::uint64_t set_size_y, std::uint64_t batch_size_x, std::uint64_t batch_size_y, std::uint64_t element_size_k, hebench::APIBridge::DataType data_type)
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...
static constexpr std::uint64_t DefaultBatchSize
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.
void destroyBenchmark(hebench::TestHarness::PartialBenchmark *p_bench) override
Destroys an object returned by createBenchmark().
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...
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.
DataType
Defines data types for a workload.
Category category
Category for the benchmark.
Defines a benchmark test.
bool validateResult(IDataLoader::Ptr dataset, const std::uint64_t *param_data_pack_indices, const std::vector< hebench::APIBridge::NativeDataBuffer * > &p_outputs, std::uint64_t k_count, hebench::APIBridge::DataType data_type)