@seantalts/stanli 0.9.4 → 0.9.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
- package/stanli-compiler.js +4821 -4782
- package/stanli.js +1 -1
- package/stanli.wasm +0 -0
package/README.md
CHANGED
|
@@ -31,9 +31,9 @@ parameters, and generated quantities (RNG draws stream from `seed`).
|
|
|
31
31
|
The heavy work runs in a worker the package owns, so the page never
|
|
32
32
|
blocks; calls queue and run one at a time.
|
|
33
33
|
|
|
34
|
-
The preferred compiler, `stanli-compiler.js`, is 2,
|
|
35
|
-
|
|
36
|
-
the package also contains stock `stancjs.bc.js` (2,
|
|
34
|
+
The preferred compiler, `stanli-compiler.js`, is 2,988,001 bytes raw and
|
|
35
|
+
424,607 bytes gzipped in the current measured build. For one rollback cycle
|
|
36
|
+
the package also contains stock `stancjs.bc.js` (2,966,778 bytes raw, 417,857
|
|
37
37
|
bytes gzipped). The worker loads the stock compiler only if the portable
|
|
38
38
|
compiler is unavailable; its O1 legacy MIR remains accepted by the runtime.
|
|
39
39
|
Carrying both temporarily doubles the compiler portion of the installed and
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seantalts/stanli",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.6",
|
|
4
4
|
"description": "Full Stan in the browser: stanc3 compiles the model in JS, a WASM runtime lowers it to an op graph and runs NUTS. No server, no C++ toolchain.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.mjs",
|