|
void | options (const tflite::Operator *op, std::ostream &os) const override |
|
Definition at line 167 of file OpPrinter.cpp.
◆ options()
void tfldump::ConcatenationPrinter::options |
( |
const tflite::Operator * |
op, |
|
|
std::ostream & |
os |
|
) |
| const |
|
inlineoverridevirtual |
Reimplemented from tfldump::OpPrinter.
Definition at line 170 of file OpPrinter.cpp.
171 {
172 if (auto *concatenation_params = op->builtin_options_as_ConcatenationOptions())
173 {
174 os << " ";
175 os << "Activation("
176 << EnumNameActivationFunctionType(concatenation_params->fused_activation_function())
177 << ") ";
178 os << "Axis(" << concatenation_params->axis() << ")";
179 os << std::endl;
180 }
181 }
The documentation for this class was generated from the following file: