Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/core/ir/
Dfunc_graph.cc101 ParameterPtr FuncGraph::InsertFrontParameter() { in InsertFrontParameter() function in mindspore::FuncGraph
104 InsertFrontParameter(p); in InsertFrontParameter()
108 void FuncGraph::InsertFrontParameter(const ParameterPtr &p) { in InsertFrontParameter() function in mindspore::FuncGraph
110 manager_.lock()->InsertFrontParameter(shared_from_base<FuncGraph>(), p); in InsertFrontParameter()
Dmanager.h298 void InsertFrontParameter(const FuncGraphPtr &fg, const AnfNodePtr &parameter);
392 void InsertFrontParameter(FuncGraphPtr fg, const AnfNodePtr &param);
Dfunc_graph.h179 virtual ParameterPtr InsertFrontParameter();
180 void InsertFrontParameter(const ParameterPtr &p);
Dmanager.cc620 void FuncGraphManager::InsertFrontParameter(const FuncGraphPtr &fg, const AnfNodePtr &parameter) { in InsertFrontParameter() function in mindspore::FuncGraphManager
622 tr.InsertFrontParameter(fg, parameter); in InsertFrontParameter()
783 void FuncGraphTransaction::InsertFrontParameter(FuncGraphPtr fg, const AnfNodePtr &param) { in InsertFrontParameter() function in mindspore::FuncGraphTransaction
/third_party/mindspore/mindspore/ccsrc/frontend/optimizer/irpass/
Dincorporate_call.h60 new_items.push_back(new_fg->InsertFrontParameter()); in operator()