[][src]Struct tension::CommonTensor

pub struct CommonTensor<T: Prm, Buf: Buffer<T>> {
    pub buffer: Rc<Buf>,
    pub shape: Shape,
    // some fields omitted
}

An intermediate structure that contains most of the Tensor functionality.

Fields

buffer: Rc<Buf>shape: Shape

Implementations

impl<T: Prm, Buf: Buffer<T>> CommonTensor<T, Buf>[src]

pub fn from_shared_buffer(rc_buffer: Rc<Buf>, shape: &Shape) -> Self[src]

Create tensor from shared buffer and shape

pub fn from_buffer(buffer: Buf, shape: &Shape) -> Self[src]

Create tensor from specified buffer and shape

pub fn buffer(&self) -> &Buf[src]

Provides access to inner buffer.

pub fn buffer_mut(&mut self) -> &mut Buf[src]

Clones inner buffer if it is shared and provides mutable access to it.

Trait Implementations

impl<T: Prm, Buf: Buffer<T>> Tensor<T> for CommonTensor<T, Buf>[src]

type Buffer = Buf

Inner buffer type.

Auto Trait Implementations

impl<T, Buf> !RefUnwindSafe for CommonTensor<T, Buf>

impl<T, Buf> !Send for CommonTensor<T, Buf>

impl<T, Buf> !Sync for CommonTensor<T, Buf>

impl<T, Buf> Unpin for CommonTensor<T, Buf> where
    T: Unpin

impl<T, Buf> UnwindSafe for CommonTensor<T, Buf> where
    Buf: RefUnwindSafe,
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.