diff options
author | Alon Zakai <azakai@google.com> | 2023-06-01 07:15:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-01 07:15:33 -0700 |
commit | 876dbb0eff0544799a8ea2b8e8ae27c285520446 (patch) | |
tree | df358eed7eaa00900bf8a816a63755e7bc389172 | |
parent | 3b0b011b36797388a379da85b11e55830906cf0d (diff) | |
download | binaryen-876dbb0eff0544799a8ea2b8e8ae27c285520446.tar.gz binaryen-876dbb0eff0544799a8ea2b8e8ae27c285520446.tar.bz2 binaryen-876dbb0eff0544799a8ea2b8e8ae27c285520446.zip |
Mention determinism in README.md (#5747)
-rw-r--r-- | README.md | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -228,6 +228,8 @@ This repository contains code that builds the following tools in `bin/`: for wasm. * **binaryen.js**: A standalone JavaScript library that exposes Binaryen methods for [creating and optimizing Wasm modules](https://github.com/WebAssembly/binaryen/blob/main/test/binaryen.js/hello-world.js). For builds, see [binaryen.js on npm](https://www.npmjs.com/package/binaryen) (or download it directly from [github](https://raw.githubusercontent.com/AssemblyScript/binaryen.js/master/index.js), [rawgit](https://cdn.rawgit.com/AssemblyScript/binaryen.js/master/index.js), or [unpkg](https://unpkg.com/binaryen@latest/index.js)). Minimal requirements: Node.js v15.8 or Chrome v75 or Firefox v78. +All of the Binaryen tools are deterministic, that is, given the same inputs you should always get the same outputs. (If you see a case that behaves otherwise, please file an issue.) + Usage instructions for each are below. ## Binaryen Optimizations |