Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/ccsrc/frontend/parallel/graph_util/
Dnode_info.cc69 std::vector<ValuePtr> inputs_seq; in ExtractInputParameterByNode() local
71 inputs_seq = node_inputs[1]->cast<ValueNodePtr>()->value()->cast<ValueListPtr>()->value(); in ExtractInputParameterByNode()
73 inputs_seq = node_inputs[1]->cast<ValueNodePtr>()->value()->cast<ValueTuplePtr>()->value(); in ExtractInputParameterByNode()
75 return std::vector<bool>(inputs_seq.size(), false); in ExtractInputParameterByNode()
159 std::vector<ValuePtr> inputs_seq; in ExtractInputTypeLengthByNode() local
161 inputs_seq = node_inputs[1]->cast<ValueNodePtr>()->value()->cast<ValueListPtr>()->value(); in ExtractInputTypeLengthByNode()
163 inputs_seq = node_inputs[1]->cast<ValueNodePtr>()->value()->cast<ValueTuplePtr>()->value(); in ExtractInputTypeLengthByNode()
165 for (auto &ele : inputs_seq) { in ExtractInputTypeLengthByNode()
/third_party/mindspore/mindspore/ccsrc/frontend/parallel/
Dstep_parallel_utils.cc85 std::vector<ValuePtr> inputs_seq; in GetValueListShape() local
87 inputs_seq = node->cast<ValueNodePtr>()->value()->cast<ValueListPtr>()->value(); in GetValueListShape()
89 inputs_seq = node->cast<ValueNodePtr>()->value()->cast<ValueTuplePtr>()->value(); in GetValueListShape()
93 for (auto &ele : inputs_seq) { in GetValueListShape()