Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/core/ops/
Dsplit_v.cc91 std::vector<TypePtr> type_tuple; in InferType() local
93 type_tuple.push_back(type); in InferType()
95 return std::make_shared<Tuple>(type_tuple); in InferType()
/third_party/mindspore/mindspore/core/abstract/
Dutils.cc396 auto type_tuple = type->cast<TuplePtr>(); in MakeAbstract() local
399 auto tensor_it = MakeAbstract((*shape_tuple)[it], (*type_tuple)[it]); in MakeAbstract()
/third_party/mindspore/mindspore/
D_checkparam.py821 def check_axis_type(axis, type_int=True, type_tuple=True, type_list=True): argument
825 if (type_tuple and isinstance(axis, tuple)) or (type_list and isinstance(axis, list)):
834 if type_tuple: