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