Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/grappler/optimizers/
Ddependency_optimizer.cc247 SetVector<int>* nodes_to_simplify, in OptimizeNode() argument
275 nodes_to_simplify->PushBack(node_to_idx_[fanout]); in OptimizeNode()
316 nodes_to_simplify->PushBack(node_to_idx_[old_input_node]); in OptimizeNode()
322 nodes_to_simplify->PushBack(node_to_idx_[node]); in OptimizeNode()
435 nodes_to_simplify->PushBack(node_to_idx_[input]); in OptimizeNode()
443 nodes_to_simplify->PushBack(node_to_idx_[consumer]); in OptimizeNode()
467 SetVector<int> nodes_to_simplify; in OptimizeDependencies() local
473 nodes_to_simplify.PushBack(i); in OptimizeDependencies()
476 while (!nodes_to_simplify.Empty()) { in OptimizeDependencies()
477 int node_to_simplify = nodes_to_simplify.PopBack(); in OptimizeDependencies()
[all …]
Ddependency_optimizer.h66 void OptimizeNode(int node_idx, SetVector<int>* nodes_to_simplify,
Darithmetic_optimizer.h129 SetVector<NodeDef*>* nodes_to_simplify);
Darithmetic_optimizer.cc203 explicit ArithmeticOptimizerContext(SetVector<NodeDef*>* nodes_to_simplify) in ArithmeticOptimizerContext()
204 : nodes_to_simplify(nodes_to_simplify) {} in ArithmeticOptimizerContext()
205 SetVector<NodeDef*>* nodes_to_simplify; member
224 ctx_ext_.nodes_to_simplify->PushBack(node); in AddToOptimizationQueue()
3665 SetVector<NodeDef*> nodes_to_simplify; in SimplifyArithmeticOps() local
3666 nodes_to_simplify.Reserve(optimized_graph_->node_size()); in SimplifyArithmeticOps()
3668 nodes_to_simplify.PushBack(optimized_graph_->mutable_node(i)); in SimplifyArithmeticOps()
3674 const ArithmeticOptimizerContext ctx_ext(&nodes_to_simplify); in SimplifyArithmeticOps()
3742 while (!nodes_to_simplify.Empty()) { in SimplifyArithmeticOps()
3744 NodeDef* node = nodes_to_simplify.PopBack(); in SimplifyArithmeticOps()
[all …]