Home
last modified time | relevance | path

Searched refs:type_ptr (Results 1 – 25 of 53) sorted by relevance

123

/third_party/mindspore/mindspore/core/utils/
Dtensor_construct_utils.cc22 tensor::TensorPtr TensorConstructUtils::CreateZerosTensor(const TypePtr &type_ptr, const std::vecto… in CreateZerosTensor() argument
23 MS_EXCEPTION_IF_NULL(type_ptr); in CreateZerosTensor()
24 auto type_id = ExtractTypeId(type_ptr); in CreateZerosTensor()
35 tensor::TensorPtr TensorConstructUtils::CreateOnesTensor(const TypePtr &type_ptr, const std::vector… in CreateOnesTensor() argument
36 MS_EXCEPTION_IF_NULL(type_ptr); in CreateOnesTensor()
37 auto type_id = ExtractTypeId(type_ptr); in CreateOnesTensor()
76 tensor::TensorPtr TensorConstructUtils::CreateTensor(const TypePtr &type_ptr, const std::vector<int… in CreateTensor() argument
78 MS_EXCEPTION_IF_NULL(type_ptr); in CreateTensor()
79 auto type_id = ExtractTypeId(type_ptr); in CreateTensor()
84 TypeId TensorConstructUtils::ExtractTypeId(const TypePtr &type_ptr) { in ExtractTypeId() argument
[all …]
/third_party/mindspore/mindspore/core/ir/
Dmeta_tensor.cc32 MetaTensor::MetaTensor(const TypePtr &type_ptr, const ShapeVector &shape) { in MetaTensor() argument
34 if (type_ptr != nullptr) { in MetaTensor()
35 data_type = type_ptr->type_id(); in MetaTensor()
76 TypePtr MetaTensor::SetDtype(const TypePtr type_ptr) { in SetDtype() argument
77 if (type_ptr == nullptr) { in SetDtype()
81 (void)set_data_type(type_ptr->type_id()); in SetDtype()
82 return type_ptr; in SetDtype()
/third_party/mindspore/mindspore/ccsrc/pybind_api/ir/
Dtensor_py.cc197 TensorPtr TensorPy::MakeTensor(const py::array &input, const TypePtr &type_ptr) { in MakeTensor() argument
201 auto data_type = type_ptr ? type_ptr->type_id() : TypeId::kTypeUnknown; in MakeTensor()
427 .def(py::init([](const Tensor &tensor, const TypePtr &type_ptr) { in __anonde8b974e0102() argument
428 TypeId data_type = type_ptr ? type_ptr->type_id() : kTypeUnknown; in __anonde8b974e0102()
435 .def(py::init([](const TypePtr &type_ptr, const py::tuple &shape) { in __anonde8b974e0102() argument
436 … auto data_type = type_ptr ? type_ptr->type_id() : TypeId::kNumberTypeFloat64; in __anonde8b974e0102()
440 .def(py::init([](const TypePtr &type_ptr, const py::list &shape) { in __anonde8b974e0102() argument
441 … auto data_type = type_ptr ? type_ptr->type_id() : TypeId::kNumberTypeFloat64; in __anonde8b974e0102()
445 .def(py::init([](const py::array &input, const TypePtr &type_ptr) { in __anonde8b974e0102() argument
446 return TensorPy::MakeTensor(input, type_ptr); in __anonde8b974e0102()
[all …]
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/host/
Dhost_kernel_mod.cc55 TypePtr type_ptr = TypeIdToType(AnfAlgo::GetInputDeviceDataType(anf_node, i)); in Init() local
57 if (!GetShapeSize(shape_i, type_ptr, &size_i)) { in Init()
65 TypePtr type_ptr = TypeIdToType(AnfAlgo::GetOutputDeviceDataType(anf_node, i)); in Init() local
66 MS_EXCEPTION_IF_NULL(type_ptr); in Init()
68 if (!GetShapeSize(shape_i, type_ptr, &size_i)) { in Init()
/third_party/mindspore/mindspore/lite/tools/converter/acl/mapper/
Dcast_mapper.cc45 TypePtr type_ptr = TypeIdToType(TypeId(dst_type)); in Mapper() local
46 if (type_ptr == nullptr) { in Mapper()
50 ValueNodePtr value_node = NewValueNode(type_ptr); in Mapper()
/third_party/mindspore/mindspore/ccsrc/frontend/operator/composite/
Dmultitype_funcgraph.cc65 TypePtr type_ptr = nullptr; in PyRegister() local
68 type_ptr = StringToType(type_name); in PyRegister()
69 if (type_ptr == nullptr) { in PyRegister()
73 type_ptr = type_in.cast<TypePtr>(); in PyRegister()
77 types.push_back(type_ptr); in PyRegister()
/third_party/mindspore/tests/ut/cpp/ops/
Dtest_ops_unstack.cc57 auto type_ptr = abstract->BuildType(); in TEST_F() local
58 MS_EXCEPTION_IF_NULL(type_ptr); in TEST_F()
59 auto type = type_ptr->cast<TuplePtr>(); in TEST_F()
Dtest_ops_unpack.cc57 auto type_ptr = abstract->BuildType(); in TEST_F() local
58 MS_EXCEPTION_IF_NULL(type_ptr); in TEST_F()
59 auto type = type_ptr->cast<TuplePtr>(); in TEST_F()
Dtest_ops_custom_predict.cc58 auto type_ptr = abstract->BuildType(); in TEST_F() local
59 MS_EXCEPTION_IF_NULL(type_ptr); in TEST_F()
60 auto type = type_ptr->cast<TuplePtr>(); in TEST_F()
Dtest_ops_hashtable_lookup.cc59 auto type_ptr = abstract->BuildType(); in TEST_F() local
60 MS_EXCEPTION_IF_NULL(type_ptr); in TEST_F()
61 auto type = type_ptr->cast<TuplePtr>(); in TEST_F()
Dtest_ops_merge.cc60 auto type_ptr = abstract->BuildType(); in TEST_F() local
61 MS_EXCEPTION_IF_NULL(type_ptr); in TEST_F()
62 auto type = type_ptr->cast<TuplePtr>(); in TEST_F()
Dtest_ops_layer_norm_beta_gamma_backprop_v2.cc61 auto type_ptr = abstract->BuildType(); in TEST_F() local
62 MS_EXCEPTION_IF_NULL(type_ptr); in TEST_F()
63 auto type = type_ptr->cast<TuplePtr>(); in TEST_F()
Dtest_ops_topk.cc70 auto type_ptr = abstract->BuildType(); in TEST_F() local
71 MS_EXCEPTION_IF_NULL(type_ptr); in TEST_F()
72 auto type = type_ptr->cast<TuplePtr>(); in TEST_F()
Dtest_ops_layer_norm_x_backprop_v2.cc68 auto type_ptr = abstract->BuildType(); in TEST_F() local
69 MS_EXCEPTION_IF_NULL(type_ptr); in TEST_F()
70 auto type = type_ptr->cast<TuplePtr>(); in TEST_F()
Dtest_ops_detection_post_process.cc66 auto type_ptr = abstract->BuildType(); in TEST_F() local
67 MS_EXCEPTION_IF_NULL(type_ptr); in TEST_F()
68 auto type = type_ptr->cast<TuplePtr>(); in TEST_F()
Dtest_ops_batch_norm.cc68 auto type_ptr = abstract->BuildType(); in TEST_F() local
69 MS_EXCEPTION_IF_NULL(type_ptr); in TEST_F()
70 auto type = type_ptr->cast<TuplePtr>(); in TEST_F()
Dtest_ops_batch_norm_grad.cc71 auto type_ptr = abstract->BuildType(); in TEST_F() local
72 MS_EXCEPTION_IF_NULL(type_ptr); in TEST_F()
73 auto type = type_ptr->cast<TuplePtr>(); in TEST_F()
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/gpu/
Dapply_momentum_scale_fusion.cc44 auto type_ptr = dyn_cast<TensorType>(dtype); in IsScalar() local
45 MS_EXCEPTION_IF_NULL(type_ptr); in IsScalar()
46 auto element = type_ptr->element(); in IsScalar()
Dapply_momentum_weight_scale_fusion.cc47 auto type_ptr = dyn_cast<TensorType>(dtype); in IsScalar() local
48 MS_EXCEPTION_IF_NULL(type_ptr); in IsScalar()
49 auto element = type_ptr->element(); in IsScalar()
/third_party/mindspore/mindspore/core/ir/dtype/
Dtype.cc168 size_t GetTypeByte(const TypePtr &type_ptr) { in GetTypeByte() argument
169 if (type_ptr && type_ptr->isa<Number>()) { in GetTypeByte()
170 auto number = dyn_cast<Number>(type_ptr); in GetTypeByte()
/third_party/mindspore/mindspore/core/ops/
Darg_min.cc33 auto type_ptr = GetAttr(kOutputType)->cast<TensorTypePtr>()->element(); in get_output_type() local
34 return type_ptr->type_id(); in get_output_type()
Darg_max.cc59 auto type_ptr = GetAttr(kOutputType)->cast<TensorTypePtr>()->element(); in get_output_type() local
60 return type_ptr->type_id(); in get_output_type()
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/hccl/
Dhcom_util.cc74 TypeId type_ptr; in GetHcomDataType() local
76 type_ptr = AnfAlgo::GetOutputDeviceDataType(anf_node, i); in GetHcomDataType()
78 type_ptr = AnfAlgo::GetInputDeviceDataType(anf_node, i); in GetHcomDataType()
80 data_type_list->emplace_back(ConvertHcclType(type_ptr)); in GetHcomDataType()
/third_party/mindspore/mindspore/lite/test/common/
Dimport_from_meta_graphT.cc52 auto type_ptr = TypeIdToType(type_id); in ConverterConstTensor() local
97 auto type_ptr = TypeIdToType(type_id); in ConvertTensorToAbstractTensor() local
101 auto ptr = std::make_shared<abstract::AbstractTensor>(type_ptr, shape_vector); in ConvertTensorToAbstractTensor()
/third_party/mindspore/mindspore/core/ops/grad/
Dgroup_conv2d_grad_input.cc176 auto type_ptr = input_args[0]->BuildType(); in GroupConv2DGradInputInfer() local
177 MS_EXCEPTION_IF_NULL(type_ptr); in GroupConv2DGradInputInfer()
178 auto type_tensor_ptr = type_ptr->cast<TensorTypePtr>(); in GroupConv2DGradInputInfer()

123