[][src]Trait mathru::algebra::abstr::Blas

pub trait Blas: Sized {
    fn xgemm(
        transa: u8,
        transb: u8,
        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

fn xgemm(
    transa: u8,
    transb: u8,
    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 Blas for f32[src]

impl Blas for f64[src]

Loading content...

Implementors

impl<T> Blas for Complex<T>[src]

Loading content...