blob: 3a308b2efca7e0195e6b873d70a28dc836ecd102 (
plain)
1
2
3
4
5
6
7
8
9
|
import { instantiate } from '../build/out.js';
import url from '../build/out.wasm';
export const {
memory,
linspace,
intersperse,
dft,
fft,
} = await instantiate(await WebAssembly.compileStreaming(fetch(url)));
|