// RLX — versatile ML compiler + runtime.
// Copyright (C) 2026 Eugene Hauptmann, Nataliya Kosmyna.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 3.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//! Re-exports of the cortexm weight blob, plus a tiny helper to read
//! per-channel `(M0, shift)` tables from the `*_MULT: &[f32]` slices.
//!
//! The cortexm `model_weights.rs` is the source of truth: re-running the
//! trainer regenerates it, and this crate picks up the new blob on the
//! next build. We don't re-quantize anything here — the i8 weights / i32
//! biases / f32 multipliers are all reused as-is — but the f32 mults
//! get split into `(M0, shift)` *once*, in `model::tinyconv_mnist_from_cortexm`,
//! before either Verilog emission or the Rust reference path runs.
pub use ;