[][src]Trait rust_blas::matrix::ops::Gemm

pub trait Gemm: Sized {
    fn gemm(
        alpha: &Self,
        at: Transpose,
        a: &dyn Matrix<Self>,
        bt: Transpose,
        b: &dyn Matrix<Self>,
        beta: &Self,
        c: &mut dyn Matrix<Self>
    ); }

Required methods

fn gemm(
    alpha: &Self,
    at: Transpose,
    a: &dyn Matrix<Self>,
    bt: Transpose,
    b: &dyn Matrix<Self>,
    beta: &Self,
    c: &mut dyn Matrix<Self>
)

Loading content...

Implementations on Foreign Types

impl Gemm for f32[src]

impl Gemm for f64[src]

impl Gemm for Complex32[src]

impl Gemm for Complex64[src]

Loading content...

Implementors

Loading content...