pub struct GesvdpBindings<'a, TA, TS, TU, TV> {
pub a: MatrixMut<'a, TA>,
pub singular_values: &'a mut DeviceMemory<TS>,
pub left_vectors: Option<MatrixMut<'a, TU>>,
pub right_vectors: Option<MatrixMut<'a, TV>>,
pub workspace: ByteWorkspaceMut<'a>,
pub dev_info: &'a mut DeviceMemory<i32>,
pub residual: Option<&'a mut f64>,
}Fields§
§a: MatrixMut<'a, TA>§singular_values: &'a mut DeviceMemory<TS>§left_vectors: Option<MatrixMut<'a, TU>>§right_vectors: Option<MatrixMut<'a, TV>>§workspace: ByteWorkspaceMut<'a>§dev_info: &'a mut DeviceMemory<i32>§residual: Option<&'a mut f64>Trait Implementations§
Auto Trait Implementations§
impl<'a, TA, TS, TU, TV> !UnwindSafe for GesvdpBindings<'a, TA, TS, TU, TV>
impl<'a, TA, TS, TU, TV> Freeze for GesvdpBindings<'a, TA, TS, TU, TV>
impl<'a, TA, TS, TU, TV> RefUnwindSafe for GesvdpBindings<'a, TA, TS, TU, TV>
impl<'a, TA, TS, TU, TV> Send for GesvdpBindings<'a, TA, TS, TU, TV>
impl<'a, TA, TS, TU, TV> Sync for GesvdpBindings<'a, TA, TS, TU, TV>
impl<'a, TA, TS, TU, TV> Unpin for GesvdpBindings<'a, TA, TS, TU, TV>
impl<'a, TA, TS, TU, TV> UnsafeUnpin for GesvdpBindings<'a, TA, TS, TU, TV>
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