1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
use std::any::TypeId;
use std::convert::TryFrom;
use std::str::FromStr;
use crate::ffi::DLDataType;
use crate::packed_func::RetValue;
use thiserror::Error;
const DL_INT_CODE: u8 = 0;
const DL_UINT_CODE: u8 = 1;
const DL_FLOAT_CODE: u8 = 2;
const DL_HANDLE: u8 = 3;
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[repr(C)]
pub struct DataType {
code: u8,
bits: u8,
lanes: u16,
}
impl DataType {
pub const fn new(code: u8, bits: u8, lanes: u16) -> DataType {
DataType { code, bits, lanes }
}
pub fn itemsize(&self) -> usize {
(self.bits as usize * self.lanes as usize) >> 3
}
pub fn is_type<T: 'static>(&self) -> bool {
if self.lanes != 1 {
return false;
}
let typ = TypeId::of::<T>();
(typ == TypeId::of::<i32>() && self.code == DL_INT_CODE && self.bits == 32)
|| (typ == TypeId::of::<i64>() && self.code == DL_INT_CODE && self.bits == 64)
|| (typ == TypeId::of::<u32>() && self.code == DL_UINT_CODE && self.bits == 32)
|| (typ == TypeId::of::<u64>() && self.code == DL_UINT_CODE && self.bits == 64)
|| (typ == TypeId::of::<f32>() && self.code == DL_FLOAT_CODE && self.bits == 32)
|| (typ == TypeId::of::<f64>() && self.code == DL_FLOAT_CODE && self.bits == 64)
}
pub fn code(&self) -> usize {
self.code as usize
}
pub fn bits(&self) -> usize {
self.bits as usize
}
pub fn lanes(&self) -> usize {
self.lanes as usize
}
pub const fn int(bits: u8, lanes: u16) -> DataType {
DataType::new(DL_INT_CODE, bits, lanes)
}
pub const fn float(bits: u8, lanes: u16) -> DataType {
DataType::new(DL_FLOAT_CODE, bits, lanes)
}
pub const fn float32() -> DataType {
Self::float(32, 1)
}
pub const fn uint(bits: u8, lanes: u16) -> DataType {
DataType::new(DL_UINT_CODE, bits, lanes)
}
}
impl<'a> From<&'a DataType> for DLDataType {
fn from(dtype: &'a DataType) -> Self {
Self {
code: dtype.code as u8,
bits: dtype.bits as u8,
lanes: dtype.lanes as u16,
}
}
}
impl From<DLDataType> for DataType {
fn from(dtype: DLDataType) -> Self {
Self {
code: dtype.code,
bits: dtype.bits,
lanes: dtype.lanes,
}
}
}
impl From<DataType> for DLDataType {
fn from(dtype: DataType) -> Self {
Self {
code: dtype.code,
bits: dtype.bits,
lanes: dtype.lanes,
}
}
}
#[derive(Debug, Error)]
pub enum ParseDataTypeError {
#[error("invalid number: {0}")]
InvalidNumber(std::num::ParseIntError),
#[error("missing data type specifier (e.g., int32, float64)")]
MissingDataType,
#[error("unknown type: {0}")]
UnknownType(String),
}
impl FromStr for DataType {
type Err = ParseDataTypeError;
fn from_str(type_str: &str) -> Result<Self, Self::Err> {
use ParseDataTypeError::*;
if type_str == "bool" {
return Ok(DataType::new(1, 1, 1));
}
let mut type_lanes = type_str.split('x');
let typ = type_lanes.next().ok_or(MissingDataType)?;
let lanes = type_lanes
.next()
.map(|l| <u16>::from_str_radix(l, 10))
.unwrap_or(Ok(1))
.map_err(InvalidNumber)?;
let (type_name, bits) = match typ.find(char::is_numeric) {
Some(idx) => {
let (name, bits_str) = typ.split_at(idx);
(
name,
u8::from_str_radix(bits_str, 10).map_err(InvalidNumber)?,
)
}
None => (typ, 32),
};
let type_code = match type_name {
"int" => DL_INT_CODE,
"uint" => DL_UINT_CODE,
"float" => DL_FLOAT_CODE,
"handle" => DL_HANDLE,
_ => return Err(UnknownType(type_name.to_string())),
};
Ok(DataType::new(type_code, bits, lanes))
}
}
impl std::fmt::Display for DataType {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
if self.bits == 1 && self.lanes == 1 {
return write!(f, "bool");
}
let mut type_str = match self.code {
DL_INT_CODE => "int",
DL_UINT_CODE => "uint",
DL_FLOAT_CODE => "float",
DL_HANDLE => "handle",
_ => "unknown",
}
.to_string();
type_str += &self.bits.to_string();
if self.lanes > 1 {
type_str += &format!("x{}", self.lanes);
}
f.write_str(&type_str)
}
}
impl From<DataType> for RetValue {
fn from(dt: DataType) -> RetValue {
RetValue::DataType((&dt).into())
}
}
impl TryFrom<RetValue> for DataType {
type Error = anyhow::Error;
fn try_from(ret_value: RetValue) -> anyhow::Result<DataType> {
match ret_value {
RetValue::DataType(dt) => Ok(dt.into()),
_ => Err(anyhow::anyhow!("unable to convert datatype from ...")),
}
}
}