|
void | options (const circle::Operator *op, std::ostream &os) const override |
|
Definition at line 78 of file OpPrinter.cpp.
◆ options()
void circledump::BatchMatMulPrinter::options |
( |
const circle::Operator * |
op, |
|
|
std::ostream & |
os |
|
) |
| const |
|
inlineoverridevirtual |
Reimplemented from circledump::OpPrinter.
Definition at line 81 of file OpPrinter.cpp.
82 {
83 if (auto *params = op->builtin_options_as_BatchMatMulOptions())
84 {
85 os << " ";
86 os << std::boolalpha;
87 os << "adjoint_lhs(" << params->adjoint_lhs() << ") ";
88 os << "adjoint_rhs(" << params->adjoint_rhs() << ") ";
89 os << std::noboolalpha;
90 os << std::endl;
91 }
92 }
The documentation for this class was generated from the following file: