#include <Gaussian.h>
Definition at line 144 of file Gaussian.h.
◆ create()
std::unique_ptr< DataChef > souschef::GaussianFloat16DataChefFactory::create |
( |
const Arguments & |
args | ) |
const |
|
virtual |
Implements souschef::DataChefFactory.
Definition at line 188 of file Gaussian.cpp.
189{
190 if (
args.count() != 2)
191 {
192 throw std::runtime_error{"invalid argument count: two arguments (mean/stddev) are expected"};
193 }
194
195 auto const mean = to_number<float>(
args.value(0));
196 auto const stddev = to_number<float>(
args.value(1));
197
198 return std::unique_ptr<DataChef>{new GaussianFloat16DataChef{mean, stddev}};
199}
The documentation for this struct was generated from the following files: