|
std::uint64_t | rows_M0 () const |
| Number of rows in matrix M0. More...
|
|
std::uint64_t & | rows_M0 () |
| Number of rows in matrix M0. More...
|
|
std::uint64_t | cols_M0 () const |
| Number of columns in matrix M0 and rows in matrix M1. More...
|
|
std::uint64_t & | cols_M0 () |
| Number of columns in matrix M0 and rows in matrix M1. More...
|
|
std::uint64_t | cols_M1 () const |
| Number of columns in matrix M1. More...
|
|
std::uint64_t & | cols_M1 () |
| Number of columns in matrix M1. More...
|
|
| MatrixMultiply (std::uint64_t _rows_M0=0, std::uint64_t _cols_M0=0, std::uint64_t _cols_M1=0) |
| Initializes a new object to represent workload parameters for matrix multiplication workload. More...
|
|
| MatrixMultiply (const std::vector< hebench::APIBridge::WorkloadParam > &w_params) |
| Initializes workload parameters for matrix multiplication from a list of existing workload parameters. More...
|
|
| MatrixMultiply (const hebench::APIBridge::WorkloadParams &w_params) |
| Initializes workload parameters for matrix multiplication from a list of existing workload parameters. More...
|
|
| Common (std::size_t num_params=0) |
|
| Common (const std::vector< hebench::APIBridge::WorkloadParam > &w_params) |
|
| Common (const hebench::APIBridge::WorkloadParams &w_params) |
|
virtual | ~Common ()=default |
|
template<typename T > |
void | add (const T &value, const std::string &name=std::string()) |
| Adds a new workload parameter to the list. More...
|
|
template<typename T > |
void | set (std::size_t index, const T &value, const std::string &name) |
| Sets a new value for an existing workload parameter. More...
|
|
template<typename T > |
void | set (std::size_t index, const T &value) |
| Sets a new value for an existing workload parameter. More...
|
|
template<typename T > |
const T & | get (std::size_t index) const |
| Retrieves the value for an existing workload parameter. More...
|
|
const char * | getName (std::size_t index) const |
|
const std::vector< hebench::APIBridge::WorkloadParam > & | getParams () const |
|
template<> |
void | add (const double &value, const std::string &name) |
|
template<> |
void | set (std::size_t index, const double &value, const std::string &name) |
|
template<> |
void | set (std::size_t index, const double &value) |
|
template<> |
const double & | get (std::size_t index) const |
|
Definition at line 211 of file workload_params.hpp.
Initializes workload parameters for matrix multiplication from a list of existing workload parameters.
- Parameters
-
[in] | w_params | Workload parameters from which to initialize. These will be copied to internal representation. |
- Exceptions
-
std::out_of_range | if w_params does not have, at least, 3 parameters. |
std::logic_error | if the type of any of the required parameters is incorrect. |
Matrix multiplication workload requires, at least, 3 parameters as specified by its definition. If any of the parameters is missing or in the wrong format, a std::exception or derived type is thrown.
Definition at line 275 of file workload_params.hpp.
Initializes workload parameters for matrix multiplication from a list of existing workload parameters.
- Parameters
-
[in] | w_params | Workload parameters from which to initialize. These will be copied to internal representation. |
- Exceptions
-
std::out_of_range | if w_params does not have, at least, 3 parameters. |
std::logic_error | if the type of any of the required parameters is incorrect. |
Matrix multiplication workload requires, at least, 3 parameters as specified by its definition. If any of the parameters is missing or in the wrong format, a std::exception or derived type is thrown.
Definition at line 292 of file workload_params.hpp.