Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/ccsrc/pipeline/jit/parse/
Dparse.cc2154 auto current_graph = dyn_cast<FuncGraph>(cell_ptr); in MakeTopGraph() local
2155 if (current_graph == nullptr) { in MakeTopGraph()
2160 func_graph->debug_info()->set_name(current_graph->debug_info()->name() + "_wrapper"); in MakeTopGraph()
2161 func_graph->debug_info()->set_location(current_graph->debug_info()->location()); in MakeTopGraph()
2164 for (auto &para : current_graph->parameters()) { in MakeTopGraph()
2172 func_graph->set_has_vararg(current_graph->has_vararg()); in MakeTopGraph()
2173 func_graph->set_has_kwarg(current_graph->has_kwarg()); in MakeTopGraph()
2174 func_graph->set_kwonlyargs_count(current_graph->kwonlyargs_count()); in MakeTopGraph()
2176 for (auto &d : current_graph->parameter_default_value()) { in MakeTopGraph()
2197 TraceGuard guard(current_graph->get_return()->debug_info()->location()); in MakeTopGraph()
[all …]