pub struct SpMmOp {
pub csr: CsrMatrix,
pub b: GpuRef<f32>,
pub c: GpuRef<f32>,
pub b_cols: i64,
pub ldb: i64,
pub ldc: i64,
pub alpha: f32,
pub beta: f32,
}Expand description
Capture-mode op for SparseMsg::SpMm.
Fields§
§csr: CsrMatrix§b: GpuRef<f32>§c: GpuRef<f32>§b_cols: i64§ldb: i64§ldc: i64§alpha: f32§beta: f32Trait Implementations§
Auto Trait Implementations§
impl Freeze for SpMmOp
impl !RefUnwindSafe for SpMmOp
impl Send for SpMmOp
impl Sync for SpMmOp
impl Unpin for SpMmOp
impl UnsafeUnpin for SpMmOp
impl !UnwindSafe for SpMmOp
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