Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/ccsrc/transform/graph_ir/
Dconvert.cc734 std::vector<AnfNodePtr> case_inputs; in SetSubgraph() local
736 case_inputs.emplace_back(cnode->input(i)); in SetSubgraph()
744 …if (std::find(case_inputs.begin(), case_inputs.end(), branch_node->input(j)) == case_inputs.end())… in SetSubgraph()
745 case_inputs.emplace_back(branch_node->input(j)); in SetSubgraph()
751 ProcessSubgraph(bnode->input(i), case_inputs); in SetSubgraph()
774 std::vector<AnfNodePtr> case_inputs; in GetCaseNodeInput() local
776 case_inputs.emplace_back(node->input(i)); in GetCaseNodeInput()
784 …if (std::find(case_inputs.begin(), case_inputs.end(), branch_node->input(j)) == case_inputs.end())… in GetCaseNodeInput()
785 case_inputs.emplace_back(branch_node->input(j)); in GetCaseNodeInput()
798 for (size_t i = 0; i < case_inputs.size(); i++) { in GetCaseNodeInput()
[all …]