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

Method set_original_node_names

tensorflow/core/graph/graph.cc:249–257  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

247}
248
249void Node::set_original_node_names(const std::vector<string>& names) {
250 MaybeCopyOnWrite();
251 props_->node_def.mutable_experimental_debug_info()
252 ->clear_original_node_names();
253 if (!names.empty()) {
254 *props_->node_def.mutable_experimental_debug_info()
255 ->mutable_original_node_names() = {names.begin(), names.end()};
256 }
257}
258
259Status Node::input_edge(int idx, const Edge** e) const {
260 if (idx < 0 || idx >= num_inputs()) {

Callers 1

MergeDebugInfoFunction · 0.80

Calls 3

emptyMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected