[][src]Trait tract_data::prelude::IntoArcTensor

pub trait IntoArcTensor: Sized {
    pub fn into_arc_tensor(self) -> Arc<Tensor>;
}

Convenient conversion to Arc.

Required methods

pub fn into_arc_tensor(self) -> Arc<Tensor>[src]

Convert Self to a Arc.

May perform a copy

Loading content...

Implementations on Foreign Types

impl<D: Dimension, T: Datum> IntoArcTensor for Array<T, D>[src]

impl IntoArcTensor for Arc<Tensor>[src]

Loading content...

Implementors

impl IntoArcTensor for Tensor[src]

Loading content...