Therk

Trait Therk 

Source
pub trait Therk: Scalar + Tsyrk {
    // Required method
    unsafe fn herk(
        layout: Layout,
        uplo: Part,
        trans: Transpose,
        n: i32,
        k: i32,
        alpha: Self::Real,
        a: &[Self],
        lda: i32,
        beta: Self::Real,
        c: &mut [Self],
        ldc: i32,
    );
}

Required Methods§

Source

unsafe fn herk( layout: Layout, uplo: Part, trans: Transpose, n: i32, k: i32, alpha: Self::Real, a: &[Self], lda: i32, beta: Self::Real, c: &mut [Self], ldc: i32, )

Hermitian rank k update For real scalars, herk casts Transpose::Conjugate into Transpose::Ordinary and is completely equivalent to syrk

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Therk for f32

Source§

unsafe fn herk( layout: Layout, uplo: Part, trans: Transpose, n: i32, k: i32, alpha: Self::Real, a: &[Self], lda: i32, beta: Self::Real, c: &mut [Self], ldc: i32, )

Source§

impl Therk for f64

Source§

unsafe fn herk( layout: Layout, uplo: Part, trans: Transpose, n: i32, k: i32, alpha: Self::Real, a: &[Self], lda: i32, beta: Self::Real, c: &mut [Self], ldc: i32, )

Implementors§