Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/core/ir/
Dfunc_graph_cloner.cc243 repl_func_graph_[func_graph] = target_func_graph; in CloneParameters()
548 if (repl_func_graph_.find(func_graph) != repl_func_graph_.end()) { in CloneAllNodes()
646 if (repl_func_graph_.count(item) != 0) { in SetDefaults()
648 MS_EXCEPTION_IF_NULL(repl_func_graph_[item]); in SetDefaults()
650repl_func_graph_[item]->set_param_default_value(param_def.first, repl_node_[param_def.second]); in SetDefaults()
652 repl_func_graph_[item]->set_param_default_value(param_def.first, param_def.second); in SetDefaults()
661 if (repl_func_graph_.find(root->func_graph()) == repl_func_graph_.end()) { in CloneDisconnected()
664 CloneNode(root, repl_func_graph_[root->func_graph()]); in CloneDisconnected()
691 return ((repl_func_graph_.count(func_graph) == 0) ? func_graph : repl_func_graph_[func_graph]); in operator []()
Dfunc_graph_cloner.h63 std::unordered_map<FuncGraphPtr, FuncGraphPtr> &cloned_func_graph() { return repl_func_graph_; } in cloned_func_graph()
70 std::unordered_map<FuncGraphPtr, FuncGraphPtr> repl_func_graph_; variable