Struct blas_array2::util::blas_traits::BLASSymm

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

Struct marker for symmetric matrix

Trait Implementations§

source§

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

source§

impl SBMVFunc<f32, BLASSymm<f32>> for BLASFunc
where f32: BLASFloat,

source§

impl SBMVFunc<f64, BLASSymm<f64>> for BLASFunc
where f64: BLASFloat,

source§

impl SPMVFunc<f32, BLASSymm<f32>> for BLASFunc
where f32: BLASFloat,

source§

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

source§

impl SPMVFunc<f64, BLASSymm<f64>> for BLASFunc
where f64: BLASFloat,

source§

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

source§

impl SPRFunc<f32, BLASSymm<f32>> for BLASFunc
where f32: BLASFloat,

source§

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

source§

impl SPRFunc<f64, BLASSymm<f64>> for BLASFunc
where f64: BLASFloat,

source§

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

source§

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

source§

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

source§

impl SYMMFunc<f32, BLASSymm<f32>> for BLASFunc

source§

impl SYMMFunc<f64, BLASSymm<f64>> for BLASFunc

source§

impl SYMVFunc<f32, BLASSymm<f32>> for BLASFunc
where f32: BLASFloat,

source§

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

source§

impl SYMVFunc<f64, BLASSymm<f64>> for BLASFunc
where f64: BLASFloat,

source§

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

source§

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

source§

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

source§

impl SYR2KFunc<f32, BLASSymm<f32>> for BLASFunc

source§

impl SYR2KFunc<f64, BLASSymm<f64>> for BLASFunc

source§

impl SYRFunc<f32, BLASSymm<f32>> for BLASFunc
where f32: BLASFloat,

source§

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

source§

impl SYRFunc<f64, BLASSymm<f64>> for BLASFunc
where f64: BLASFloat,

source§

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

source§

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

source§

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

source§

impl SYRKFunc<f32, BLASSymm<f32>> for BLASFunc

source§

impl SYRKFunc<f64, BLASSymm<f64>> for BLASFunc

Auto Trait Implementations§

§

impl<F> Freeze for BLASSymm<F>

§

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

§

impl<F> Send for BLASSymm<F>

§

impl<F> Sync for BLASSymm<F>

§

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

§

impl<F> UnwindSafe for BLASSymm<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.