GetDataType
Function
Obtains the tensor object data type.
Format
InferDataType GetDataType() const
Parameters
None
Usage Example
Construct a tensor object whose name is INPUT_IDS, data type is INT64, and data shape is {1, 2}, and then obtain the object data type.
1 2 3 4 5 | std::string name = "INPUT_IDS"; mindie_llm::InferDataType dataType = mindie_llm::InferDataType::TYPE_INT64; std::vector<int64_t> dataShape = {1,2}; auto inputsTensor = std::make_shared<mindie_llm::InferTensor>(name, dataType, dataShape); mindie_llm::InferDataType dataType2 = inputsTensor->GetDataType(); |
Return Value
Tensor object data type, which is of the InferDataType type.
Parent topic: InferTensor