#include <ArgMin.h>
Definition at line 22 of file ArgMin.h.
◆ ArgMinChef()
ArgMinChef::ArgMinChef |
( |
const tflchef::Operation * |
operation | ) |
|
|
inlineexplicit |
Definition at line 25 of file ArgMin.h.
25 : _operation{operation}
26 {
27
28 }
◆ code()
tflite::BuiltinOperator ArgMinChef::code |
( |
void |
| ) |
const |
|
inlineoverridevirtual |
Implements OpChef.
Definition at line 31 of file ArgMin.h.
31{ return tflite::BuiltinOperator_ARG_MIN; }
◆ type()
tflite::BuiltinOptions ArgMinChef::type |
( |
void |
| ) |
const |
|
inlineoverridevirtual |
Implements OpChef.
Definition at line 33 of file ArgMin.h.
33{ return tflite::BuiltinOptions_ArgMinOptions; }
◆ value()
Implements OpChef.
Definition at line 22 of file ArgMin.cpp.
23{
24 auto &operation = (*_operation);
25
26 assert(operation.has_argmin_options());
27
29
30 tflite::ArgMinOptionsBuilder argmin_options_builder{fbb};
31 argmin_options_builder.add_output_type(tflite_output_type);
32
33 return argmin_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: