Home
last modified time | relevance | path

Searched refs:opcodes_ (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/lite/experimental/writer/
Dwriter_lib.h92 std::make_pair(builtin_op_index, opcodes_.size())); in GetOpCodeForBuiltin()
94 opcodes_.push_back({builtin_op_index, ""}); in GetOpCodeForBuiltin()
102 std::make_pair(custom_name, opcodes_.size())); in GetOpCodeForCustom()
104 opcodes_.push_back({BuiltinOperator_CUSTOM, custom_name}); in GetOpCodeForCustom()
123 std::vector<OpCode> opcodes_; variable
Dwriter_lib.cc208 for (auto it : opcodes_) { in CreateOpCodeTable()
/external/tensorflow/tensorflow/lite/kernels/
Dtest_util.cc75 opcodes_.push_back(CreateOperatorCode(builder_, type, 0)); in SetBuiltinOp()
87 opcodes_.push_back( in SetCustomOp()
98 auto opcodes = builder_.CreateVector(opcodes_); in BuildInterpreter()
Dtest_util.h473 std::vector<flatbuffers::Offset<OperatorCode>> opcodes_; variable