pub type UInt16Tensor<'a> = Tensor<'a, UInt16Type>;
Expand description
Tensor of type UInt16Type
Aliased Type§
struct UInt16Tensor<'a> {
data_type: DataType,
buffer: Buffer,
shape: Option<Vec<usize>>,
strides: Option<Vec<usize>>,
names: Option<Vec<&'a str>>,
_marker: PhantomData<UInt16Type>,
}
Fields§
§data_type: DataType
§buffer: Buffer
§shape: Option<Vec<usize>>
§strides: Option<Vec<usize>>
§names: Option<Vec<&'a str>>
§_marker: PhantomData<UInt16Type>