pub struct Sytrd<T> { /* private fields */ }Expand description
Typed symmetric or Hermitian tridiagonal reduction operation.
Implementations§
Source§impl<T> Sytrd<T>where
T: SytrdScalar,
impl<T> Sytrd<T>where
T: SytrdScalar,
Sourcepub fn workspace_len(
&self,
ctx: &Context,
a: MatrixRef<'_, T>,
diagonal: VectorRef<'_, T::Real>,
off_diagonal: VectorRef<'_, T::Real>,
tau: VectorRef<'_, T>,
) -> Result<usize>
pub fn workspace_len( &self, ctx: &Context, a: MatrixRef<'_, T>, diagonal: VectorRef<'_, T::Real>, off_diagonal: VectorRef<'_, T::Real>, tau: VectorRef<'_, T>, ) -> Result<usize>
Returns the required legacy workspace length in elements.
§Errors
Returns an error if inputs are invalid or if cuSOLVER cannot report the workspace length.
Trait Implementations§
impl<T: Copy> Copy for Sytrd<T>
impl<T: Eq> Eq for Sytrd<T>
impl<T: PartialEq> StructuralPartialEq for Sytrd<T>
Auto Trait Implementations§
impl<T> Freeze for Sytrd<T>
impl<T> RefUnwindSafe for Sytrd<T>where
T: RefUnwindSafe,
impl<T> Send for Sytrd<T>where
T: Send,
impl<T> Sync for Sytrd<T>where
T: Sync,
impl<T> Unpin for Sytrd<T>where
T: Unpin,
impl<T> UnsafeUnpin for Sytrd<T>
impl<T> UnwindSafe for Sytrd<T>where
T: UnwindSafe,
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