-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expose new c-api functions for configuring relaxed SIMD #6292
Expose new c-api functions for configuring relaxed SIMD #6292
Conversation
- wasmtime_config_wasm_relaxed_simd_set(bool) - wasmtime_config_wasm_relaxed_simd_deterministic_set(bool)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Can you also add C header API definitions for these new functions?
Subscribe to Label Actioncc @peterhuene
This issue or pull request has been labeled: "wasmtime:api", "wasmtime:c-api", "wasmtime:config"
Thus the following users have been cc'd because of the following labels:
To subscribe or unsubscribe from this label, edit the |
Label Messager: wasmtime:configIt looks like you are changing Wasmtime's configuration options. Make sure to
To modify this label's message, edit the To add new label messages or remove existing label messages, edit the |
I don't think the suggestions by the github-actions bot apply here, since I'm just exposing a config option that already existed? |
…iance#6292) * Exposes new c-api functions for configuring relaxed SIMD: - wasmtime_config_wasm_relaxed_simd_set(bool) - wasmtime_config_wasm_relaxed_simd_deterministic_set(bool) * Applied rustfmt suggestion * Added header file entries for new calls * Fixed link to `relaxed simd proposal`
This allows the new relaxed SIMD features (introduced in #5892) to be configured through the C API:
Added: