#include <Mean.h>
Definition at line 22 of file Mean.h.
◆ MeanChef()
MeanChef::MeanChef |
( |
const tflchef::Operation * |
operation | ) |
|
|
inlineexplicit |
Definition at line 25 of file Mean.h.
25 : _operation{operation}
26 {
27
28 }
◆ code()
tflite::BuiltinOperator MeanChef::code |
( |
void |
| ) |
const |
|
inlineoverridevirtual |
Implements OpChef.
Definition at line 31 of file Mean.h.
31{ return tflite::BuiltinOperator_MEAN; }
◆ type()
tflite::BuiltinOptions MeanChef::type |
( |
void |
| ) |
const |
|
inlineoverridevirtual |
Implements OpChef.
Definition at line 33 of file Mean.h.
33{ return tflite::BuiltinOptions_ReducerOptions; }
◆ value()
Implements OpChef.
Definition at line 22 of file Mean.cpp.
23{
24 auto &operation = (*_operation);
25
26 assert(operation.has_mean_options());
27
28 auto keep_dims = operation.mean_options().keep_dims();
29
30 tflite::ReducerOptionsBuilder mean_options_builder{fbb};
31 mean_options_builder.add_keep_dims(keep_dims);
32
33 return mean_options_builder.
Finish().Union();
34}
void Finish(Offset< T > root, const char *file_identifier=nullptr)
Finish serializing a buffer by writing the root offset.
References flatbuffers::FlatBufferBuilder::Finish().
The documentation for this class was generated from the following files:
- compiler/tflchef/core/src/Op/Mean.h
- compiler/tflchef/core/src/Op/Mean.cpp