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