Searched refs:kAttrChildGraph (Results 1 – 3 of 3) sorted by relevance
1376 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()
1826 if (AnfAlgo::HasNodeAttr(kAttrChildGraph, cnode)) { in RecurseSelectKernelInfo()1827 child_graphs = AnfAlgo::GetNodeAttr<std::vector<KernelGraphPtr>>(cnode, kAttrChildGraph); in RecurseSelectKernelInfo()
428 constexpr auto kAttrChildGraph = "child_graph"; variable