#include <Shape.h>
Definition at line 22 of file Shape.h.
◆ ShapeChef()
ShapeChef::ShapeChef |
( |
const tflchef::Operation * |
operation | ) |
|
|
inlineexplicit |
Definition at line 25 of file Shape.h.
25 : _operation{operation}
26 {
27
28 }
◆ code()
tflite::BuiltinOperator ShapeChef::code |
( |
void |
| ) |
const |
|
inlineoverridevirtual |
Implements OpChef.
Definition at line 31 of file Shape.h.
31{ return tflite::BuiltinOperator_SHAPE; }
◆ type()
tflite::BuiltinOptions ShapeChef::type |
( |
void |
| ) |
const |
|
inlineoverridevirtual |
Implements OpChef.
Definition at line 33 of file Shape.h.
33{ return tflite::BuiltinOptions_ShapeOptions; }
◆ value()
Implements OpChef.
Definition at line 22 of file Shape.cpp.
23{
24 auto &operation = (*_operation);
25
26 assert(operation.has_shape_options());
27
29
30 tflite::ShapeOptionsBuilder shape_options_builder{fbb};
31 shape_options_builder.add_out_type(tflite_out_type);
32
33 return shape_options_builder.
Finish().Union();
34}
void Finish(Offset< T > root, const char *file_identifier=nullptr)
Finish serializing a buffer by writing the root offset.
tflite::TensorType as_tflite_tensortype(const tflchef::TensorType &value)
References as_tflite_tensortype(), and flatbuffers::FlatBufferBuilder::Finish().
The documentation for this class was generated from the following files: