Home
last modified time | relevance | path

Searched defs:TensorInfo (Results 1 – 12 of 12) sorted by relevance

/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/frontend/parallel/auto_parallel/
Doperator_costmodel.h403 …double GetForwardCommCost(const std::vector<TensorInfo> &, const std::vector<TensorInfo> &, int64_… in GetForwardCommCost()
441 …double GetForwardCommCost(const std::vector<TensorInfo> &, const std::vector<TensorInfo> &, int64_… in GetForwardCommCost()
444 …double GetBackwardCommCost(const std::vector<TensorInfo> &, const std::vector<TensorInfo> &, int64… in GetBackwardCommCost()
451 double GetForwardComputationCost(const std::vector<TensorInfo> &, const std::vector<TensorInfo> &, in GetForwardComputationCost()
455 …double GetBackwardComputationCost(const std::vector<TensorInfo> &, const std::vector<TensorInfo> &, in GetBackwardComputationCost()
474 …double GetForwardCommCost(const std::vector<TensorInfo> &, const std::vector<TensorInfo> &, int64_… in GetForwardCommCost()
477 …double GetBackwardCommCost(const std::vector<TensorInfo> &, const std::vector<TensorInfo> &, int64… in GetBackwardCommCost()
485 double GetForwardComputationCost(const std::vector<TensorInfo> &, const std::vector<TensorInfo> &, in GetForwardComputationCost()
490 …double GetBackwardComputationCost(const std::vector<TensorInfo> &, const std::vector<TensorInfo> &, in GetBackwardComputationCost()
634 …double GetForwardCommCost(const std::vector<TensorInfo> &, const std::vector<TensorInfo> &, int64_… in GetForwardCommCost()
[all …]
Doperator_costmodel.cc58 double OperatorCost::GetOutputMemoryCost(const std::vector<TensorInfo> &, in GetOutputMemoryCost()
70 double OperatorCost::GetMemoryCostForInference(const std::vector<TensorInfo> &, in GetMemoryCostForInference()
101 double MatMulCost::GetBackwardCommCost(const std::vector<TensorInfo> &inputs, const std::vector<Ten… in GetBackwardCommCost()
148 double MatMulCost::GetBackwardComputationCost(const std::vector<TensorInfo> &inputs, const std::vec… in GetBackwardComputationCost()
202 double BatchNormCost::GetForwardCommCost(const std::vector<TensorInfo> &inputs, const std::vector<T… in GetForwardCommCost()
220 double BatchNormCost::GetBackwardCommCost(const std::vector<TensorInfo> &inputs, const std::vector<… in GetBackwardCommCost()
252 double BatchNormCost::GetForwardComputationCost(const std::vector<TensorInfo> &inputs, const std::v… in GetForwardComputationCost()
263 double BatchNormCost::GetBackwardComputationCost(const std::vector<TensorInfo> &, const std::vector… in GetBackwardComputationCost()
279 double CastCost::GetForwardCommCost(const std::vector<TensorInfo> &, const std::vector<TensorInfo> … in GetForwardCommCost() argument
285 double CastCost::GetBackwardCommCost(const std::vector<TensorInfo> &inputs, const std::vector<Tenso… in GetBackwardCommCost()
[all …]
/third_party/mindspore/mindspore-src/source/mindspore/lite/src/litert/kernel/cpu/base/
Dgroup_convolution_creator.h28 struct TensorInfo { struct
29 std::vector<int> shape_;
30 AllocatorPtr allocator_;
31 mindspore::Format format_;
32 TypeId data_type_;
33 lite::Category tensor_type_;
34 bool is_in_;
/third_party/mindspore/mindspore-src/source/mindspore/lite/src/extendrt/cxx_api/model_pool/
Dmodel_pool.h36 struct TensorInfo { struct
37 std::string name = "";
38 enum DataType data_type;
39 std::vector<int64_t> shape;
40 mindspore::Format format;
41 std::vector<QuantParam> quant_param;
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/gpu/kernel/cuda_impl/cuda_class/
Dhelper_base.h37 struct TensorInfo { struct
38 std::vector<std::vector<int>> shapes;
39 std::vector<std::vector<TypeId>> types;
63 virtual TensorInfo GetOutputTensorInfo() { return TensorInfo(); } in GetOutputTensorInfo() argument
/third_party/mindspore/mindspore-src/source/mindspore/lite/test/ut/src/runtime/kernel/arm/int8/
Dfullconnection_int8_tests.cc32 struct TensorInfo { struct
33 float *data;
34 int *data_int;
35 float min;
36 float max;
37 int len;
38 std::vector<int> *shape;
Dmatmul_int8_tests.cc33 struct TensorInfo { struct
34 float *data;
35 float min;
36 float max;
37 int len;
38 std::vector<int> *shape;
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/frontend/parallel/tensor_layout/
Dtensor_info.h34 TensorInfo(const TensorLayout &tensor_layout, Shape shape, Shape slice_shape) in TensorInfo() function
36 explicit TensorInfo(const TensorLayout &tensor_layout) : tensor_layout_(tensor_layout) { in TensorInfo() function
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/kernel/
Dkernel.h230 struct TensorInfo { struct
243 using TensorInfoPtr = std::shared_ptr<TensorInfo>; argument
/third_party/mindspore/mindspore-src/source/mindspore/lite/src/extendrt/delegate/tensorrt/
Dtensor_info.cc54 TensorInfo::TensorInfo(const std::string &name, mindspore::DataType type, const std::vector<int64_t… in TensorInfo() function in mindspore::lite::TensorInfo
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/backend/common/mem_reuse/
Dmem_copy_manager.h37 struct TensorInfo { struct
/third_party/mindspore/mindspore-src/source/mindspore/python/mindspore/offline_debug/
Ddbg_services.py384 class TensorInfo: class