Struct blas_array2::util::blas_traits::BLASHermi

source ·
pub struct BLASHermi<F>
where F: BLASFloat,
{ /* private fields */ }
Expand description

Struct marker for hermitian matrix

Trait Implementations§

source§

impl<F> BLASSymmetric for BLASHermi<F>
where F: BLASFloat,

source§

impl SBMVFunc<Complex<f32>, BLASHermi<Complex<f32>>> for BLASFunc
where c32: BLASFloat,

source§

impl SBMVFunc<Complex<f64>, BLASHermi<Complex<f64>>> for BLASFunc
where c64: BLASFloat,

source§

impl SPMVFunc<Complex<f32>, BLASHermi<Complex<f32>>> for BLASFunc
where c32: BLASFloat,

source§

unsafe fn spmv( uplo: *const c_char, n: *const c_int, alpha: *const c32, ap: *const c32, x: *const c32, incx: *const c_int, beta: *const c32, y: *mut c32, incy: *const c_int, )

source§

impl SPMVFunc<Complex<f64>, BLASHermi<Complex<f64>>> for BLASFunc
where c64: BLASFloat,

source§

unsafe fn spmv( uplo: *const c_char, n: *const c_int, alpha: *const c64, ap: *const c64, x: *const c64, incx: *const c_int, beta: *const c64, y: *mut c64, incy: *const c_int, )

source§

impl SPRFunc<Complex<f32>, BLASHermi<Complex<f32>>> for BLASFunc
where c32: BLASFloat,

source§

unsafe fn spr( uplo: *const c_char, n: *const c_int, alpha: *const c32, x: *const c32, incx: *const c_int, ap: *mut c32, )

source§

impl SPRFunc<Complex<f64>, BLASHermi<Complex<f64>>> for BLASFunc
where c64: BLASFloat,

source§

unsafe fn spr( uplo: *const c_char, n: *const c_int, alpha: *const c64, x: *const c64, incx: *const c_int, ap: *mut c64, )

source§

impl SYMMFunc<Complex<f32>, BLASHermi<Complex<f32>>> for BLASFunc

source§

impl SYMMFunc<Complex<f64>, BLASHermi<Complex<f64>>> for BLASFunc

source§

impl SYMVFunc<Complex<f32>, BLASHermi<Complex<f32>>> for BLASFunc
where c32: BLASFloat,

source§

unsafe fn hemv( uplo: *const c_char, n: *const c_int, alpha: *const c32, a: *const c32, lda: *const c_int, x: *const c32, incx: *const c_int, beta: *const c32, y: *mut c32, incy: *const c_int, )

source§

impl SYMVFunc<Complex<f64>, BLASHermi<Complex<f64>>> for BLASFunc
where c64: BLASFloat,

source§

unsafe fn hemv( uplo: *const c_char, n: *const c_int, alpha: *const c64, a: *const c64, lda: *const c_int, x: *const c64, incx: *const c_int, beta: *const c64, y: *mut c64, incy: *const c_int, )

source§

impl SYR2KFunc<Complex<f32>, BLASHermi<Complex<f32>>> for BLASFunc

source§

impl SYR2KFunc<Complex<f64>, BLASHermi<Complex<f64>>> for BLASFunc

source§

impl SYRFunc<Complex<f32>, BLASHermi<Complex<f32>>> for BLASFunc
where c32: BLASFloat,

source§

unsafe fn syr( uplo: *const c_char, n: *const c_int, alpha: *const c32, x: *const c32, incx: *const c_int, a: *mut c32, lda: *const c_int, )

source§

impl SYRFunc<Complex<f64>, BLASHermi<Complex<f64>>> for BLASFunc
where c64: BLASFloat,

source§

unsafe fn syr( uplo: *const c_char, n: *const c_int, alpha: *const c64, x: *const c64, incx: *const c_int, a: *mut c64, lda: *const c_int, )

source§

impl SYRKFunc<Complex<f32>, BLASHermi<Complex<f32>>> for BLASFunc

source§

impl SYRKFunc<Complex<f64>, BLASHermi<Complex<f64>>> for BLASFunc

Auto Trait Implementations§

§

impl<F> Freeze for BLASHermi<F>

§

impl<F> RefUnwindSafe for BLASHermi<F>
where F: RefUnwindSafe,

§

impl<F> Send for BLASHermi<F>

§

impl<F> Sync for BLASHermi<F>

§

impl<F> Unpin for BLASHermi<F>
where F: Unpin,

§

impl<F> UnwindSafe for BLASHermi<F>
where F: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.