Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/ccsrc/backend/session/
Dascend_auto_monad.cc1376 AnfAlgo::SetNodeAttr(kAttrChildGraph, MakeValue(graphs), node); in SetChildGrapAttr()
1571 …bool HasSubGraphs(const CNodePtr &cnode) { return (cnode && AnfAlgo::HasNodeAttr(kAttrChildGraph, … in HasSubGraphs()
1574 return AnfAlgo::GetNodeAttr<std::vector<KernelGraphPtr>>(cnode, kAttrChildGraph); in GetSubGraphs()
1619 AnfAlgo::EraseNodeAttr(kAttrChildGraph, cnode); in GenerateExecuteOrder()
Dascend_session.cc1826 if (AnfAlgo::HasNodeAttr(kAttrChildGraph, cnode)) { in RecurseSelectKernelInfo()
1827 child_graphs = AnfAlgo::GetNodeAttr<std::vector<KernelGraphPtr>>(cnode, kAttrChildGraph); in RecurseSelectKernelInfo()
/third_party/mindspore/mindspore/ccsrc/utils/
Dutils.h428 constexpr auto kAttrChildGraph = "child_graph"; variable