MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / AddAll

Method AddAll

tensorflow/lite/mutable_op_resolver.cc:58–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56}
57
58void MutableOpResolver::AddAll(const MutableOpResolver& other) {
59 // map::insert does not replace existing elements, and map::insert_or_assign
60 // wasn't added until C++17.
61 for (const auto& other_builtin : other.builtins_) {
62 builtins_[other_builtin.first] = other_builtin.second;
63 }
64 for (const auto& other_custom_op : other.custom_ops_) {
65 custom_ops_[other_custom_op.first] = other_custom_op.second;
66 }
67}
68
69} // namespace tflite

Callers 2

TESTFunction · 0.80
TfLiteInterpreterCreateFunction · 0.80

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.64