/** * Tests for the Float64Array MPS backend. * * The Float64Array layout replaces Complex[][][] (which allocates a new heap * object for every arithmetic result) with a single contiguous typed array. * Benefits: zero per-operation GC allocations, cache-friendly sequential access, * and V8 JIT type-specialization on unboxed f64 elements. * * Design philosophy: every test targets a specific failure mode. * "Would this test catch a real bug?" is the bar for inclusion. * Tests are grouped by the class of bug they catch, not by feature. */ export {}; //# sourceMappingURL=mps.test.d.ts.map