#[repr(transparent)]
pub struct Tensor<'tensor> { pub inner: DLTensor, /* private fields */ }
Expand description

Non-owned Tensor type interface. See DLTensor

Fields

inner: DLTensor

Implementations

Constructor

Returns the underlying DLTensor where lifetime parameter is removed.

Consumes the Tensor and returns the raw pointer to its underlying DLTensor.

Creates a Tensor from a raw DLTensor pointer (must be non-null).

Returns a *mut pointer to the underlying data of the Tensor.

Returns the device type.

Returns the size of an entry/item in the Tensor.

Returns the number of dimensions of the Tensor.

Returns the type of the entries of the Tensor.

Returns the shape of the Tensor.

Returns the strides of the underlying Tensor.

Returns the byte offset of the underlying Tensor.

Returns the size of the memory required to store the underlying data of the Tensor.

Trait Implementations

Formats the value using the given formatter. Read more
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.