Searched refs:TensorDataImpl (Results 1 – 1 of 1) sorted by relevance
/third_party/mindspore/mindspore/core/ir/ |
D | tensor.cc | 183 class TensorDataImpl : public TensorData { class 185 …explicit TensorDataImpl(const ShapeVector &shape) : ndim_(shape.size()), data_size_(SizeOf(shape))… in TensorDataImpl() function in mindspore::tensor::TensorDataImpl 186 ~TensorDataImpl() = default; 188 TensorDataImpl(const ShapeVector &shape, void *data, size_t data_len) in TensorDataImpl() function in mindspore::tensor::TensorDataImpl 191 TensorDataImpl(const ShapeVector &shape, void *data, TypeId data_type) in TensorDataImpl() function in mindspore::tensor::TensorDataImpl 195 TensorDataImpl(const ShapeVector &shape, const U *input, size_t size) in TensorDataImpl() function in mindspore::tensor::TensorDataImpl 199 TensorDataImpl(const ShapeVector &shape, Scalar scalar) in TensorDataImpl() function in mindspore::tensor::TensorDataImpl 224 auto ptr = dynamic_cast<const TensorDataImpl<T> *>(&other); in equals() 448 return std::make_shared<TensorDataImpl<bool>>(shape, args...); in MakeTensorData() 450 return std::make_shared<TensorDataImpl<uint8_t>>(shape, args...); in MakeTensorData() [all …]
|