pub struct StridedArray<T> { /* private fields */ }Expand description
Owned strided multidimensional array.
Supports both column-major (Julia default) and row-major (C default) layouts.
Implementations§
Source§impl<T: Clone + Default> StridedArray<T>
impl<T: Clone + Default> StridedArray<T>
Sourcepub fn col_major(dims: &[usize]) -> Self
pub fn col_major(dims: &[usize]) -> Self
Create a column-major (Julia default) tensor filled with Default values.
Sourcepub fn row_major(dims: &[usize]) -> Self
pub fn row_major(dims: &[usize]) -> Self
Create a row-major (C default) tensor filled with Default values.
Sourcepub fn from_fn_col_major(dims: &[usize], f: impl FnMut(&[usize]) -> T) -> Self
pub fn from_fn_col_major(dims: &[usize], f: impl FnMut(&[usize]) -> T) -> Self
Create a column-major tensor with values produced by a function.
The function is called with indices in column-major iteration order.
Sourcepub fn from_fn_row_major(dims: &[usize], f: impl FnMut(&[usize]) -> T) -> Self
pub fn from_fn_row_major(dims: &[usize], f: impl FnMut(&[usize]) -> T) -> Self
Create a row-major tensor with values produced by a function.
The function is called with indices in row-major iteration order.
Source§impl<T> StridedArray<T>
impl<T> StridedArray<T>
Sourcepub fn from_parts(
data: Vec<T>,
dims: &[usize],
strides: &[isize],
offset: isize,
) -> Result<Self>
pub fn from_parts( data: Vec<T>, dims: &[usize], strides: &[isize], offset: isize, ) -> Result<Self>
Create from raw parts.
Sourcepub fn view(&self) -> StridedView<'_, T>
pub fn view(&self) -> StridedView<'_, T>
Create an immutable view over this tensor.
Sourcepub fn view_mut(&mut self) -> StridedViewMut<'_, T>
pub fn view_mut(&mut self) -> StridedViewMut<'_, T>
Create a mutable view over this tensor.
Source§impl<T: Default> StridedArray<T>
impl<T: Default> StridedArray<T>
Sourcepub fn col_major_from_buffer(buf: Vec<T>, dims: &[usize]) -> Self
pub fn col_major_from_buffer(buf: Vec<T>, dims: &[usize]) -> Self
Create a column-major tensor reusing an existing buffer.
If buf has at least product(dims) elements, it is truncated and
zeroed. Otherwise a fresh buffer is allocated.
Source§impl<T: Copy> StridedArray<T>
impl<T: Copy> StridedArray<T>
Sourcepub unsafe fn col_major_uninit(dims: &[usize]) -> Self
pub unsafe fn col_major_uninit(dims: &[usize]) -> Self
Create a column-major tensor with uninitialized data.
§Safety
Caller must write every element before reading.
Sourcepub unsafe fn col_major_from_buffer_uninit(buf: Vec<T>, dims: &[usize]) -> Self
pub unsafe fn col_major_from_buffer_uninit(buf: Vec<T>, dims: &[usize]) -> Self
Reuse an existing buffer as a column-major tensor without zeroing.
§Safety
Caller must write every element before reading.