BlasOps

Trait BlasOps 

Source
pub trait BlasOps {
    // Required method
    fn matmul(&self, other: &Self, trans_a: bool, trans_b: bool) -> Self;
}

Required Methods§

Source

fn matmul(&self, other: &Self, trans_a: bool, trans_b: bool) -> Self

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.

Implementors§