Tsyrk

Trait Tsyrk 

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

Required Methods§

Source

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

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 Tsyrk for f32

Source§

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

Source§

impl Tsyrk for f64

Source§

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

Implementors§