Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/graph/
Dgraph_constructor.cc279 gtl::FlatMap<StringPiece, Node*, StringPieceHasher> existing_nodes_; member in tensorflow::__anone86fd2d90111::GraphConstructor
371 existing_nodes_.reserve(g_->num_nodes()); in EnsureNoNameCollisions()
374 bool already_exists = !existing_nodes_.insert({n->name(), n}).second; in EnsureNoNameCollisions()
416 if (existing_nodes_.count(dst.first) == 0) { in ValidateInputMapAndControlDependencies()
429 if (existing_nodes_.count(node) == 0) { in ValidateInputMapAndControlDependencies()
874 if (existing_nodes_.find(name) != existing_nodes_.end()) return true; in NameExistsInGraph()
994 auto iter = existing_nodes_.find(id.first); in Convert()
995 DCHECK(iter != existing_nodes_.end()) << id.first; in Convert()
1132 DCHECK_GT(existing_nodes_.count(remapped_id.first), 0); in PopulateReturnTensors()
1133 Node* node = existing_nodes_[remapped_id.first]; in PopulateReturnTensors()