-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Update stdarch submodule #117372
Merged
Merged
Update stdarch submodule #117372
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
(rustbot has picked a reviewer for you, use r? to override) |
|
rustbot
added
S-waiting-on-review
Status: Awaiting review from the assignee but also interested parties.
T-libs
Relevant to the library team, which will review and decide on the PR/issue.
labels
Oct 29, 2023
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Amanieu
force-pushed
the
stdarch_update
branch
from
October 29, 2023 23:50
df77ee2
to
f245f4d
Compare
This comment has been minimized.
This comment has been minimized.
Amanieu
force-pushed
the
stdarch_update
branch
from
October 29, 2023 23:56
f245f4d
to
9a4c962
Compare
This comment has been minimized.
This comment has been minimized.
Amanieu
force-pushed
the
stdarch_update
branch
from
October 31, 2023 22:11
9a4c962
to
4172de1
Compare
This comment has been minimized.
This comment has been minimized.
The Miri subtree was changed cc @rust-lang/miri |
This comment has been minimized.
This comment has been minimized.
Amanieu
force-pushed
the
stdarch_update
branch
from
October 31, 2023 23:55
598a1e5
to
edabf95
Compare
This comment has been minimized.
This comment has been minimized.
Amanieu
added a commit
to Amanieu/aHash
that referenced
this pull request
Nov 1, 2023
This is blocking rust-lang/rust#117372, which replaces `stdsimd` with more fine-grained features. However the auto-detection in aHash breaks when bootstrapping Rust because it detects the `stdsimd` feature on the old toolchain which is not present on the newly build libcore. This PR removes the build-time detection of the `stdsimd` feature and instead just uses the ARM AES intrinsics directly since they are now stable, but only on AArch64.
Amanieu
force-pushed
the
stdarch_update
branch
from
November 2, 2023 06:59
edabf95
to
a46fb3c
Compare
This comment has been minimized.
This comment has been minimized.
Mark-Simulacrum
added
S-waiting-on-author
Status: This is awaiting some action (such as code changes or more information) from the author.
and removed
S-waiting-on-review
Status: Awaiting review from the assignee but also interested parties.
labels
Nov 4, 2023
tkaitchuck
pushed a commit
to tkaitchuck/aHash
that referenced
this pull request
Nov 10, 2023
* Remove build-time check for `stdsimd` feature This is blocking rust-lang/rust#117372, which replaces `stdsimd` with more fine-grained features. However the auto-detection in aHash breaks when bootstrapping Rust because it detects the `stdsimd` feature on the old toolchain which is not present on the newly build libcore. This PR removes the build-time detection of the `stdsimd` feature and instead just uses the ARM AES intrinsics directly since they are now stable, but only on AArch64. * Add nightly-arm-aes Cargo feature
AHash just released a new version, so this should be unblocked now. |
Amanieu
force-pushed
the
stdarch_update
branch
from
January 2, 2024 18:42
a46fb3c
to
40d1a05
Compare
This was referenced Feb 6, 2024
vadorovsky
added a commit
to Lightprotocol/light-protocol
that referenced
this pull request
Feb 6, 2024
The newest Rust nightly removed the `stdsimd` feature in favor of more grained features (rust-lang/rust#117372). However, the version of `ahash` we depend on, still requires that feature. New release of `ahash` (0.8.7) contains a fix, but we can't upgrade to it without upgrading Anchor. Pinning Rust nightly seems to be the less intrusive solution for now.
vadorovsky
added a commit
to Lightprotocol/light-protocol
that referenced
this pull request
Feb 6, 2024
The newest Rust nightly removed the `stdsimd` feature in favor of more grained features (rust-lang/rust#117372). However, the version of `ahash` we depend on, still requires that feature. New release of `ahash` (0.8.7) contains a fix, but we can't upgrade to it without upgrading Anchor. Pinning Rust nightly seems to be the less intrusive solution for now.
ananas-block
pushed a commit
to Lightprotocol/light-protocol
that referenced
this pull request
Feb 6, 2024
The newest Rust nightly removed the `stdsimd` feature in favor of more grained features (rust-lang/rust#117372). However, the version of `ahash` we depend on, still requires that feature. New release of `ahash` (0.8.7) contains a fix, but we can't upgrade to it without upgrading Anchor. Pinning Rust nightly seems to be the less intrusive solution for now.
IceTDrinker
added a commit
to IceTDrinker/pulp
that referenced
this pull request
Feb 8, 2024
sarah-quinones
pushed a commit
to sarah-quinones/pulp
that referenced
this pull request
Feb 8, 2024
…ly (#6) * use newly introduced stdarch features for avx512 to compiler on nightly see rust-lang/rust#117372 * bump version to 0.18.7
2 tasks
This was referenced Feb 16, 2024
paultag
added a commit
to KittyCAD/modeling-app
that referenced
this pull request
Feb 22, 2024
Specifically, i'm hitting tkaitchuck/aHash#200 ahash FTBFS because of rust-lang/rust#117372 which is fixed in 0.8.7. This rolls us forward which should fix future builds.
paultag
added a commit
to KittyCAD/modeling-app
that referenced
this pull request
Feb 22, 2024
Specifically, i'm hitting tkaitchuck/aHash#200 ahash FTBFS because of rust-lang/rust#117372 which is fixed in 0.8.7. This rolls us forward which should fix future builds.
waywardmonkeys
added a commit
to waywardmonkeys/wgpu
that referenced
this pull request
Feb 26, 2024
Rust has removed the `stdsimd` feature: rust-lang/rust#117372 This broke `ahash` for versions prior to `0.8.7`: tkaitchuck/aHash#183
6 tasks
stupendoussuperpowers
pushed a commit
to stupendoussuperpowers/cargo
that referenced
this pull request
Feb 28, 2024
Previous versions use the `stdsimd` nightly feature if it detects that it is available (on a nightly toolchain). This will stop working once rust-lang/rust#117372 is merged.
Closed
1 task
bjorn3
pushed a commit
to bjorn3/rust
that referenced
this pull request
Mar 8, 2024
…acrum Update stdarch submodule Splits up rust-lang#27731 into multiple tracking issues. Closes rust-lang#27731
vadorovsky
added a commit
to vadorovsky/light-protocol
that referenced
this pull request
May 1, 2024
The newest Rust nightly removed the `stdsimd` feature in favor of more grained features (rust-lang/rust#117372). However, the version of `ahash` we depend on, still requires that feature. New release of `ahash` (0.8.7) contains a fix, but we can't upgrade to it without upgrading Anchor. Pinning Rust nightly seems to be the less intrusive solution for now.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-testsuite
Area: The testsuite used to check the correctness of rustc
merged-by-bors
This PR was explicitly merged by bors.
S-waiting-on-bors
Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
T-bootstrap
Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
T-libs
Relevant to the library team, which will review and decide on the PR/issue.
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.
Splits up #27731 into multiple tracking issues.
Closes #27731