-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
[mono][interp] Add vectorization for Vector4 #87822
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
Tagging subscribers to this area: @BrzVlad, @kotlarmilos Issue DetailsAnd other vector of float improvements.
|
vargaz
approved these changes
Jun 20, 2023
This was referenced Jun 20, 2023
BrzVlad
force-pushed
the
feature-interp-vector4
branch
from
June 22, 2023 14:19
5d1b462
to
0de18b8
Compare
BrzVlad
force-pushed
the
feature-interp-vector4
branch
from
June 26, 2023 10:49
0de18b8
to
0325364
Compare
This was referenced Jun 26, 2023
BrzVlad
force-pushed
the
feature-interp-vector4
branch
2 times, most recently
from
July 5, 2023 06:28
ce989eb
to
ca4a6c5
Compare
Which is pretty much Vector<float>
The constructors receive each element as an argument. This is the same as `Vector128.Create` so we reuse that code. This ends up generating a MINT_SIMD_V128_I*_CREATE opcode which receives each element value as an argument.
Since it is common to instantiate Vector4 with constant values, add also support for tracking R4 values during optimizations. If all elements are constant, we generate instead a single MINT_SIMD_V128_LDC, which has the entire vector value embedded in the instruction stream.
It is not marked as simd type if the generic param is not valid (ex not primitive type). Future checks are not expecting this scenario and can potentially crash.
BrzVlad
force-pushed
the
feature-interp-vector4
branch
from
July 5, 2023 06:51
ca4a6c5
to
941827d
Compare
This was referenced Jul 10, 2023
This was referenced Jul 12, 2023
Closed
ghost
locked as resolved and limited conversation to collaborators
Aug 4, 2023
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
And other vector of float improvements.