diff options
| author | Sam Nystrom <sam@samnystrom.dev> | 2024-03-07 07:07:42 +0000 |
|---|---|---|
| committer | Sam Nystrom <15555332-SamNystrom1@users.noreply.replit.com> | 2024-03-07 07:07:42 +0000 |
| commit | f193348ec5086619a4ffe4c08ebd7ef2dcc901b3 (patch) | |
| tree | bace31cf98a9f73b7ea85f4e8c681ab1b1c1f46d /asconfig.json | |
| parent | 18c4c7e82e309e868e4e1e47460c5b3a0600847e (diff) | |
Vectorize linspace and intersperse implementations
linspace is 4 times faster and intersperse is 12-13 times faster.
Diffstat (limited to 'asconfig.json')
| -rw-r--r-- | asconfig.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/asconfig.json b/asconfig.json index d530acf..999b96a 100644 --- a/asconfig.json +++ b/asconfig.json @@ -9,7 +9,7 @@ "release": { "outFile": "build/out.wasm", "textFile": "build/out.wat", - "sourceMap": true, + "sourceMap": false, "optimizeLevel": 3, "shrinkLevel": 0, "converge": false, @@ -17,6 +17,7 @@ } }, "options": { - "bindings": "raw" + "bindings": "raw", + "enable": ["simd"] } }
\ No newline at end of file |
