Files
ai-box/cxx/common/tensor.h
2025-03-07 17:18:20 +08:00

18 lines
191 B
C

#ifndef __COMMON_TENSOR_H__
#define __COMMON_TENSOR_H__
enum class TensorDataType {
Unknown,
Float32,
Float64,
Int32,
Uint32,
Int16,
Uint16,
Int8,
Uint8,
Int64,
Uint64,
};
#endif