Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/core/abstract/
Dabstract_function.cc188 …return meta_func_graph_ == other_meta_fg->meta_func_graph_ && tracking_id() == other_meta_fg->trac… in operator ==()
192 MS_EXCEPTION_IF_NULL(meta_func_graph_); in hash()
193 auto hash_value = hash_combine(tid(), meta_func_graph_->hash()); in hash()
201 MS_EXCEPTION_IF_NULL(meta_func_graph_); in ToString()
202 return "MetaFuncGraphAbstractClosure: " + meta_func_graph_->name(); in ToString()
Dabstract_function.h155 … : meta_func_graph_(meta_func_graph), tracking_id_(AnfNodeWeakPtr(tracking_id)), scope_(scope) {} in meta_func_graph_() function
159 MetaFuncGraphPtr meta_func_graph() { return meta_func_graph_; } in MS_DECLARE_PARENT()
168 return std::make_shared<MetaFuncGraphAbstractClosure>(meta_func_graph_, tracking_id()); in Copy()
176 MetaFuncGraphPtr meta_func_graph_;
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/static_analysis/
Devaluator.h259 …: BaseFuncGraphEvaluator(AnalysisContext::DummyContext()), meta_func_graph_(meta_func_graph), scop… in MetaFuncGraphEvaluator()
267 return meta_func_graph_->NormalizeArgs(args_spec_list); in NormalizeArgs()
269 std::string ToString() const override { return identifier_ + "_" + meta_func_graph_->ToString(); } in ToString()
272 MetaFuncGraphPtr meta_func_graph_;
Devaluator.cc346 MS_EXCEPTION_IF_NULL(meta_func_graph_); in GetFuncGraph()
350 generated_func_graph = meta_func_graph_->GenerateFuncGraph(args_spec_list); in GetFuncGraph()
352 generated_func_graph = meta_func_graph_->GenerateFuncGraph(args_spec_list); in GetFuncGraph()