You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(perturbation-sim): correct SIMD labels — AVX-512 (v4) yes, AMX no
The ndarray-simd Walsh-Hadamard path uses AVX-512 under x86-64-v4 — NOT AMX.
AMX is int8/bf16 tile-GEMM (ndarray::hpc::amx_matmul); this crate's WHT is f32
and its field tier f64, neither of which maps to AMX tiles. Corrected the loose
'AVX-512/AMX' wording in Cargo.toml/README/METHODS §10; noted the int8 AMX path
(matmul_i8_to_i32) as a possible-but-unwired future option.
Copy file name to clipboardExpand all lines: crates/perturbation-sim/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ method:
15
15
|**Data-shaped scoping**| run on today's data; `assess_capability` gates which outputs are valid; missing variables modeled as uniform constants (provably free for relative results); `AgeModel` = Uniform null vs DensityProxy Gegenhypothese (topology-only) vs ModernizationSpend (official planning data). |`model.rs`|
16
16
17
17
> **SIMD:** the Morton/Walsh pyramid transform optionally routes through
18
-
> `ndarray::simd::wht_f32` (AVX-512/AMX) via `--features ndarray-simd`
18
+
> `ndarray::simd::wht_f32` (AVX-512 under x86-64-v4; AMX not used — f32 WHT, not int8 tile-GEMM) via `--features ndarray-simd`
19
19
> (`RUSTFLAGS='-C target-cpu=x86-64-v4'`); default is the zero-dep scalar path.
20
20
> All SIMD comes from `ndarray::simd` (workspace rule). See `METHODS.md §10`.
0 commit comments