Trait TensorMetadata

pub trait TensorMetadata:
    Clone
    + Send
    + Sync
    + Debug {
    // Required methods
    fn dtype(&self) -> DType;
    fn shape(&self) -> Shape;

    // Provided method
    fn rank(&self) -> usize { ... }
}
Expand description

Tensor metadata trait for tensor primitive.

Required Methods§

fn dtype(&self) -> DType

The dtype of the tensor.

fn shape(&self) -> Shape

The shape of the tensor.

Provided Methods§

fn rank(&self) -> usize

The number of dimensions of the tensor.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

§

impl TensorMetadata for NdArrayQTensor

§

fn dtype(&self) -> DType

§

fn shape(&self) -> Shape

§

fn rank(&self) -> usize

§

impl TensorMetadata for NdArrayTensor

§

fn dtype(&self) -> DType

§

fn shape(&self) -> Shape

§

fn rank(&self) -> usize

Implementors§

§

impl<B> TensorMetadata for TensorPrimitive<B>
where B: Backend,