Enable threads, multi-memory, and relaxed-simd by default#7285
Merged
alexcrichton merged 2 commits intoOct 18, 2023
Merged
Conversation
This commit enables by default three proposals that were advanced to stage 4 in the proposal process at last week's in-person CG meeting. These proposals are: * `threads` - atomic instructions and shared memory * `multi-memory` - the ability to have more than one linear memory * `relaxed-simd` - new simd instructions that may differ across platforms These proposals are now all enabled by default in Wasmtime. Note that they can still be selectively disabled via `Config` options.
pchickey
approved these changes
Oct 18, 2023
kpreisser
added a commit
to kpreisser/wasmtime-dotnet
that referenced
this pull request
Oct 20, 2023
Since that change, threads, multi-memory, and relaxed-simd are enabled by default.
peterhuene
pushed a commit
to bytecodealliance/wasmtime-dotnet
that referenced
this pull request
Oct 23, 2023
#280) Since that change, threads, multi-memory, and relaxed-simd are enabled by default.
CryZe
added a commit
to CryZe/website
that referenced
this pull request
Nov 30, 2023
https://github.com/bytecodealliance/wasmtime/releases/tag/v15.0.0 > The WebAssembly threads, multi-memory, and relaxed-simd proposals are now enabled by default. > bytecodealliance/wasmtime#7285
dschuff
pushed a commit
to WebAssembly/website
that referenced
this pull request
Nov 30, 2023
https://github.com/bytecodealliance/wasmtime/releases/tag/v15.0.0 > The WebAssembly threads, multi-memory, and relaxed-simd proposals are now enabled by default. > bytecodealliance/wasmtime#7285 I wasn't sure whether to specify the version as "15" or "15.0" (or even "15.0.0"). It seems to be inconsistent in the table. I used 15, as wasmtime's releases are similar to a browser where on a fixed schedule they bump the major version and bugfixes are done as patch versions (minor versions aren't used).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This commit enables by default three proposals that were advanced to stage 4 in the proposal process at last week's in-person CG meeting. These proposals are:
threads- atomic instructions and shared memorymulti-memory- the ability to have more than one linear memoryrelaxed-simd- new simd instructions that may differ across platformsThese proposals are now all enabled by default in Wasmtime. Note that they can still be selectively disabled via
Configoptions.