|
void | options (const circle::Operator *op, std::ostream &os) const override |
|
Definition at line 794 of file OpPrinter.cpp.
◆ options()
void circledump::GRUPrinter::options |
( |
const circle::Operator * |
op, |
|
|
std::ostream & |
os |
|
) |
| const |
|
inlineoverridevirtual |
Reimplemented from circledump::OpPrinter.
Definition at line 797 of file OpPrinter.cpp.
798 {
799 if (auto *params = op->builtin_options_as_GRUOptions())
800 {
801 os << " ";
802 os << "Activation(" << EnumNameActivationFunctionType(params->fused_activation_function())
803 << ") ";
804 os << "return_sequences(" << params->return_sequences() << ") ";
805 os << "time_major(" << params->time_major() << ") ";
806
807 os << std::endl;
808 }
809 }
The documentation for this class was generated from the following file: