numrs2 0.3.3

A Rust implementation inspired by NumPy for numerical computing (NumRS2)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! High-performance numerical algorithms
//!
//! This module contains optimized implementations of numerical algorithms
//! with special attention to cache efficiency, memory layout, and SIMD utilization.

pub mod cache_aware;

// Re-export main types and functions
pub use cache_aware::{
    BandwidthEstimate, BandwidthOptimizer, CacheAwareArrayOps, CacheAwareConvolution,
    CacheAwareFFT, MemoryOperation,
};