//! BLAS (Basic Linear Algebra Subprograms) operations.
//!
//! Re-exports from OxiBLAS for SciRS2 POLICY compliance.
// Re-export BLAS Level 1 operations (vector-vector)
pub use ;
// Re-export BLAS Level 2 operations (matrix-vector)
pub use ;
// Re-export BLAS Level 3 operations (matrix-matrix)
pub use ;
// Re-export matrix norms
pub use ;
// NOTE: OxiBLAS handles parallelism internally via the "parallel" feature
// No separate _par versions are needed