#include <ArgMax.h>
Definition at line 22 of file ArgMax.h.
◆ ArgMaxChef()
ArgMaxChef::ArgMaxChef |
( |
const tflchef::Operation * |
operation | ) |
|
|
inlineexplicit |
Definition at line 25 of file ArgMax.h.
25 : _operation{operation}
26 {
27
28 }
◆ code()
tflite::BuiltinOperator ArgMaxChef::code |
( |
void |
| ) |
const |
|
inlineoverridevirtual |
Implements OpChef.
Definition at line 31 of file ArgMax.h.
31{ return tflite::BuiltinOperator_ARG_MAX; }
◆ type()
tflite::BuiltinOptions ArgMaxChef::type |
( |
void |
| ) |
const |
|
inlineoverridevirtual |
Implements OpChef.
Definition at line 33 of file ArgMax.h.
33{ return tflite::BuiltinOptions_ArgMaxOptions; }
◆ value()
Implements OpChef.
Definition at line 22 of file ArgMax.cpp.
23{
24 auto &operation = (*_operation);
25
26 assert(operation.has_argmax_options());
27
29
30 tflite::ArgMaxOptionsBuilder argmax_options_builder{fbb};
31 argmax_options_builder.add_output_type(tflite_output_type);
32
33 return argmax_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: