#include <While.h>
Definition at line 22 of file While.h.
◆ WhileChef()
WhileChef::WhileChef |
( |
const tflchef::Operation * |
operation | ) |
|
|
inlineexplicit |
Definition at line 25 of file While.h.
25 : _operation{operation}
26 {
27
28 }
◆ code()
tflite::BuiltinOperator WhileChef::code |
( |
void |
| ) |
const |
|
inlineoverridevirtual |
Implements OpChef.
Definition at line 31 of file While.h.
31{ return tflite::BuiltinOperator_WHILE; }
◆ type()
tflite::BuiltinOptions WhileChef::type |
( |
void |
| ) |
const |
|
inlineoverridevirtual |
Implements OpChef.
Definition at line 33 of file While.h.
33{ return tflite::BuiltinOptions_WhileOptions; }
◆ value()
Implements OpChef.
Definition at line 19 of file While.cpp.
20{
21 auto &operation = (*_operation);
22
23 assert(operation.has_while_options());
24
25 tflite::WhileOptionsBuilder while_options_builder{fbb};
26 while_options_builder.add_cond_subgraph_index(operation.while_options().cond_subgraph_index());
27 while_options_builder.add_body_subgraph_index(operation.while_options().body_subgraph_index());
28
29 return while_options_builder.
Finish().Union();
30}
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: