pub struct Sygvdx<T> {
pub eig_type: EigenType,
pub mode: EigenMode,
pub fill_mode: FillMode,
pub selection: EigenSelection<T>,
pub n: usize,
pub leading_dimension_a: usize,
pub leading_dimension_b: usize,
}Fields§
§eig_type: EigenType§mode: EigenMode§fill_mode: FillMode§selection: EigenSelection<T>§n: usize§leading_dimension_a: usize§leading_dimension_b: usizeImplementations§
Source§impl Sygvdx<f32>
impl Sygvdx<f32>
pub fn workspace_size_f32( self, ctx: &Context, input: SygvInput<'_, f32, f32>, ) -> Result<(usize, usize)>
pub fn execute_f32( self, ctx: &Context, bindings: SygvBindings<'_, f32, f32>, ) -> Result<usize>
pub fn workspace_size_complex_f32( self, ctx: &Context, input: SygvInput<'_, Complex32, f32>, ) -> Result<(usize, usize)>
pub fn execute_complex_f32( self, ctx: &Context, bindings: SygvBindings<'_, Complex32, f32>, ) -> Result<usize>
Source§impl Sygvdx<f64>
impl Sygvdx<f64>
pub fn workspace_size_f64( self, ctx: &Context, input: SygvInput<'_, f64, f64>, ) -> Result<(usize, usize)>
pub fn execute_f64( self, ctx: &Context, bindings: SygvBindings<'_, f64, f64>, ) -> Result<usize>
pub fn workspace_size_complex_f64( self, ctx: &Context, input: SygvInput<'_, Complex64, f64>, ) -> Result<(usize, usize)>
pub fn execute_complex_f64( self, ctx: &Context, bindings: SygvBindings<'_, Complex64, f64>, ) -> Result<usize>
Trait Implementations§
impl<T: Copy> Copy for Sygvdx<T>
impl<T: PartialEq> StructuralPartialEq for Sygvdx<T>
Auto Trait Implementations§
impl<T> Freeze for Sygvdx<T>where
T: Freeze,
impl<T> RefUnwindSafe for Sygvdx<T>where
T: RefUnwindSafe,
impl<T> Send for Sygvdx<T>where
T: Send,
impl<T> Sync for Sygvdx<T>where
T: Sync,
impl<T> Unpin for Sygvdx<T>where
T: Unpin,
impl<T> UnsafeUnpin for Sygvdx<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for Sygvdx<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