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