22 lines
437 B
Markdown
22 lines
437 B
Markdown
# sail 数据类型
|
|
|
|
定义sophon环境中常用的数据类型
|
|
|
|
**接口形式**
|
|
|
|
```python
|
|
sail.Dtype.BM_FLOAT32
|
|
sail.Dtype.BM_INT8
|
|
sail.Dtype.BM_UINT8
|
|
sail.Dtype.BM_INT32
|
|
sail.Dtype.BM_UINT32
|
|
```
|
|
|
|
**参数说明**
|
|
|
|
- sail.Dtype.BM_FLOAT32 数据类型为float32
|
|
- sail.Dtype.BM_INT8 数据类型为int8
|
|
- sail.Dtype.BM_UINT8 数据类型为uint8
|
|
- sail.Dtype.BM_INT32 数据类型为int32
|
|
- sail.Dtype.BM_UINT32 数据类型为uint32
|