1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! Weight module index for f16, f32, q4, and q8 weights, with f32 weight re-exports.
pub
// Re-export from f32_weights (the primary/base weight types)
pub use *;
/// Bench-only, `bench-internals`-gated access to the production
/// scalar f16/bf16 decoders in [`half_bits`] (lattice#799): `f16_convert_bench`
/// previously carried its own copied scalar decoder instead of calling the
/// migrated production path, so its Criterion numbers said nothing about
/// this crate's actual conversion call sites. This module keeps the crate's
/// default public API unchanged — outside
/// `bench-internals` builds, `half_bits`'s functions stay `pub(crate)`,
/// reachable only from this crate's own load/quantization call sites, the
/// same visibility discipline `forward::metal_qwen35::bench_support` uses
/// for its own bench-only surface.