crates/burn-flex/ACKNOWLEDGMENTS.md
burn-flex draws on ideas and techniques from several open-source projects.
ndarray - N-dimensional array library for Rust.
sum_f32 implementation in simd/kernels.rs uses
ndarray's unrolled_fold pattern, where eight independent accumulators allow LLVM to emit optimal
SIMD code without explicit intrinsic dispatch.Candle - Minimalist ML framework by Hugging Face.
gemm and macerator, part of the faer ecosystem.