|
void | options (const circle::Operator *op, std::ostream &os) const override |
|
Definition at line 640 of file OpPrinter.cpp.
◆ options()
void circledump::SVDFPrinter::options |
( |
const circle::Operator * |
op, |
|
|
std::ostream & |
os |
|
) |
| const |
|
inlineoverridevirtual |
Reimplemented from circledump::OpPrinter.
Definition at line 643 of file OpPrinter.cpp.
644 {
645 if (auto *params = op->builtin_options_as_SVDFOptions())
646 {
647 os << " ";
648 os << "rank(" << params->rank() << ") ";
649 os << "activation(" << EnumNameActivationFunctionType(params->fused_activation_function())
650 << ") ";
651 os << "asymmetric_quantize_inputs(" << params->asymmetric_quantize_inputs() << ") ";
652 os << std::endl;
653 }
654 }
The documentation for this class was generated from the following file: