pub struct GeqrfArgs<'a, TA, TTau = TA> {
pub a: MatrixMut<'a, TA>,
pub tau: VectorMut<'a, TTau>,
pub workspace: ByteWorkspaceMut<'a>,
pub dev_info: &'a mut DeviceMemory<i32>,
}Expand description
Runtime buffers for Geqrf::run.
Fields§
§a: MatrixMut<'a, TA>§tau: VectorMut<'a, TTau>§workspace: ByteWorkspaceMut<'a>§dev_info: &'a mut DeviceMemory<i32>Implementations§
Source§impl<'a, TA, TTau> GeqrfArgs<'a, TA, TTau>
impl<'a, TA, TTau> GeqrfArgs<'a, TA, TTau>
Sourcepub const fn new(
a: MatrixMut<'a, TA>,
tau: VectorMut<'a, TTau>,
workspace: ByteWorkspaceMut<'a>,
dev_info: &'a mut DeviceMemory<i32>,
) -> Self
pub const fn new( a: MatrixMut<'a, TA>, tau: VectorMut<'a, TTau>, workspace: ByteWorkspaceMut<'a>, dev_info: &'a mut DeviceMemory<i32>, ) -> Self
Groups the matrix, tau vector, workspace, and info buffer.
Trait Implementations§
Auto Trait Implementations§
impl<'a, TA, TTau = TA> !UnwindSafe for GeqrfArgs<'a, TA, TTau>
impl<'a, TA, TTau> Freeze for GeqrfArgs<'a, TA, TTau>
impl<'a, TA, TTau> RefUnwindSafe for GeqrfArgs<'a, TA, TTau>where
TA: RefUnwindSafe,
TTau: RefUnwindSafe,
impl<'a, TA, TTau> Send for GeqrfArgs<'a, TA, TTau>
impl<'a, TA, TTau> Sync for GeqrfArgs<'a, TA, TTau>
impl<'a, TA, TTau> Unpin for GeqrfArgs<'a, TA, TTau>
impl<'a, TA, TTau> UnsafeUnpin for GeqrfArgs<'a, TA, TTau>
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