-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Subtree update cg_gcc 2025/04/25 #140295
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
Subtree update cg_gcc 2025/04/25 #140295
Conversation
…update_cg_gcc_2025-04-18
…affleLapkin simd intrinsics with mask: accept unsigned integer masks, and fix some of the errors It's not clear at all why the mask would have to be signed, it is anyway interpreted bitwise. The backend should just make sure that works no matter the surface-level type; our LLVM backend already does this correctly. The note of "the mask may be widened, which only has the correct behavior for signed integers" explains... nothing? Why can't the code do the widening correctly? If necessary, just cast to the signed type first... Also while we are at it, fix the errors. For simd_masked_load/store, the errors talked about the "third argument" but they meant the first argument (the mask is the first argument there). They also used the wrong type for `expected_element`. I have extremely low confidence in the GCC part of this PR. See [discussion on Zulip](https://rust-lang.zulipchat.com/#narrow/channel/257879-project-portable-simd/topic/On.20the.20sign.20of.20masks)
…4_25_2 Sync from rust 2025/04/25
…update_cg_gcc_2025-04-25
Some changes occurred in compiler/rustc_codegen_gcc |
@bors r+ rollup=never p=1 |
☀️ Test successful - checks-actions |
A job failed! Check out the build log: (web) (plain) Click to see the possible cause of the failure (guessed by this bot)
And then open Job duration changes
How to interpret the job duration changes?Job durations can vary a lot, based on the actual runner instance no pull requests found for branch "master"
|
Finished benchmarking commit (555e1d0): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)Results (primary -1.3%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResults (primary -0.1%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 775.721s -> 776.189s (0.06%) |
@rust-lang/infra Is this normal to have the CI failing but still the PR getting merged? |
It's just the post-merge report that failed, the auto tests were fine. I'll take a look. |
Hmm, for some reason GH was unable to find a PR corresponding to the SHA that was merged. I'll keep a watch on this in case it repeats. |
r? GuillaumeGomez