/** * Pure TypeScript fallback kernels for WASM compute functions. * * These produce bit-identical results (within float precision) to the * Rust WASM kernels. When WASM is unavailable, these are used automatically. * * @module */ import type { WASMKernels } from './wasm-dispatch.js'; /** * Pure-JS implementation of the {@link WASMKernels} contract. * * Selected automatically by {@link WASMDispatch} when the Rust compute crate * cannot be instantiated (e.g. missing `WebAssembly`, CSP restrictions, or * startup failure). Produces results bit-identical to the WASM build within * IEEE-754 precision limits. */ export declare const fallbackKernels: WASMKernels; //# sourceMappingURL=wasm-fallback.d.ts.map