-
Notifications
You must be signed in to change notification settings - Fork 301
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
Refactor wasmi_core
float types: F32
, F64
#1394
Merged
Merged
Conversation
This file contains 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
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1394 +/- ##
==========================================
- Coverage 70.43% 70.43% -0.01%
==========================================
Files 156 156
Lines 14438 14396 -42
==========================================
- Hits 10170 10140 -30
+ Misses 4268 4256 -12 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
For a long time these types didn't know what role they wanted to play.
On the one hand they are meant to be a simple conversion type between
u32
andf32
to craft float types that can easily be compared on a bit-wise level. On the other hand they provided a more or less functioning math API. It was never really clear (not even to me) whether one shall use them where possible or avoid them where possible.With this PR we make all of this clear.
F32
andF64
are just conversion types.f32
orf64
type.f32
andf64
where possible.wasmi::Val
enum.wasmi::Val
usage they should be avoided.float.rs
to avoid the confusion with NaN canonicalization since those types have nothing to do with it.