pub struct PotrsArgs<'a, T> {
pub factor: MatrixRef<'a, T>,
pub rhs: MatrixMut<'a, T>,
pub dev_info: &'a mut DeviceMemory<i32>,
}Expand description
Runtime buffers for Potrs::run.
Fields§
§factor: MatrixRef<'a, T>§rhs: MatrixMut<'a, T>§dev_info: &'a mut DeviceMemory<i32>Implementations§
Source§impl<'a, T> PotrsArgs<'a, T>
impl<'a, T> PotrsArgs<'a, T>
Sourcepub const fn new(
factor: MatrixRef<'a, T>,
rhs: MatrixMut<'a, T>,
dev_info: &'a mut DeviceMemory<i32>,
) -> Self
pub const fn new( factor: MatrixRef<'a, T>, rhs: MatrixMut<'a, T>, dev_info: &'a mut DeviceMemory<i32>, ) -> Self
Groups the factorized matrix, right-hand sides, and info buffer needed by Potrs::run.
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> !UnwindSafe for PotrsArgs<'a, T>
impl<'a, T> Freeze for PotrsArgs<'a, T>
impl<'a, T> RefUnwindSafe for PotrsArgs<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for PotrsArgs<'a, T>
impl<'a, T> Sync for PotrsArgs<'a, T>where
T: Sync,
impl<'a, T> Unpin for PotrsArgs<'a, T>
impl<'a, T> UnsafeUnpin for PotrsArgs<'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