pub struct GBMV_<'a, 'x, 'y, F>where
F: GBMVNum,{
pub a: ArrayView2<'a, F>,
pub x: ArrayView1<'x, F>,
pub m: usize,
pub kl: usize,
pub y: Option<ArrayViewMut1<'y, F>>,
pub alpha: F,
pub beta: F,
pub trans: BLASTranspose,
pub layout: Option<BLASLayout>,
}
Fields§
§a: ArrayView2<'a, F>
§x: ArrayView1<'x, F>
§m: usize
§kl: usize
§y: Option<ArrayViewMut1<'y, F>>
§alpha: F
§beta: F
§trans: BLASTranspose
§layout: Option<BLASLayout>
Trait Implementations§
Auto Trait Implementations§
impl<'a, 'x, 'y, F> Freeze for GBMV_<'a, 'x, 'y, F>where
F: Freeze,
impl<'a, 'x, 'y, F> RefUnwindSafe for GBMV_<'a, 'x, 'y, F>where
F: RefUnwindSafe,
impl<'a, 'x, 'y, F> Send for GBMV_<'a, 'x, 'y, F>
impl<'a, 'x, 'y, F> Sync for GBMV_<'a, 'x, 'y, F>where
F: Sync,
impl<'a, 'x, 'y, F> Unpin for GBMV_<'a, 'x, 'y, F>where
F: Unpin,
impl<'a, 'x, 'y, F> !UnwindSafe for GBMV_<'a, 'x, 'y, F>
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