slatec 0.1.0

Safe Rust interface to selected SLATEC numerical routines
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Slice-based safe wrappers for selected real BLAS Level 3 routines.
//!
//! Matrix multiplication lives in precision-specific modules so a call does
//! not pull the rest of Level 3 merely through a broad generated wrapper.

mod dgemm;
#[allow(dead_code)]
mod legacy;
mod sgemm;

pub use dgemm::{dgemm, dgemm_contiguous};
pub use legacy::{dsyrk, dtrmm, dtrsm, ssyrk, strmm, strsm};
pub use sgemm::{sgemm, sgemm_contiguous};