Searched defs:MSTensor (Results 1 – 9 of 9) sorted by relevance
43 - (instancetype)initWithInputs:(const std::vector<mindspore::MSTensor>*)inputs140 - (bool)ExecuteWithInputs:(const std::vector<mindspore::MSTensor>&)inputs
27 class MSTensor; variable
25 class MSTensor; variable
29 using MSTensor = mindspore::lite::Tensor; typedef
77 MSTensor::MSTensor() { in MSTensor() function in mindspore::MSTensor86 MSTensor::MSTensor(std::nullptr_t) : impl_(nullptr) {} in MSTensor() function in mindspore::MSTensor87 MSTensor::MSTensor(const std::shared_ptr<Impl> &impl) : impl_(impl) {} in MSTensor() function in mindspore::MSTensor88 MSTensor::MSTensor(const std::vector<char> &name, enum DataType type, const std::vector<int64_t> &s… in MSTensor() function in mindspore::MSTensor
36 public class MSTensor { class49 public MSTensor() { in MSTensor() method in MSTensor59 public MSTensor(long tensorPtr) { in MSTensor() method in MSTensor
384 MSTensor::MSTensor() : impl_(std::make_shared<TensorDefaultImpl>()) {} in MSTensor() function in mindspore::MSTensor385 MSTensor::MSTensor(std::nullptr_t) : impl_(nullptr) {} in MSTensor() function in mindspore::MSTensor386 MSTensor::MSTensor(const std::shared_ptr<Impl> &impl) : impl_(impl) { MS_EXCEPTION_IF_NULL(impl); } in MSTensor() function in mindspore::MSTensor387 MSTensor::MSTensor(const std::vector<char> &name, enum DataType type, const std::vector<int64_t> &s… in MSTensor() function in mindspore::MSTensor
670 interface MSTensor { interface
397 MSTensor::MSTensor(const std::string &name, enum DataType type, const std::vector<int64_t> &shape, … in MSTensor() function