diff options
| author | Sam Nystrom <sam@samnystrom.dev> | 2024-03-07 21:47:56 -0500 |
|---|---|---|
| committer | Sam Nystrom <sam@samnystrom.dev> | 2024-03-07 21:47:56 -0500 |
| commit | 1db01eaf7f1a0e06abe689c55f746518598d5f4c (patch) | |
| tree | 7e1056da01130d6c1cbc6d9fbf4ec58910eb9184 /src/wasm.ts | |
| parent | f193348ec5086619a4ffe4c08ebd7ef2dcc901b3 (diff) | |
Begin vectorizing the Math node
Diffstat (limited to 'src/wasm.ts')
| -rw-r--r-- | src/wasm.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wasm.ts b/src/wasm.ts index 3a308b2..311a088 100644 --- a/src/wasm.ts +++ b/src/wasm.ts @@ -2,8 +2,9 @@ import { instantiate } from '../build/out.js'; import url from '../build/out.wasm'; export const { memory, + mathS, mathV, mathSS, mathSV, mathVS, mathVV, linspace, intersperse, dft, fft, -} = await instantiate(await WebAssembly.compileStreaming(fetch(url)));
\ No newline at end of file +} = await instantiate(await WebAssembly.compileStreaming(fetch(url)), {});
\ No newline at end of file |
