|
void | options (const tflite::Operator *op, std::ostream &os) const override |
|
Definition at line 668 of file OpPrinter.cpp.
◆ options()
void tfldump::UnidirectionalSequenceLSTMPrinter::options |
( |
const tflite::Operator * |
op, |
|
|
std::ostream & |
os |
|
) |
| const |
|
inlineoverridevirtual |
Reimplemented from tfldump::OpPrinter.
Definition at line 671 of file OpPrinter.cpp.
672 {
673 if (auto *params = op->builtin_options_as_UnidirectionalSequenceLSTMOptions())
674 {
675 os << " ";
676 os << "Activation(" << EnumNameActivationFunctionType(params->fused_activation_function())
677 << ") ";
678 os << "cell_clip(" << params->cell_clip() << ") ";
679 os << "proj_clip(" << params->proj_clip() << ") ";
680 os << "time_major(" << params->time_major() << ") ";
681 os << "asymmetric_quantize_inputs(" << params->asymmetric_quantize_inputs() << ") ";
682 os << std::endl;
683 }
684 }
The documentation for this class was generated from the following file: