-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
[simd] Simplify SIMD.reduce_op
functions
#3083
Open
soraros
wants to merge
1
commit into
modular:main
Choose a base branch
from
soraros:simplify-simd-reduce
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
+50
−58
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
soraros
force-pushed
the
simplify-simd-reduce
branch
from
June 20, 2024 00:38
2f1efe7
to
33ff9e2
Compare
JoeLoser
approved these changes
Jun 20, 2024
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.
Nice cleanup!
!sync |
modularbot
added
the
imported-internally
Signals that a given pull request has been imported internally.
label
Jun 20, 2024
This is hitting some compiler errors internally that we'll need to look into FYI |
soraros
force-pushed
the
simplify-simd-reduce
branch
from
July 11, 2024 20:04
33ff9e2
to
28c723d
Compare
soraros
force-pushed
the
simplify-simd-reduce
branch
from
July 30, 2024 21:18
28c723d
to
963d261
Compare
soraros
force-pushed
the
simplify-simd-reduce
branch
2 times, most recently
from
August 25, 2024 02:32
9f6bd52
to
3130ff5
Compare
JoeLoser
force-pushed
the
simplify-simd-reduce
branch
from
August 26, 2024 17:12
3130ff5
to
461a82a
Compare
!sync |
- Introduced a new `reduce` overload for non-capturing functions - Simplify `SIMD.reduce_op` functions using `SIMD.op` methods directly Signed-off-by: Yiwu Chen <[email protected]>
JoeLoser
force-pushed
the
simplify-simd-reduce
branch
from
August 26, 2024 18:55
461a82a
to
1c0d993
Compare
!sync |
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.
reduce
since it's doesn't have to be generic overtype
reduce
overload for non-capturing functionsSIMD.reduce_op
functions usingSIMD.op
methods directly