pub struct GEMM_<'a, 'b, 'c, F>where
F: GEMMNum,{
pub a: ArrayView2<'a, F>,
pub b: ArrayView2<'b, F>,
pub c: Option<ArrayViewMut2<'c, F>>,
pub alpha: F,
pub beta: F,
pub transa: BLASTranspose,
pub transb: BLASTranspose,
pub layout: Option<BLASLayout>,
}
Fields§
§a: ArrayView2<'a, F>
§b: ArrayView2<'b, F>
§c: Option<ArrayViewMut2<'c, F>>
§alpha: F
§beta: F
§transa: BLASTranspose
§transb: BLASTranspose
§layout: Option<BLASLayout>
Trait Implementations§
Auto Trait Implementations§
impl<'a, 'b, 'c, F> Freeze for GEMM_<'a, 'b, 'c, F>where
F: Freeze,
impl<'a, 'b, 'c, F> RefUnwindSafe for GEMM_<'a, 'b, 'c, F>where
F: RefUnwindSafe,
impl<'a, 'b, 'c, F> Send for GEMM_<'a, 'b, 'c, F>
impl<'a, 'b, 'c, F> Sync for GEMM_<'a, 'b, 'c, F>where
F: Sync,
impl<'a, 'b, 'c, F> Unpin for GEMM_<'a, 'b, 'c, F>where
F: Unpin,
impl<'a, 'b, 'c, F> !UnwindSafe for GEMM_<'a, 'b, 'c, 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