pub struct BatchJob<'a> {
pub idx: usize,
pub rows: usize,
pub cols: usize,
pub row_scale: &'a [f32],
pub xs: Vec<f32>,
}Expand description
A single independent batch matvec (GDN projections of one input).
Fields§
§idx: usize§rows: usize§cols: usize§row_scale: &'a [f32]§xs: Vec<f32>Auto Trait Implementations§
impl<'a> Freeze for BatchJob<'a>
impl<'a> RefUnwindSafe for BatchJob<'a>
impl<'a> Send for BatchJob<'a>
impl<'a> Sync for BatchJob<'a>
impl<'a> Unpin for BatchJob<'a>
impl<'a> UnsafeUnpin for BatchJob<'a>
impl<'a> UnwindSafe for BatchJob<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more