pub struct GetrfArgs<'a, T> {
pub a: MatrixMut<'a, T>,
pub pivots: Option<&'a mut DeviceMemory<i64>>,
pub workspace: ByteWorkspaceMut<'a>,
pub dev_info: &'a mut DeviceMemory<i32>,
}Expand description
Runtime buffers for Getrf::run.
Fields§
§a: MatrixMut<'a, T>§pivots: Option<&'a mut DeviceMemory<i64>>§workspace: ByteWorkspaceMut<'a>§dev_info: &'a mut DeviceMemory<i32>Implementations§
Source§impl<'a, T> GetrfArgs<'a, T>
impl<'a, T> GetrfArgs<'a, T>
Sourcepub const fn new(
a: MatrixMut<'a, T>,
pivots: Option<&'a mut DeviceMemory<i64>>,
workspace: ByteWorkspaceMut<'a>,
dev_info: &'a mut DeviceMemory<i32>,
) -> Self
pub const fn new( a: MatrixMut<'a, T>, pivots: Option<&'a mut DeviceMemory<i64>>, workspace: ByteWorkspaceMut<'a>, dev_info: &'a mut DeviceMemory<i32>, ) -> Self
Groups the matrix, optional pivot buffer, workspace, and info buffer.
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> !UnwindSafe for GetrfArgs<'a, T>
impl<'a, T> Freeze for GetrfArgs<'a, T>
impl<'a, T> RefUnwindSafe for GetrfArgs<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for GetrfArgs<'a, T>where
T: Send,
impl<'a, T> Sync for GetrfArgs<'a, T>where
T: Sync,
impl<'a, T> Unpin for GetrfArgs<'a, T>
impl<'a, T> UnsafeUnpin for GetrfArgs<'a, T>
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