pub trait IntoArcTensor: Sized {
    // Required method
    fn into_arc_tensor(self) -> Arc<Tensor>;
}
Expand description

Convenient conversion to Arc.

Required Methods§

source

fn into_arc_tensor(self) -> Arc<Tensor>

Convert Self to a Arc.

May perform a copy

Implementations on Foreign Types§

source§

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

source§

impl IntoArcTensor for Arc<Tensor>

Implementors§