|
void | options (const tflite::Operator *op, std::ostream &os) const override |
|
Definition at line 77 of file OpPrinter.cpp.
◆ options()
void tfldump::BidirectionalSequenceLSTMPrinter::options |
( |
const tflite::Operator * |
op, |
|
|
std::ostream & |
os |
|
) |
| const |
|
inlineoverridevirtual |
Reimplemented from tfldump::OpPrinter.
Definition at line 80 of file OpPrinter.cpp.
81 {
82 if (auto *params = op->builtin_options_as_BidirectionalSequenceLSTMOptions())
83 {
84 os << " ";
85 os << "Activation(" << EnumNameActivationFunctionType(params->fused_activation_function())
86 << ") ";
87 os << "cell_clip(" << params->cell_clip() << ") ";
88 os << "proj_clip(" << params->proj_clip() << ") ";
89 os << "time_major(" << params->time_major() << ") ";
90 os << "asymmetric_quantize_inputs(" << params->asymmetric_quantize_inputs() << ") ";
91 os << "merge_outputs(" << params->merge_outputs() << ") ";
92 os << std::endl;
93 }
94 }
The documentation for this class was generated from the following file: