pub struct GebrdArgs<'a, T>where
T: GebrdScalar,{
pub a: MatrixMut<'a, T>,
pub diagonal: VectorMut<'a, T::Real>,
pub off_diagonal: VectorMut<'a, T::Real>,
pub tau_q: VectorMut<'a, T>,
pub tau_p: VectorMut<'a, T>,
pub workspace: &'a mut DeviceMemory<T>,
pub dev_info: &'a mut DeviceMemory<i32>,
}Expand description
Runtime buffers for Gebrd::run.
Fields§
§a: MatrixMut<'a, T>§diagonal: VectorMut<'a, T::Real>§off_diagonal: VectorMut<'a, T::Real>§tau_q: VectorMut<'a, T>§tau_p: VectorMut<'a, T>§workspace: &'a mut DeviceMemory<T>§dev_info: &'a mut DeviceMemory<i32>Implementations§
Source§impl<'a, T> GebrdArgs<'a, T>where
T: GebrdScalar,
impl<'a, T> GebrdArgs<'a, T>where
T: GebrdScalar,
Sourcepub const fn new(
a: MatrixMut<'a, T>,
diagonal: VectorMut<'a, T::Real>,
off_diagonal: VectorMut<'a, T::Real>,
tau_q: VectorMut<'a, T>,
tau_p: VectorMut<'a, T>,
workspace: &'a mut DeviceMemory<T>,
dev_info: &'a mut DeviceMemory<i32>,
) -> Self
pub const fn new( a: MatrixMut<'a, T>, diagonal: VectorMut<'a, T::Real>, off_diagonal: VectorMut<'a, T::Real>, tau_q: VectorMut<'a, T>, tau_p: VectorMut<'a, T>, workspace: &'a mut DeviceMemory<T>, dev_info: &'a mut DeviceMemory<i32>, ) -> Self
Groups the matrix, bidiagonal outputs, reflectors, workspace, and info buffer.
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> !UnwindSafe for GebrdArgs<'a, T>
impl<'a, T> Freeze for GebrdArgs<'a, T>
impl<'a, T> RefUnwindSafe for GebrdArgs<'a, T>where
T: RefUnwindSafe,
<T as Sealed>::Real: RefUnwindSafe,
impl<'a, T> Send for GebrdArgs<'a, T>
impl<'a, T> Sync for GebrdArgs<'a, T>
impl<'a, T> Unpin for GebrdArgs<'a, T>
impl<'a, T> UnsafeUnpin for GebrdArgs<'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