-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
simd_reduce_min/max: remove float support #155189
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
Open
RalfJung
wants to merge
1
commit into
rust-lang:main
Choose a base branch
from
RalfJung:reduce-minmax-float
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
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -520,7 +520,7 @@ pub unsafe fn simd_reduce_mul_unordered<T, U>(x: T) -> U; | |
|
|
||
| /// Checks if all mask values are true. | ||
| /// | ||
| /// `T` must be a vector of integer primitive types. | ||
| /// `T` must be a vector of integers. | ||
| /// | ||
| /// # Safety | ||
| /// `x` must contain only `0` or `!0`. | ||
|
|
@@ -530,7 +530,7 @@ pub const unsafe fn simd_reduce_all<T>(x: T) -> bool; | |
|
|
||
| /// Checks if any mask value is true. | ||
| /// | ||
| /// `T` must be a vector of integer primitive types. | ||
| /// `T` must be a vector of integers. | ||
| /// | ||
| /// # Safety | ||
| /// `x` must contain only `0` or `!0`. | ||
|
|
@@ -540,29 +540,25 @@ pub const unsafe fn simd_reduce_any<T>(x: T) -> bool; | |
|
|
||
| /// Returns the maximum element of a vector. | ||
| /// | ||
| /// `T` must be a vector of integers or floats. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This comment below still have /// For floating-point values, uses IEEE-754 `maxNum`.`
which maybe need to be removed? there are several similar places. |
||
| /// `T` must be a vector of integers. | ||
| /// | ||
| /// `U` must be the element type of `T`. | ||
| /// | ||
| /// For floating-point values, uses IEEE-754 `maxNum`. | ||
| #[rustc_intrinsic] | ||
| #[rustc_nounwind] | ||
| pub const unsafe fn simd_reduce_max<T, U>(x: T) -> U; | ||
|
|
||
| /// Returns the minimum element of a vector. | ||
| /// | ||
| /// `T` must be a vector of integers or floats. | ||
| /// `T` must be a vector of integers. | ||
| /// | ||
| /// `U` must be the element type of `T`. | ||
| /// | ||
| /// For floating-point values, uses IEEE-754 `minNum`. | ||
| #[rustc_intrinsic] | ||
| #[rustc_nounwind] | ||
| pub const unsafe fn simd_reduce_min<T, U>(x: T) -> U; | ||
|
|
||
| /// Logical "and"s all elements together. | ||
| /// | ||
| /// `T` must be a vector of integers or floats. | ||
| /// `T` must be a vector of integers. | ||
| /// | ||
| /// `U` must be the element type of `T`. | ||
| #[rustc_intrinsic] | ||
|
|
@@ -571,7 +567,7 @@ pub const unsafe fn simd_reduce_and<T, U>(x: T) -> U; | |
|
|
||
| /// Logical "ors" all elements together. | ||
| /// | ||
| /// `T` must be a vector of integers or floats. | ||
| /// `T` must be a vector of integers. | ||
| /// | ||
| /// `U` must be the element type of `T`. | ||
| #[rustc_intrinsic] | ||
|
|
@@ -580,7 +576,7 @@ pub const unsafe fn simd_reduce_or<T, U>(x: T) -> U; | |
|
|
||
| /// Logical "exclusive ors" all elements together. | ||
| /// | ||
| /// `T` must be a vector of integers or floats. | ||
| /// `T` must be a vector of integers. | ||
| /// | ||
| /// `U` must be the element type of `T`. | ||
| #[rustc_intrinsic] | ||
|
|
||
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
I removed the GCC code because it seems completely wrong under any conceivable semantics. For an input of
[0.0, NaN, 1.0, 2.0]this would return1.0!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.
Thank you. T_T