Skip to content

Simplify implementation for par_for_each_module #99963

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

Merged
merged 2 commits into from
Aug 23, 2022

Conversation

cjgillot
Copy link
Contributor

No description provided.

@rustbot rustbot added the T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. label Jul 30, 2022
@rust-highfive
Copy link
Contributor

r? @estebank

(rust-highfive has picked a reviewer for you, use r? to override)

@rust-highfive rust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Jul 30, 2022
@cjgillot
Copy link
Contributor Author

Re-rolling the dice.
r? compiler

@compiler-errors
Copy link
Member

I wonder what the perf implication of those #[inline] is.

@bors try @rust-timer queue

@rust-timer
Copy link
Collaborator

Awaiting bors try build completion.

@rustbot label: +S-waiting-on-perf

@rustbot rustbot added the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Aug 22, 2022
@compiler-errors
Copy link
Member

r=me when perf comes back regardless

@bors
Copy link
Collaborator

bors commented Aug 22, 2022

⌛ Trying commit 4c5ec30 with merge 1c692bbc3244d70a8f720cb486f0e89547aa99d0...

@bors
Copy link
Collaborator

bors commented Aug 22, 2022

☀️ Try build successful - checks-actions
Build commit: 1c692bbc3244d70a8f720cb486f0e89547aa99d0 (1c692bbc3244d70a8f720cb486f0e89547aa99d0)

@rust-timer
Copy link
Collaborator

Queued 1c692bbc3244d70a8f720cb486f0e89547aa99d0 with parent 0b71ffc, future comparison URL.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (1c692bbc3244d70a8f720cb486f0e89547aa99d0): comparison url.

Instruction count

  • Primary benchmarks: ❌ relevant regression found
  • Secondary benchmarks: no relevant changes found
mean1 max count2
Regressions ❌
(primary)
1.0% 1.0% 1
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) 1.0% 1.0% 1

Max RSS (memory usage)

Results
  • Primary benchmarks: no relevant changes found
  • Secondary benchmarks: mixed results
mean1 max count2
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
2.8% 2.8% 1
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-1.5% -2.0% 3
All ❌✅ (primary) - - 0

Cycles

Results
  • Primary benchmarks: ❌ relevant regression found
  • Secondary benchmarks: ❌ relevant regression found
mean1 max count2
Regressions ❌
(primary)
2.1% 2.1% 1
Regressions ❌
(secondary)
4.8% 4.8% 1
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) 2.1% 2.1% 1

If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf.

Benchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. While you can manually mark this PR as fit for rollup, we strongly recommend not doing so since this PR may lead to changes in compiler perf.

@bors rollup=never
@rustbot label: +S-waiting-on-review -S-waiting-on-perf -perf-regression

Footnotes

  1. the arithmetic mean of the percent change 2 3

  2. number of relevant changes 2 3

@rustbot rustbot removed the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Aug 22, 2022
@compiler-errors
Copy link
Member

compiler-errors commented Aug 22, 2022

That perf regression is noise I think. I've seen webrender getting +/- 1% perf changes on so many PRs. Posted about it on zulip. r=me regardless unless you think the regressions is actually real.

@cjgillot
Copy link
Contributor Author

@bors r=compiler-errors

@bors
Copy link
Collaborator

bors commented Aug 22, 2022

📌 Commit 4c5ec30 has been approved by compiler-errors

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Aug 22, 2022
@bors
Copy link
Collaborator

bors commented Aug 22, 2022

⌛ Testing commit 4c5ec30 with merge 8818b00...

@bors
Copy link
Collaborator

bors commented Aug 23, 2022

☀️ Test successful - checks-actions
Approved by: compiler-errors
Pushing 8818b00 to master...

@bors bors added the merged-by-bors This PR was explicitly merged by bors. label Aug 23, 2022
@bors bors merged commit 8818b00 into rust-lang:master Aug 23, 2022
@rustbot rustbot added this to the 1.65.0 milestone Aug 23, 2022
@rust-timer
Copy link
Collaborator

Finished benchmarking commit (8818b00): comparison URL.

Overall result: no relevant changes - no action needed

@rustbot label: -perf-regression

Instruction count

This benchmark run did not return any relevant results for this metric.

Max RSS (memory usage)

Results

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.

mean1 range count2
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
1.9% [1.9%, 1.9%] 1
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) - - 0

Cycles

Results

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.

mean1 range count2
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-2.1% [-2.1%, -2.1%] 2
All ❌✅ (primary) - - 0

Footnotes

  1. the arithmetic mean of the percent change 2

  2. number of relevant changes 2

@cjgillot cjgillot deleted the iter-submodule branch August 23, 2022 06:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
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-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants