[][src]Trait lapack_traits::blas::Tgemm

pub trait Tgemm: ComplexField {
    unsafe fn gemm(
        layout: Layout,
        transa: Transpose,
        transb: Transpose,
        m: i32,
        n: i32,
        k: i32,
        alpha: Self,
        a: &[Self],
        lda: i32,
        b: &[Self],
        ldb: i32,
        beta: Self,
        c: &mut [Self],
        ldc: i32
    ); }

Required methods

unsafe fn gemm(
    layout: Layout,
    transa: Transpose,
    transb: Transpose,
    m: i32,
    n: i32,
    k: i32,
    alpha: Self,
    a: &[Self],
    lda: i32,
    b: &[Self],
    ldb: i32,
    beta: Self,
    c: &mut [Self],
    ldc: i32
)

Loading content...

Implementations on Foreign Types

impl Tgemm for f32[src]

impl Tgemm for f64[src]

Loading content...

Implementors

impl Tgemm for c32[src]

impl Tgemm for c64[src]

Loading content...