ONE - On-device Neural Engine
Loading...
Searching...
No Matches
circledump::BatchMatMulPrinter Class Reference
Collaboration diagram for circledump::BatchMatMulPrinter:

Public Member Functions

void options (const circle::Operator *op, std::ostream &os) const override
 

Detailed Description

Definition at line 78 of file OpPrinter.cpp.

Member Function Documentation

◆ 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: