[][src]Struct tract_core::tensor::SharedTensor

pub struct SharedTensor(_);

Methods

impl SharedTensor
[src]

pub fn as_tensor(&self) -> &Tensor
[src]

Returns a reference to the Tensor wrapped inside a SharedTensor.

pub fn to_tensor(self) -> Tensor
[src]

pub fn to_array<'a, D: Datum>(self) -> TractResult<ArrayD<D>>
[src]

Methods from Deref<Target = Tensor>

pub fn is_null(&self) -> bool
[src]

pub fn shape(&self) -> &[usize]
[src]

pub fn datum_type(&self) -> DatumType
[src]

pub fn dump_t<D: Datum>(&self, force_full: bool) -> TractResult<String>
[src]

pub fn dump(&self, force_full: bool) -> TractResult<String>
[src]

pub fn close_enough(&self, other: &Self, approx: bool) -> bool
[src]

pub fn as_ptr<D: Datum>(&self) -> TractResult<*const D>
[src]

pub fn as_slice<D: Datum>(&self) -> TractResult<&[D]>
[src]

pub fn to_array_view<'a, D: Datum>(&'a self) -> TractResult<ArrayViewD<'a, D>>
[src]

pub fn to_scalar<'a, D: Datum>(&'a self) -> TractResult<D>
[src]

pub fn cast_to<D: Datum>(&self) -> TractResult<Cow<Tensor>>
[src]

pub fn cast_to_dt(&self, dt: DatumType) -> TractResult<Cow<Tensor>>
[src]

Trait Implementations

impl Output for SharedTensor
[src]

fn wrap(self) -> Wrapped
[src]

Wraps self in the Wrapped type.

impl IntoExp<GenericFact<SharedTensor>> for SharedTensor
[src]

impl<M> From<M> for SharedTensor where
    Tensor: From<M>, 
[src]

impl From<Arc<Tensor>> for SharedTensor
[src]

impl PartialEq<SharedTensor> for SharedTensor
[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for SharedTensor
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SharedTensor
[src]

impl Deref for SharedTensor
[src]

type Target = Tensor

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

impl<T, E> IntoExp for E where
    E: 'static + TExp<T>, 
[src]

impl<PB, Tract> ToTract for PB where
    Tract: Tractify<PB>, 
[src]

impl<T> From for T
[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Downcast for T where
    T: Any
[src]

impl<T> Clone for T where
    T: Clone
[src]