pub struct SpMvOp {
pub csr: CsrMatrix,
pub x: GpuRef<f32>,
pub y: GpuRef<f32>,
pub alpha: f32,
pub beta: f32,
}Expand description
Capture-mode op for SparseMsg::SpMv.
Fields§
§csr: CsrMatrix§x: GpuRef<f32>§y: GpuRef<f32>§alpha: f32§beta: f32Trait Implementations§
Auto Trait Implementations§
impl Freeze for SpMvOp
impl !RefUnwindSafe for SpMvOp
impl Send for SpMvOp
impl Sync for SpMvOp
impl Unpin for SpMvOp
impl UnsafeUnpin for SpMvOp
impl !UnwindSafe for SpMvOp
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