|
void | options (const tflite::Operator *op, std::ostream &os) const override |
|
Definition at line 418 of file OpPrinter.cpp.
◆ options()
void tfldump::LocalResponseNormalizationPrinter::options |
( |
const tflite::Operator * |
op, |
|
|
std::ostream & |
os |
|
) |
| const |
|
inlineoverridevirtual |
Reimplemented from tfldump::OpPrinter.
Definition at line 421 of file OpPrinter.cpp.
422 {
423 if (auto *params = op->builtin_options_as_LocalResponseNormalizationOptions())
424 {
425 os << " ";
426 os << "radius(" << params->radius() << ") ";
427 os << "bias(" << params->bias() << ") ";
428 os << "alpha(" << params->alpha() << ") ";
429 os << "beta(" << params->beta() << ") ";
430 os << std::endl;
431 }
432 }
The documentation for this class was generated from the following file: