Skip to main content

TensorViewMut

Enum TensorViewMut 

Source
pub enum TensorViewMut<'a> {
    F32(TypedTensorViewMut<'a, f32>),
    F64(TypedTensorViewMut<'a, f64>),
    I32(TypedTensorViewMut<'a, i32>),
    I64(TypedTensorViewMut<'a, i64>),
    Bool(TypedTensorViewMut<'a, bool>),
    C32(TypedTensorViewMut<'a, Complex<f32>>),
    C64(TypedTensorViewMut<'a, Complex<f64>>),
}
Expand description

Dynamic mutable borrowed tensor view.

TensorViewMut is the mutable counterpart to TensorView. It keeps the dtype erased while preserving the typed mutable view’s shape, strides, and offset metadata.

§Examples

use tenferro_tensor::{DType, TensorViewMut, TypedTensorViewMut};

let mut data = [1.0_f64, 2.0];
let view = TensorViewMut::F64(TypedTensorViewMut::from_slice([2], [1], 0, &mut data)?);
assert_eq!(view.dtype(), DType::F64);

Variants§

Implementations§

Source§

impl<'a> TensorViewMut<'a>

Source

pub fn f64(shape: &'a [usize], data: &'a mut [f64]) -> Result<Self>

Create a dynamic f64 mutable view over compact column-major host data.

Source

pub fn dtype(&self) -> DType

Source

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

Source

pub fn strides(&self) -> &[isize]

Source

pub fn offset(&self) -> isize

Source

pub fn layout_linear_offset(&self, indices: &[usize]) -> Result<usize>

Source

pub fn is_col_major_contiguous(&self) -> Result<bool>

Source

pub fn layout_summary(&self) -> String

Source

pub fn assert_col_major_contiguous(&self) -> Result<()>

Source

pub fn as_read_only(&self) -> TensorView<'_>

Source

pub fn copy_from_tensor(&mut self, src: &Tensor) -> Result<()>

Trait Implementations§

Source§

impl<'a> Debug for TensorViewMut<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for TensorViewMut<'a>

§

impl<'a> !RefUnwindSafe for TensorViewMut<'a>

§

impl<'a> Send for TensorViewMut<'a>

§

impl<'a> Sync for TensorViewMut<'a>

§

impl<'a> Unpin for TensorViewMut<'a>

§

impl<'a> UnsafeUnpin for TensorViewMut<'a>

§

impl<'a> !UnwindSafe for TensorViewMut<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.