|
void | options (const tflite::Operator *op, std::ostream &os) const override |
|
Definition at line 329 of file OpPrinter.cpp.
◆ options()
void tfldump::FullyConnectedPrinter::options |
( |
const tflite::Operator * |
op, |
|
|
std::ostream & |
os |
|
) |
| const |
|
inlineoverridevirtual |
Reimplemented from tfldump::OpPrinter.
Definition at line 332 of file OpPrinter.cpp.
333 {
334 if (auto *params = op->builtin_options_as_FullyConnectedOptions())
335 {
336 os << " ";
337 os << "WeightFormat(" << EnumNameFullyConnectedOptionsWeightsFormat(params->weights_format())
338 << ") ";
339 os << "Activation(" << EnumNameActivationFunctionType(params->fused_activation_function())
340 << ") ";
341
342 os << std::endl;
343 }
344 }
The documentation for this class was generated from the following file: