|
void | options (const tflite::Operator *op, std::ostream &os) const override |
|
Definition at line 653 of file OpPrinter.cpp.
◆ options()
void tfldump::WhilePrinter::options |
( |
const tflite::Operator * |
op, |
|
|
std::ostream & |
os |
|
) |
| const |
|
inlineoverridevirtual |
Reimplemented from tfldump::OpPrinter.
Definition at line 656 of file OpPrinter.cpp.
657 {
658 if (auto *params = op->builtin_options_as_WhileOptions())
659 {
660 os << " ";
661 os << "cond_subgraph_index(" << params->cond_subgraph_index() << ") ";
662 os << "body_subgraph_index(" << params->body_subgraph_index() << ") ";
663 os << std::endl;
664 }
665 }
The documentation for this class was generated from the following file: