Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/simd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -648,6 +648,12 @@ pub use crate::simd_half::BF16x16;
// K-means + L2 distance

pub use crate::hpc::cam_pq::{kmeans, squared_l2};
// Real BLAS Level 3 GEMM (and its siblings syrk/symm/trmm/trsm) surfaced here so a
// consumer reaches the native-SIMD-dispatching matmul through the canonical
// `ndarray::simd::*` import instead of dipping into `crate::hpc::blas_level3` directly
// (the W1a consumer invariant — "all SIMD from `ndarray::simd`").
pub use crate::hpc::blas_level2::Uplo;
pub use crate::hpc::blas_level3::{BlasLevel3, Side};
Comment thread
AdaWorldAPI marked this conversation as resolved.
Comment thread
AdaWorldAPI marked this conversation as resolved.

// SIMD cosine

Expand Down
Loading