[][src]Struct tract_core::tensor::Tensor

pub struct Tensor { /* fields omitted */ }

Methods

impl Tensor[src]

pub unsafe fn uninitialized_aligned<T: Datum>(
    shape: &[usize],
    alignment: usize
) -> TractResult<Tensor>
[src]

pub unsafe fn from_raw<T: Datum>(
    shape: &[usize],
    content: &[u8]
) -> TractResult<Tensor>
[src]

pub fn into_aligned(self, alignment: usize) -> TractResult<Tensor>[src]

pub unsafe fn null<T: Datum>(shape: &[usize]) -> TractResult<Tensor>[src]

pub unsafe fn null_dt(dt: DatumType, shape: &[usize]) -> TractResult<Tensor>[src]

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

pub fn into_tensor(self) -> SharedTensor[src]

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

pub fn into_shape(self, shape: &[usize]) -> TractResult<Tensor>[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 into_array<D: Datum>(self) -> TractResult<ArrayD<D>>[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 as_slice_mut<D: Datum>(&mut self) -> TractResult<&mut [D]>[src]

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

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

pub fn to_scalar<'a, D>(&'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 PartialEq<Tensor> for Tensor[src]

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

This method tests for !=.

impl From<bool> for Tensor[src]

impl From<f16> for Tensor[src]

impl From<f32> for Tensor[src]

impl From<f64> for Tensor[src]

impl From<i8> for Tensor[src]

impl From<i16> for Tensor[src]

impl From<i32> for Tensor[src]

impl From<i64> for Tensor[src]

impl From<u8> for Tensor[src]

impl From<u16> for Tensor[src]

impl From<TDim> for Tensor[src]

impl From<String> for Tensor[src]

impl<D: Dimension, T: Datum> From<ArrayBase<OwnedRepr<T>, D>> for Tensor[src]

impl Clone for Tensor[src]

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

Performs copy-assignment from source. Read more

impl Debug for Tensor[src]

Auto Trait Implementations

impl Send for Tensor

impl Sync for Tensor

Blanket Implementations

impl<PB, Tract> ToTract for PB where
    Tract: Tractify<PB>, 
[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> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

impl<T> Any for T where
    T: 'static + ?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

The type returned in the event of a conversion error.

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

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