Skip to content
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

Shard AllocMap Lock #136115

Merged
merged 1 commit into from
Feb 5, 2025
Merged

Shard AllocMap Lock #136115

merged 1 commit into from
Feb 5, 2025

Conversation

Mark-Simulacrum
Copy link
Member

This improves performance on many-seed parallel (-Zthreads=32) miri executions from managing to use ~8 cores to using 27-28 cores, which is about the same as what I see with the data structure proposed in #136105 - I haven't analyzed but I suspect the sharding might actually work out better if we commonly insert "densely" since sharding would split the cache lines and the OnceVec packs locks close together. Of course, we could do something similar with the bitset lock too.

Either way, this seems like a very reasonable starting point that solves the problem ~equally well on what I can test locally.

r? @RalfJung

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Jan 27, 2025
@rustbot
Copy link
Collaborator

rustbot commented Jan 27, 2025

Some changes occurred to the CTFE / Miri interpreter

cc @rust-lang/miri, @rust-lang/wg-const-eval

@Mark-Simulacrum
Copy link
Member Author

@bors try @rust-timer queue

@rust-timer

This comment has been minimized.

@rustbot rustbot added the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Jan 27, 2025
bors added a commit to rust-lang-ci/rust that referenced this pull request Jan 27, 2025
Shard AllocMap Lock

This improves performance on many-seed parallel (-Zthreads=32) miri executions from managing to use ~8 cores to using 27-28 cores, which is about the same as what I see with the data structure proposed in rust-lang#136105 - I haven't analyzed but I suspect the sharding might actually work out better if we commonly insert "densely" since sharding would split the cache lines and the OnceVec packs locks close together. Of course, we could do something similar with the bitset lock too.

Either way, this seems like a very reasonable starting point that solves the problem ~equally well on what I can test locally.

r? `@RalfJung`
@bors
Copy link
Contributor

bors commented Jan 27, 2025

⌛ Trying commit b2bff4f with merge e402369...

@bors
Copy link
Contributor

bors commented Jan 27, 2025

☀️ Try build successful - checks-actions
Build commit: e402369 (e4023695dcabc9a5f89d120c866679e546717831)

@rust-timer

This comment has been minimized.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (e402369): comparison URL.

Overall result: ❌ regressions - no action needed

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-perf -perf-regression

Instruction count

This is the most reliable metric that we have; it was used to determine the overall result at the top of this comment. However, even this metric can sometimes exhibit noise.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
0.2% [0.2%, 0.3%] 5
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) - - 0

Max RSS (memory usage)

Results (primary -2.0%, secondary 2.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.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
2.1% [2.1%, 2.1%] 1
Improvements ✅
(primary)
-2.0% [-2.9%, -1.0%] 2
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) -2.0% [-2.9%, -1.0%] 2

Cycles

Results (primary 2.6%)

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.

mean range count
Regressions ❌
(primary)
2.6% [2.6%, 2.6%] 1
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) 2.6% [2.6%, 2.6%] 1

Binary size

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

Bootstrap: 772.928s -> 772.728s (-0.03%)
Artifact size: 328.22 MiB -> 328.21 MiB (-0.00%)

@rustbot rustbot removed the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Jan 27, 2025
@Mark-Simulacrum
Copy link
Member Author

Perf results look neutral enough that I'm okay moving forward given the non-perf measured gains for parallel executions.

@rustbot label: perf-regression-triaged

@rustbot rustbot added the perf-regression-triaged The performance regression has been triaged. label Jan 27, 2025
@@ -389,35 +391,37 @@ pub const CTFE_ALLOC_SALT: usize = 0;

pub(crate) struct AllocMap<'tcx> {
/// Maps `AllocId`s to their corresponding allocations.
alloc_map: FxHashMap<AllocId, GlobalAlloc<'tcx>>,
// Note that this map on rustc workloads seems to be rather dense. In #136105 we considered
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// Note that this map on rustc workloads seems to be rather dense. In #136105 we considered
// Note that this map on rustc workloads seems to be rather dense, but
// in Miri workloads it is expected to be quite sparse. In #136105 we considered

@RalfJung
Copy link
Member

Now that #136166 landed, I wonder how much we get from just making the next ID counter atomic and leaving the alloc_map unchanged?

(Though the change here is fairly non-invasive so I am entirely fine landing it anyway.)

Also, since there are comments above
@rustbot author

@rustbot rustbot 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 Jan 31, 2025
@Mark-Simulacrum
Copy link
Member Author

Now that #136166 landed, I wonder how much we get from just making the next ID counter atomic and leaving the alloc_map unchanged?

I didn't check just the counter, but based on profiling that change makes relatively minimal impact on at least this benchmark to concurrency (it might speed up each execution). This change is still necessary to yield the ~30 CPUs being active vs. ~9.

Updated for the comments I think.

@rustbot review

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels Jan 31, 2025
@RalfJung
Copy link
Member

When changing a PR, please either add new commits or do a force-push that leaves the base commit unchanged... right now I think it is impossible for me to view the diff of your PR since my previous review. (This is mostly Github's fault of course for being a pretty terrible code review tool, but the best we can do is work around its deficiencies.)

Copy link
Member

@RalfJung RalfJung left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, I only now noticed the change around the assert!.
@rustbot author

alloc_map.alloc_map.insert(id, alloc_salt.0.clone());
alloc_map.dedup.insert(alloc_salt, id);
// We just reserved, so should always be unique.
assert!(
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I find code that has side-effects inside assertions pretty hard to follow. Is there a good way to avoid that?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I pulled the assert out to a separate line - does that help?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that's better, thanks!

Looking at the API, we have try_insert. It's still unstable but might be worth it? Then it can be a single line.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not a fan of adding unstable API usage given that we don't care about the semantic here (try_insert is useful primarily in that it leaves the entry untouched, rather than overwriting it).

@rustbot rustbot 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 Jan 31, 2025
@bors
Copy link
Contributor

bors commented Feb 1, 2025

⌛ Testing commit 9bdf536 with merge c7893de...

bors added a commit to rust-lang-ci/rust that referenced this pull request Feb 1, 2025
…lfJung

Shard AllocMap Lock

This improves performance on many-seed parallel (-Zthreads=32) miri executions from managing to use ~8 cores to using 27-28 cores, which is about the same as what I see with the data structure proposed in rust-lang#136105 - I haven't analyzed but I suspect the sharding might actually work out better if we commonly insert "densely" since sharding would split the cache lines and the OnceVec packs locks close together. Of course, we could do something similar with the bitset lock too.

Either way, this seems like a very reasonable starting point that solves the problem ~equally well on what I can test locally.

r? `@RalfJung`
@rust-log-analyzer

This comment has been minimized.

@bors
Copy link
Contributor

bors commented Feb 1, 2025

💔 Test failed - checks-actions

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Feb 1, 2025
This improves performance on many-seed parallel (-Zthreads=32) miri
executions from managing to use ~8 cores to using 27-28 cores. That's
pretty reasonable scaling for the simplicity of this solution.
@Mark-Simulacrum
Copy link
Member Author

@bors r=RalfJung

Replaced std AtomicU64 with rustc_data_structures AtomicU64 since that works on platforms that don't have 64-bit atomics (e.g., the powerpc failure here).

@bors
Copy link
Contributor

bors commented Feb 2, 2025

📌 Commit 7f1231c has been approved by RalfJung

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 Feb 2, 2025
bors added a commit to rust-lang-ci/rust that referenced this pull request Feb 2, 2025
…lfJung

Shard AllocMap Lock

This improves performance on many-seed parallel (-Zthreads=32) miri executions from managing to use ~8 cores to using 27-28 cores, which is about the same as what I see with the data structure proposed in rust-lang#136105 - I haven't analyzed but I suspect the sharding might actually work out better if we commonly insert "densely" since sharding would split the cache lines and the OnceVec packs locks close together. Of course, we could do something similar with the bitset lock too.

Either way, this seems like a very reasonable starting point that solves the problem ~equally well on what I can test locally.

r? `@RalfJung`
@bors
Copy link
Contributor

bors commented Feb 2, 2025

⌛ Testing commit 7f1231c with merge 50da8aa...

@rust-log-analyzer
Copy link
Collaborator

The job dist-x86_64-linux-alt failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
Preparing ctfe-stress-5
[2025-02-02T02:20:49Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2025-02-02T02:20:49Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2025-02-02T02:20:49Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2025-02-02T02:20:49Z DEBUG collector::compile::execute] cd "/tmp/.tmp2g35CT" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp2g35CT#ctfe-stress-5@0.1.0" "--release" "--" "--skip-this-rustc"
[2025-02-02T02:20:49Z DEBUG collector::compile::execute] cd "/tmp/.tmp3f5lO0" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp3f5lO0#ctfe-stress-5@0.1.0" "--" "--skip-this-rustc"
[2025-02-02T02:20:49Z DEBUG collector::compile::execute] cd "/tmp/.tmpErqAXR" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpErqAXR#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2025-02-02T02:20:49Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T02:20:49Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:20:49Z DEBUG collector::compile::execute] cd "/tmp/.tmpgMVeDl" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpgMVeDl#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2025-02-02T02:20:54Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:20:54Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:20:54Z DEBUG collector::compile::execute] cd "/tmp/.tmpgMVeDl" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpgMVeDl#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpgMVeDl/incremental-state"
[2025-02-02T02:21:00Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:21:00Z DEBUG collector::compile::execute] cd "/tmp/.tmpgMVeDl" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpgMVeDl#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpgMVeDl/incremental-state"
[2025-02-02T02:21:01Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T02:21:01Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:21:01Z DEBUG collector::compile::execute] cd "/tmp/.tmpAyR3JO" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpAyR3JO#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2025-02-02T02:21:06Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:21:06Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:21:06Z DEBUG collector::compile::execute] cd "/tmp/.tmpAyR3JO" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpAyR3JO#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpAyR3JO/incremental-state"
[2025-02-02T02:21:12Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:21:12Z DEBUG collector::compile::execute] cd "/tmp/.tmpAyR3JO" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpAyR3JO#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpAyR3JO/incremental-state"
[2025-02-02T02:21:13Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T02:21:13Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:21:13Z DEBUG collector::compile::execute] cd "/tmp/.tmpGnrYyc" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpGnrYyc#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2025-02-02T02:21:17Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2025-02-02T02:22:04Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T02:22:04Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:04Z DEBUG collector::compile::execute] cd "/tmp/.tmpLfpwFg" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpLfpwFg#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2025-02-02T02:22:10Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:10Z DEBUG collector::compile::execute] cd "/tmp/.tmpLfpwFg" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpLfpwFg#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpLfpwFg/incremental-state"
[2025-02-02T02:22:17Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:17Z DEBUG collector::compile::execute] cd "/tmp/.tmpLfpwFg" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpLfpwFg#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpLfpwFg/incremental-state"
[2025-02-02T02:22:19Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpLfpwFg"
[2025-02-02T02:22:19Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2025-02-02T02:22:19Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2025-02-02T02:22:19Z DEBUG collector::compile::execute] cd "/tmp/.tmpLfpwFg" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpLfpwFg#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpLfpwFg/incremental-state"
Executing benchmark externs (5/8)
Preparing externs
[2025-02-02T02:22:21Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2025-02-02T02:22:21Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2025-02-02T02:22:34Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T02:22:34Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:34Z DEBUG collector::compile::execute] cd "/tmp/.tmpfOTUnR" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpfOTUnR#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2025-02-02T02:22:34Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:34Z DEBUG collector::compile::execute] cd "/tmp/.tmpfOTUnR" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpfOTUnR#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpfOTUnR/incremental-state"
[2025-02-02T02:22:34Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:34Z DEBUG collector::compile::execute] cd "/tmp/.tmpfOTUnR" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpfOTUnR#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpfOTUnR/incremental-state"
[2025-02-02T02:22:34Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T02:22:34Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:34Z DEBUG collector::compile::execute] cd "/tmp/.tmpxD6wK2" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpxD6wK2#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2025-02-02T02:22:35Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:35Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:35Z DEBUG collector::compile::execute] cd "/tmp/.tmpxD6wK2" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpxD6wK2#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpxD6wK2/incremental-state"
[2025-02-02T02:22:35Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:35Z DEBUG collector::compile::execute] cd "/tmp/.tmpxD6wK2" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpxD6wK2#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpxD6wK2/incremental-state"
Running token-stream-stress: Opt + [Full, IncrFull, IncrUnchanged, IncrPatched] + Llvm
[2025-02-02T02:22:35Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T02:22:35Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:35Z DEBUG collector::compile::execute] cd "/tmp/.tmptnZBAp" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmptnZBAp#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2025-02-02T02:22:35Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:35Z DEBUG collector::compile::execute] cd "/tmp/.tmptnZBAp" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmptnZBAp#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmptnZBAp/incremental-state"
[2025-02-02T02:22:36Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:36Z DEBUG collector::compile::execute] cd "/tmp/.tmptnZBAp" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmptnZBAp#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmptnZBAp/incremental-state"
Executing benchmark tuple-stress (8/8)
Preparing tuple-stress
[2025-02-02T02:22:36Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2025-02-02T02:22:36Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2025-02-02T02:22:43Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T02:22:43Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:43Z DEBUG collector::compile::execute] cd "/tmp/.tmpTcgNiR" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpTcgNiR#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2025-02-02T02:22:45Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpTcgNiR" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpTcgNiR#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpTcgNiR/incremental-state"
[2025-02-02T02:22:48Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:48Z DEBUG collector::compile::execute] cd "/tmp/.tmpTcgNiR" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpTcgNiR#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpTcgNiR/incremental-state"
[2025-02-02T02:22:49Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmpTcgNiR"
[2025-02-02T02:22:49Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2025-02-02T02:22:49Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2025-02-02T02:22:49Z DEBUG collector::compile::execute] cd "/tmp/.tmpTcgNiR" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpTcgNiR#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpTcgNiR/incremental-state"
[2025-02-02T02:22:51Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T02:22:51Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:51Z DEBUG collector::compile::execute] cd "/tmp/.tmpjj4AkN" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpjj4AkN#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2025-02-02T02:22:53Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:53Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:53Z DEBUG collector::compile::execute] cd "/tmp/.tmpjj4AkN" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpjj4AkN#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpjj4AkN/incremental-state"
[2025-02-02T02:22:55Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:22:55Z DEBUG collector::compile::execute] cd "/tmp/.tmpjj4AkN" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpjj4AkN#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpjj4AkN/incremental-state"
[2025-02-02T02:22:56Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmpjj4AkN"
[2025-02-02T02:22:56Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2025-02-02T02:22:56Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2025-02-02T02:22:56Z DEBUG collector::compile::execute] cd "/tmp/.tmpjj4AkN" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpjj4AkN#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpjj4AkN/incremental-state"
[2025-02-02T02:22:58.812Z INFO  opt_dist::training] Merging Rustc PGO profiles to /tmp/tmp-multistage/opt-artifacts/rustc-pgo.profdata
[2025-02-02T02:22:58.813Z INFO  opt_dist::exec] Executing `/checkout/obj/build/x86_64-unknown-linux-gnu/llvm/build/bin/llvm-profdata merge -o /tmp/tmp-multistage/opt-artifacts/rustc-pgo.profdata /tmp/tmp-multistage/opt-artifacts/rustc-pgo [at /checkout/obj]`
##[endgroup]
[2025-02-02T02:23:12.503Z INFO  opt_dist::training] Rustc PGO statistics
---
[2025-02-02T02:46:12Z DEBUG collector::compile::execute] cd "/tmp/.tmp8aoVNW" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp8aoVNW#ripgrep@13.0.0" "--" "--wrap-rustc-with" "Eprintln"
Running ripgrep-13.0.0: Opt + [Full] + Llvm
[2025-02-02T02:46:16Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T02:46:16Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T02:46:16Z DEBUG collector::compile::execute] cd "/tmp/.tmpCrszkb" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpCrszkb#ripgrep@13.0.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
Executing benchmark ripgrep-13.0.0-tiny (6/8)
Preparing ripgrep-13.0.0-tiny
[2025-02-02T02:46:26Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2025-02-02T02:46:26Z DEBUG collector::compile::execute] cd "/tmp/.tmpDUeGEG" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpDUeGEG#ripgrep@13.0.0" "--release" "--" "--skip-this-rustc"
---
    ..bootstrap::core::build_steps::compile::StdLink                     0.00s
    
[2025-02-02T03:11:45.716Z INFO  opt_dist::timer] Section `Stage 3 (BOLT) > Build PGO optimized LLVM` ended: OK (1400.05s)`
[2025-02-02T03:11:45.716Z INFO  opt_dist] Optimizing /checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/libLLVM.so.19.1-rust-1.86.0-nightly with BOLT
[2025-02-02T03:11:45.716Z INFO  opt_dist::utils::io] Copying file /checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/libLLVM.so.19.1-rust-1.86.0-nightly to /tmp/.tmpXP7emK
[2025-02-02T03:11:45.973Z INFO  opt_dist::exec] Executing `llvm-bolt -instrument /checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/libLLVM.so.19.1-rust-1.86.0-nightly --instrumentation-file=/tmp/.tmpihC8xi/prof.fdata --instrumentation-file-append-pid -o /tmp/.tmpnPqwrZ [at /checkout/obj]`
BOLT-INFO: Target architecture: x86_64
BOLT-INFO: BOLT version: <unknown>
BOLT-INFO: first alloc address is 0x0
BOLT-INFO: creating new program header table at address 0x7a00000, offset 0x7a00000
---
Finished benchmark syn-1.0.89 (8/8)
##[endgroup]
[2025-02-02T03:20:26.473Z INFO  opt_dist::training] Merging LLVM BOLT profiles from /tmp/.tmpihC8xi/prof.fdata to /tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata
##[group]Merging BOLT profiles
[2025-02-02T03:20:26.475Z INFO  opt_dist::exec] Executing `merge-fdata /tmp/.tmpihC8xi/prof.fdata.133456.fdata /tmp/.tmpihC8xi/prof.fdata.133467.fdata /tmp/.tmpihC8xi/prof.fdata.133468.fdata /tmp/.tmpihC8xi/prof.fdata.133471.fdata /tmp/.tmpihC8xi/prof.fdata.133472.fdata /tmp/.tmpihC8xi/prof.fdata.133477.fdata /tmp/.tmpihC8xi/prof.fdata.133478.fdata /tmp/.tmpihC8xi/prof.fdata.133490.fdata /tmp/.tmpihC8xi/prof.fdata.133491.fdata /tmp/.tmpihC8xi/prof.fdata.133492.fdata /tmp/.tmpihC8xi/prof.fdata.133494.fdata /tmp/.tmpihC8xi/prof.fdata.133496.fdata /tmp/.tmpihC8xi/prof.fdata.133497.fdata /tmp/.tmpihC8xi/prof.fdata.133498.fdata /tmp/.tmpihC8xi/prof.fdata.133500.fdata /tmp/.tmpihC8xi/prof.fdata.133504.fdata /tmp/.tmpihC8xi/prof.fdata.133505.fdata /tmp/.tmpihC8xi/prof.fdata.133506.fdata /tmp/.tmpihC8xi/prof.fdata.133508.fdata /tmp/.tmpihC8xi/prof.fdata.133509.fdata /tmp/.tmpihC8xi/prof.fdata.133510.fdata /tmp/.tmpihC8xi/prof.fdata.133513.fdata /tmp/.tmpihC8xi/prof.fdata.133516.fdata /tmp/.tmpihC8xi/prof.fdata.133517.fdata /tmp/.tmpihC8xi/prof.fdata.133518.fdata /tmp/.tmpihC8xi/prof.fdata.133659.fdata /tmp/.tmpihC8xi/prof.fdata.133664.fdata /tmp/.tmpihC8xi/prof.fdata.133665.fdata /tmp/.tmpihC8xi/prof.fdata.133667.fdata /tmp/.tmpihC8xi/prof.fdata.133679.fdata /tmp/.tmpihC8xi/prof.fdata.133703.fdata /tmp/.tmpihC8xi/prof.fdata.133711.fdata /tmp/.tmpihC8xi/prof.fdata.133712.fdata /tmp/.tmpihC8xi/prof.fdata.133732.fdata /tmp/.tmpihC8xi/prof.fdata.133736.fdata /tmp/.tmpihC8xi/prof.fdata.133740.fdata /tmp/.tmpihC8xi/prof.fdata.133751.fdata /tmp/.tmpihC8xi/prof.fdata.133752.fdata /tmp/.tmpihC8xi/prof.fdata.133762.fdata /tmp/.tmpihC8xi/prof.fdata.133770.fdata /tmp/.tmpihC8xi/prof.fdata.133774.fdata /tmp/.tmpihC8xi/prof.fdata.133775.fdata /tmp/.tmpihC8xi/prof.fdata.133779.fdata /tmp/.tmpihC8xi/prof.fdata.133787.fdata /tmp/.tmpihC8xi/prof.fdata.133789.fdata /tmp/.tmpihC8xi/prof.fdata.133795.fdata /tmp/.tmpihC8xi/prof.fdata.133807.fdata /tmp/.tmpihC8xi/prof.fdata.133812.fdata /tmp/.tmpihC8xi/prof.fdata.133829.fdata /tmp/.tmpihC8xi/prof.fdata.133833.fdata /tmp/.tmpihC8xi/prof.fdata.133838.fdata /tmp/.tmpihC8xi/prof.fdata.133843.fdata /tmp/.tmpihC8xi/prof.fdata.133861.fdata /tmp/.tmpihC8xi/prof.fdata.133896.fdata /tmp/.tmpihC8xi/prof.fdata.133908.fdata /tmp/.tmpihC8xi/prof.fdata.133925.fdata /tmp/.tmpihC8xi/prof.fdata.133935.fdata /tmp/.tmpihC8xi/prof.fdata.133947.fdata /tmp/.tmpihC8xi/prof.fdata.133948.fdata /tmp/.tmpihC8xi/prof.fdata.133972.fdata /tmp/.tmpihC8xi/prof.fdata.133979.fdata /tmp/.tmpihC8xi/prof.fdata.133989.fdata /tmp/.tmpihC8xi/prof.fdata.134000.fdata /tmp/.tmpihC8xi/prof.fdata.134008.fdata /tmp/.tmpihC8xi/prof.fdata.134015.fdata /tmp/.tmpihC8xi/prof.fdata.134022.fdata /tmp/.tmpihC8xi/prof.fdata.134031.fdata /tmp/.tmpihC8xi/prof.fdata.134046.fdata /tmp/.tmpihC8xi/prof.fdata.134054.fdata /tmp/.tmpihC8xi/prof.fdata.134066.fdata /tmp/.tmpihC8xi/prof.fdata.134085.fdata /tmp/.tmpihC8xi/prof.fdata.134090.fdata /tmp/.tmpihC8xi/prof.fdata.134097.fdata /tmp/.tmpihC8xi/prof.fdata.134109.fdata /tmp/.tmpihC8xi/prof.fdata.134125.fdata /tmp/.tmpihC8xi/prof.fdata.134142.fdata /tmp/.tmpihC8xi/prof.fdata.134158.fdata /tmp/.tmpihC8xi/prof.fdata.134177.fdata /tmp/.tmpihC8xi/prof.fdata.134191.fdata /tmp/.tmpihC8xi/prof.fdata.134215.fdata /tmp/.tmpihC8xi/prof.fdata.134230.fdata /tmp/.tmpihC8xi/prof.fdata.134234.fdata /tmp/.tmpihC8xi/prof.fdata.134239.fdata /tmp/.tmpihC8xi/prof.fdata.134250.fdata /tmp/.tmpihC8xi/prof.fdata.134253.fdata /tmp/.tmpihC8xi/prof.fdata.134266.fdata /tmp/.tmpihC8xi/prof.fdata.134277.fdata /tmp/.tmpihC8xi/prof.fdata.134280.fdata /tmp/.tmpihC8xi/prof.fdata.134303.fdata /tmp/.tmpihC8xi/prof.fdata.134310.fdata /tmp/.tmpihC8xi/prof.fdata.134317.fdata /tmp/.tmpihC8xi/prof.fdata.134325.fdata /tmp/.tmpihC8xi/prof.fdata.134347.fdata /tmp/.tmpihC8xi/prof.fdata.134364.fdata /tmp/.tmpihC8xi/prof.fdata.134393.fdata /tmp/.tmpihC8xi/prof.fdata.134398.fdata /tmp/.tmpihC8xi/prof.fdata.134407.fdata /tmp/.tmpihC8xi/prof.fdata.134410.fdata /tmp/.tmpihC8xi/prof.fdata.134435.fdata /tmp/.tmpihC8xi/prof.fdata.134462.fdata /tmp/.tmpihC8xi/prof.fdata.134467.fdata /tmp/.tmpihC8xi/prof.fdata.134472.fdata /tmp/.tmpihC8xi/prof.fdata.134483.fdata /tmp/.tmpihC8xi/prof.fdata.134522.fdata /tmp/.tmpihC8xi/prof.fdata.134539.fdata /tmp/.tmpihC8xi/prof.fdata.134550.fdata /tmp/.tmpihC8xi/prof.fdata.134559.fdata /tmp/.tmpihC8xi/prof.fdata.134561.fdata /tmp/.tmpihC8xi/prof.fdata.134567.fdata /tmp/.tmpihC8xi/prof.fdata.134571.fdata /tmp/.tmpihC8xi/prof.fdata.134593.fdata /tmp/.tmpihC8xi/prof.fdata.134607.fdata /tmp/.tmpihC8xi/prof.fdata.134616.fdata /tmp/.tmpihC8xi/prof.fdata.134621.fdata /tmp/.tmpihC8xi/prof.fdata.134629.fdata /tmp/.tmpihC8xi/prof.fdata.134645.fdata /tmp/.tmpihC8xi/prof.fdata.134654.fdata /tmp/.tmpihC8xi/prof.fdata.134659.fdata /tmp/.tmpihC8xi/prof.fdata.134672.fdata /tmp/.tmpihC8xi/prof.fdata.134676.fdata /tmp/.tmpihC8xi/prof.fdata.134682.fdata /tmp/.tmpihC8xi/prof.fdata.134684.fdata /tmp/.tmpihC8xi/prof.fdata.134703.fdata /tmp/.tmpihC8xi/prof.fdata.134717.fdata /tmp/.tmpihC8xi/prof.fdata.134732.fdata /tmp/.tmpihC8xi/prof.fdata.134748.fdata /tmp/.tmpihC8xi/prof.fdata.134768.fdata /tmp/.tmpihC8xi/prof.fdata.134775.fdata /tmp/.tmpihC8xi/prof.fdata.134779.fdata /tmp/.tmpihC8xi/prof.fdata.134789.fdata /tmp/.tmpihC8xi/prof.fdata.134796.fdata /tmp/.tmpihC8xi/prof.fdata.134808.fdata /tmp/.tmpihC8xi/prof.fdata.134819.fdata /tmp/.tmpihC8xi/prof.fdata.134833.fdata /tmp/.tmpihC8xi/prof.fdata.134840.fdata /tmp/.tmpihC8xi/prof.fdata.134848.fdata /tmp/.tmpihC8xi/prof.fdata.134872.fdata /tmp/.tmpihC8xi/prof.fdata.134876.fdata /tmp/.tmpihC8xi/prof.fdata.134902.fdata /tmp/.tmpihC8xi/prof.fdata.134932.fdata /tmp/.tmpihC8xi/prof.fdata.134946.fdata /tmp/.tmpihC8xi/prof.fdata.134959.fdata /tmp/.tmpihC8xi/prof.fdata.134969.fdata /tmp/.tmpihC8xi/prof.fdata.134987.fdata /tmp/.tmpihC8xi/prof.fdata.134997.fdata /tmp/.tmpihC8xi/prof.fdata.135002.fdata /tmp/.tmpihC8xi/prof.fdata.135008.fdata /tmp/.tmpihC8xi/prof.fdata.135014.fdata /tmp/.tmpihC8xi/prof.fdata.135016.fdata /tmp/.tmpihC8xi/prof.fdata.135024.fdata /tmp/.tmpihC8xi/prof.fdata.135030.fdata /tmp/.tmpihC8xi/prof.fdata.135059.fdata /tmp/.tmpihC8xi/prof.fdata.135065.fdata /tmp/.tmpihC8xi/prof.fdata.135068.fdata /tmp/.tmpihC8xi/prof.fdata.135076.fdata /tmp/.tmpihC8xi/prof.fdata.135083.fdata /tmp/.tmpihC8xi/prof.fdata.135104.fdata /tmp/.tmpihC8xi/prof.fdata.135116.fdata /tmp/.tmpihC8xi/prof.fdata.135148.fdata /tmp/.tmpihC8xi/prof.fdata.135156.fdata /tmp/.tmpihC8xi/prof.fdata.135171.fdata /tmp/.tmpihC8xi/prof.fdata.135187.fdata /tmp/.tmpihC8xi/prof.fdata.135215.fdata /tmp/.tmpihC8xi/prof.fdata.135230.fdata /tmp/.tmpihC8xi/prof.fdata.135242.fdata /tmp/.tmpihC8xi/prof.fdata.135247.fdata /tmp/.tmpihC8xi/prof.fdata.135269.fdata /tmp/.tmpihC8xi/prof.fdata.135276.fdata /tmp/.tmpihC8xi/prof.fdata.135278.fdata /tmp/.tmpihC8xi/prof.fdata.135283.fdata /tmp/.tmpihC8xi/prof.fdata.135298.fdata /tmp/.tmpihC8xi/prof.fdata.135308.fdata /tmp/.tmpihC8xi/prof.fdata.135317.fdata /tmp/.tmpihC8xi/prof.fdata.135322.fdata /tmp/.tmpihC8xi/prof.fdata.135328.fdata /tmp/.tmpihC8xi/prof.fdata.135389.fdata /tmp/.tmpihC8xi/prof.fdata.135417.fdata /tmp/.tmpihC8xi/prof.fdata.135424.fdata /tmp/.tmpihC8xi/prof.fdata.135446.fdata /tmp/.tmpihC8xi/prof.fdata.135458.fdata /tmp/.tmpihC8xi/prof.fdata.135473.fdata /tmp/.tmpihC8xi/prof.fdata.135484.fdata /tmp/.tmpihC8xi/prof.fdata.135529.fdata /tmp/.tmpihC8xi/prof.fdata.135543.fdata /tmp/.tmpihC8xi/prof.fdata.135563.fdata /tmp/.tmpihC8xi/prof.fdata.135574.fdata /tmp/.tmpihC8xi/prof.fdata.135601.fdata /tmp/.tmpihC8xi/prof.fdata.135622.fdata /tmp/.tmpihC8xi/prof.fdata.135627.fdata /tmp/.tmpihC8xi/prof.fdata.135643.fdata /tmp/.tmpihC8xi/prof.fdata.135653.fdata /tmp/.tmpihC8xi/prof.fdata.135657.fdata /tmp/.tmpihC8xi/prof.fdata.135664.fdata /tmp/.tmpihC8xi/prof.fdata.135686.fdata /tmp/.tmpihC8xi/prof.fdata.135692.fdata /tmp/.tmpihC8xi/prof.fdata.135712.fdata /tmp/.tmpihC8xi/prof.fdata.135720.fdata /tmp/.tmpihC8xi/prof.fdata.135725.fdata /tmp/.tmpihC8xi/prof.fdata.135749.fdata /tmp/.tmpihC8xi/prof.fdata.135765.fdata /tmp/.tmpihC8xi/prof.fdata.135783.fdata /tmp/.tmpihC8xi/prof.fdata.135808.fdata /tmp/.tmpihC8xi/prof.fdata.135838.fdata /tmp/.tmpihC8xi/prof.fdata.135842.fdata /tmp/.tmpihC8xi/prof.fdata.135866.fdata /tmp/.tmpihC8xi/prof.fdata.135877.fdata /tmp/.tmpihC8xi/prof.fdata.135890.fdata /tmp/.tmpihC8xi/prof.fdata.135909.fdata /tmp/.tmpihC8xi/prof.fdata.135913.fdata /tmp/.tmpihC8xi/prof.fdata.135924.fdata /tmp/.tmpihC8xi/prof.fdata.135936.fdata /tmp/.tmpihC8xi/prof.fdata.135938.fdata /tmp/.tmpihC8xi/prof.fdata.135956.fdata /tmp/.tmpihC8xi/prof.fdata.135960.fdata /tmp/.tmpihC8xi/prof.fdata.135962.fdata /tmp/.tmpihC8xi/prof.fdata.135976.fdata /tmp/.tmpihC8xi/prof.fdata.135984.fdata /tmp/.tmpihC8xi/prof.fdata.135998.fdata /tmp/.tmpihC8xi/prof.fdata.136005.fdata /tmp/.tmpihC8xi/prof.fdata.136013.fdata /tmp/.tmpihC8xi/prof.fdata.136036.fdata /tmp/.tmpihC8xi/prof.fdata.136038.fdata /tmp/.tmpihC8xi/prof.fdata.136048.fdata /tmp/.tmpihC8xi/prof.fdata.136063.fdata /tmp/.tmpihC8xi/prof.fdata.136079.fdata /tmp/.tmpihC8xi/prof.fdata.136086.fdata /tmp/.tmpihC8xi/prof.fdata.136088.fdata /tmp/.tmpihC8xi/prof.fdata.136094.fdata /tmp/.tmpihC8xi/prof.fdata.136100.fdata /tmp/.tmpihC8xi/prof.fdata.136109.fdata /tmp/.tmpihC8xi/prof.fdata.136134.fdata /tmp/.tmpihC8xi/prof.fdata.136142.fdata /tmp/.tmpihC8xi/prof.fdata.136163.fdata /tmp/.tmpihC8xi/prof.fdata.136169.fdata /tmp/.tmpihC8xi/prof.fdata.136170.fdata /tmp/.tmpihC8xi/prof.fdata.136176.fdata /tmp/.tmpihC8xi/prof.fdata.136189.fdata /tmp/.tmpihC8xi/prof.fdata.136196.fdata /tmp/.tmpihC8xi/prof.fdata.136201.fdata /tmp/.tmpihC8xi/prof.fdata.136225.fdata /tmp/.tmpihC8xi/prof.fdata.136240.fdata /tmp/.tmpihC8xi/prof.fdata.136256.fdata /tmp/.tmpihC8xi/prof.fdata.136258.fdata /tmp/.tmpihC8xi/prof.fdata.136275.fdata /tmp/.tmpihC8xi/prof.fdata.136279.fdata /tmp/.tmpihC8xi/prof.fdata.136284.fdata /tmp/.tmpihC8xi/prof.fdata.136301.fdata /tmp/.tmpihC8xi/prof.fdata.136326.fdata /tmp/.tmpihC8xi/prof.fdata.136328.fdata /tmp/.tmpihC8xi/prof.fdata.136332.fdata /tmp/.tmpihC8xi/prof.fdata.136349.fdata /tmp/.tmpihC8xi/prof.fdata.136352.fdata /tmp/.tmpihC8xi/prof.fdata.136362.fdata /tmp/.tmpihC8xi/prof.fdata.136367.fdata /tmp/.tmpihC8xi/prof.fdata.136385.fdata /tmp/.tmpihC8xi/prof.fdata.136389.fdata /tmp/.tmpihC8xi/prof.fdata.136401.fdata /tmp/.tmpihC8xi/prof.fdata.136406.fdata /tmp/.tmpihC8xi/prof.fdata.136425.fdata /tmp/.tmpihC8xi/prof.fdata.136426.fdata /tmp/.tmpihC8xi/prof.fdata.136429.fdata /tmp/.tmpihC8xi/prof.fdata.136436.fdata /tmp/.tmpihC8xi/prof.fdata.136450.fdata /tmp/.tmpihC8xi/prof.fdata.136454.fdata /tmp/.tmpihC8xi/prof.fdata.136456.fdata /tmp/.tmpihC8xi/prof.fdata.136473.fdata /tmp/.tmpihC8xi/prof.fdata.136478.fdata /tmp/.tmpihC8xi/prof.fdata.136488.fdata /tmp/.tmpihC8xi/prof.fdata.136495.fdata /tmp/.tmpihC8xi/prof.fdata.136497.fdata /tmp/.tmpihC8xi/prof.fdata.136500.fdata /tmp/.tmpihC8xi/prof.fdata.136502.fdata /tmp/.tmpihC8xi/prof.fdata.136503.fdata /tmp/.tmpihC8xi/prof.fdata.136533.fdata /tmp/.tmpihC8xi/prof.fdata.136534.fdata /tmp/.tmpihC8xi/prof.fdata.136543.fdata /tmp/.tmpihC8xi/prof.fdata.136547.fdata /tmp/.tmpihC8xi/prof.fdata.136551.fdata /tmp/.tmpihC8xi/prof.fdata.136560.fdata /tmp/.tmpihC8xi/prof.fdata.136585.fdata /tmp/.tmpihC8xi/prof.fdata.136595.fdata /tmp/.tmpihC8xi/prof.fdata.136603.fdata /tmp/.tmpihC8xi/prof.fdata.136612.fdata /tmp/.tmpihC8xi/prof.fdata.136616.fdata /tmp/.tmpihC8xi/prof.fdata.136623.fdata /tmp/.tmpihC8xi/prof.fdata.136644.fdata /tmp/.tmpihC8xi/prof.fdata.136653.fdata /tmp/.tmpihC8xi/prof.fdata.136667.fdata /tmp/.tmpihC8xi/prof.fdata.136684.fdata /tmp/.tmpihC8xi/prof.fdata.136694.fdata /tmp/.tmpihC8xi/prof.fdata.136788.fdata /tmp/.tmpihC8xi/prof.fdata.136841.fdata /tmp/.tmpihC8xi/prof.fdata.136876.fdata /tmp/.tmpihC8xi/prof.fdata.137002.fdata /tmp/.tmpihC8xi/prof.fdata.137904.fdata /tmp/.tmpihC8xi/prof.fdata.137943.fdata /tmp/.tmpihC8xi/prof.fdata.138015.fdata /tmp/.tmpihC8xi/prof.fdata.138064.fdata /tmp/.tmpihC8xi/prof.fdata.138106.fdata /tmp/.tmpihC8xi/prof.fdata.138211.fdata /tmp/.tmpihC8xi/prof.fdata.138624.fdata /tmp/.tmpihC8xi/prof.fdata.138631.fdata /tmp/.tmpihC8xi/prof.fdata.138638.fdata /tmp/.tmpihC8xi/prof.fdata.138668.fdata /tmp/.tmpihC8xi/prof.fdata.138679.fdata /tmp/.tmpihC8xi/prof.fdata.138687.fdata /tmp/.tmpihC8xi/prof.fdata.138742.fdata /tmp/.tmpihC8xi/prof.fdata.138769.fdata /tmp/.tmpihC8xi/prof.fdata.138814.fdata /tmp/.tmpihC8xi/prof.fdata.138815.fdata /tmp/.tmpihC8xi/prof.fdata.138818.fdata /tmp/.tmpihC8xi/prof.fdata.138819.fdata /tmp/.tmpihC8xi/prof.fdata.138824.fdata /tmp/.tmpihC8xi/prof.fdata.138825.fdata /tmp/.tmpihC8xi/prof.fdata.138834.fdata /tmp/.tmpihC8xi/prof.fdata.138835.fdata /tmp/.tmpihC8xi/prof.fdata.138842.fdata /tmp/.tmpihC8xi/prof.fdata.138844.fdata /tmp/.tmpihC8xi/prof.fdata.138845.fdata /tmp/.tmpihC8xi/prof.fdata.138847.fdata /tmp/.tmpihC8xi/prof.fdata.138848.fdata /tmp/.tmpihC8xi/prof.fdata.138849.fdata /tmp/.tmpihC8xi/prof.fdata.138850.fdata /tmp/.tmpihC8xi/prof.fdata.138852.fdata /tmp/.tmpihC8xi/prof.fdata.138853.fdata /tmp/.tmpihC8xi/prof.fdata.138855.fdata /tmp/.tmpihC8xi/prof.fdata.138857.fdata /tmp/.tmpihC8xi/prof.fdata.138859.fdata /tmp/.tmpihC8xi/prof.fdata.138860.fdata /tmp/.tmpihC8xi/prof.fdata.138861.fdata /tmp/.tmpihC8xi/prof.fdata.138996.fdata /tmp/.tmpihC8xi/prof.fdata.139001.fdata /tmp/.tmpihC8xi/prof.fdata.139007.fdata /tmp/.tmpihC8xi/prof.fdata.139010.fdata /tmp/.tmpihC8xi/prof.fdata.139015.fdata /tmp/.tmpihC8xi/prof.fdata.139021.fdata /tmp/.tmpihC8xi/prof.fdata.139024.fdata /tmp/.tmpihC8xi/prof.fdata.139033.fdata /tmp/.tmpihC8xi/prof.fdata.139051.fdata /tmp/.tmpihC8xi/prof.fdata.139070.fdata /tmp/.tmpihC8xi/prof.fdata.139081.fdata /tmp/.tmpihC8xi/prof.fdata.139093.fdata /tmp/.tmpihC8xi/prof.fdata.139103.fdata /tmp/.tmpihC8xi/prof.fdata.139109.fdata /tmp/.tmpihC8xi/prof.fdata.139129.fdata /tmp/.tmpihC8xi/prof.fdata.139156.fdata /tmp/.tmpihC8xi/prof.fdata.139201.fdata /tmp/.tmpihC8xi/prof.fdata.139202.fdata /tmp/.tmpihC8xi/prof.fdata.139205.fdata /tmp/.tmpihC8xi/prof.fdata.139206.fdata /tmp/.tmpihC8xi/prof.fdata.139211.fdata /tmp/.tmpihC8xi/prof.fdata.139212.fdata /tmp/.tmpihC8xi/prof.fdata.139222.fdata /tmp/.tmpihC8xi/prof.fdata.139223.fdata /tmp/.tmpihC8xi/prof.fdata.139226.fdata /tmp/.tmpihC8xi/prof.fdata.139228.fdata /tmp/.tmpihC8xi/prof.fdata.139229.fdata /tmp/.tmpihC8xi/prof.fdata.139232.fdata /tmp/.tmpihC8xi/prof.fdata.139233.fdata /tmp/.tmpihC8xi/prof.fdata.139234.fdata /tmp/.tmpihC8xi/prof.fdata.139236.fdata /tmp/.tmpihC8xi/prof.fdata.139237.fdata /tmp/.tmpihC8xi/prof.fdata.139240.fdata /tmp/.tmpihC8xi/prof.fdata.139242.fdata /tmp/.tmpihC8xi/prof.fdata.139244.fdata /tmp/.tmpihC8xi/prof.fdata.139245.fdata /tmp/.tmpihC8xi/prof.fdata.139249.fdata /tmp/.tmpihC8xi/prof.fdata.139250.fdata /tmp/.tmpihC8xi/prof.fdata.139251.fdata /tmp/.tmpihC8xi/prof.fdata.139252.fdata /tmp/.tmpihC8xi/prof.fdata.139385.fdata /tmp/.tmpihC8xi/prof.fdata.139389.fdata /tmp/.tmpihC8xi/prof.fdata.139392.fdata /tmp/.tmpihC8xi/prof.fdata.139393.fdata /tmp/.tmpihC8xi/prof.fdata.139397.fdata /tmp/.tmpihC8xi/prof.fdata.139402.fdata /tmp/.tmpihC8xi/prof.fdata.139433.fdata /tmp/.tmpihC8xi/prof.fdata.139440.fdata /tmp/.tmpihC8xi/prof.fdata.139451.fdata /tmp/.tmpihC8xi/prof.fdata.139460.fdata /tmp/.tmpihC8xi/prof.fdata.139461.fdata /tmp/.tmpihC8xi/prof.fdata.139465.fdata /tmp/.tmpihC8xi/prof.fdata.139488.fdata /tmp/.tmpihC8xi/prof.fdata.139492.fdata /tmp/.tmpihC8xi/prof.fdata.139495.fdata /tmp/.tmpihC8xi/prof.fdata.139500.fdata /tmp/.tmpihC8xi/prof.fdata.139505.fdata /tmp/.tmpihC8xi/prof.fdata.139510.fdata /tmp/.tmpihC8xi/prof.fdata.139511.fdata /tmp/.tmpihC8xi/prof.fdata.139515.fdata /tmp/.tmpihC8xi/prof.fdata.139522.fdata /tmp/.tmpihC8xi/prof.fdata.139532.fdata /tmp/.tmpihC8xi/prof.fdata.139542.fdata /tmp/.tmpihC8xi/prof.fdata.139547.fdata /tmp/.tmpihC8xi/prof.fdata.139558.fdata /tmp/.tmpihC8xi/prof.fdata.139567.fdata /tmp/.tmpihC8xi/prof.fdata.139574.fdata /tmp/.tmpihC8xi/prof.fdata.139586.fdata /tmp/.tmpihC8xi/prof.fdata.139590.fdata /tmp/.tmpihC8xi/prof.fdata.139600.fdata /tmp/.tmpihC8xi/prof.fdata.139635.fdata /tmp/.tmpihC8xi/prof.fdata.139642.fdata /tmp/.tmpihC8xi/prof.fdata.139646.fdata /tmp/.tmpihC8xi/prof.fdata.139650.fdata /tmp/.tmpihC8xi/prof.fdata.139661.fdata /tmp/.tmpihC8xi/prof.fdata.139666.fdata /tmp/.tmpihC8xi/prof.fdata.139679.fdata /tmp/.tmpihC8xi/prof.fdata.139692.fdata /tmp/.tmpihC8xi/prof.fdata.139694.fdata /tmp/.tmpihC8xi/prof.fdata.139709.fdata /tmp/.tmpihC8xi/prof.fdata.139716.fdata /tmp/.tmpihC8xi/prof.fdata.139720.fdata /tmp/.tmpihC8xi/prof.fdata.139724.fdata /tmp/.tmpihC8xi/prof.fdata.139740.fdata /tmp/.tmpihC8xi/prof.fdata.139745.fdata /tmp/.tmpihC8xi/prof.fdata.139750.fdata /tmp/.tmpihC8xi/prof.fdata.139760.fdata /tmp/.tmpihC8xi/prof.fdata.139766.fdata /tmp/.tmpihC8xi/prof.fdata.139770.fdata /tmp/.tmpihC8xi/prof.fdata.139777.fdata /tmp/.tmpihC8xi/prof.fdata.139788.fdata /tmp/.tmpihC8xi/prof.fdata.139791.fdata /tmp/.tmpihC8xi/prof.fdata.139803.fdata /tmp/.tmpihC8xi/prof.fdata.139807.fdata /tmp/.tmpihC8xi/prof.fdata.139817.fdata /tmp/.tmpihC8xi/prof.fdata.139827.fdata /tmp/.tmpihC8xi/prof.fdata.139833.fdata /tmp/.tmpihC8xi/prof.fdata.139835.fdata /tmp/.tmpihC8xi/prof.fdata.139841.fdata /tmp/.tmpihC8xi/prof.fdata.139855.fdata /tmp/.tmpihC8xi/prof.fdata.139861.fdata /tmp/.tmpihC8xi/prof.fdata.139868.fdata /tmp/.tmpihC8xi/prof.fdata.139878.fdata /tmp/.tmpihC8xi/prof.fdata.139892.fdata /tmp/.tmpihC8xi/prof.fdata.139900.fdata /tmp/.tmpihC8xi/prof.fdata.139910.fdata /tmp/.tmpihC8xi/prof.fdata.139919.fdata /tmp/.tmpihC8xi/prof.fdata.139928.fdata /tmp/.tmpihC8xi/prof.fdata.139930.fdata /tmp/.tmpihC8xi/prof.fdata.139940.fdata /tmp/.tmpihC8xi/prof.fdata.139954.fdata /tmp/.tmpihC8xi/prof.fdata.139964.fdata /tmp/.tmpihC8xi/prof.fdata.139972.fdata /tmp/.tmpihC8xi/prof.fdata.139994.fdata /tmp/.tmpihC8xi/prof.fdata.140018.fdata /tmp/.tmpihC8xi/prof.fdata.140019.fdata /tmp/.tmpihC8xi/prof.fdata.140053.fdata /tmp/.tmpihC8xi/prof.fdata.140054.fdata /tmp/.tmpihC8xi/prof.fdata.140087.fdata /tmp/.tmpihC8xi/prof.fdata.140091.fdata /tmp/.tmpihC8xi/prof.fdata.140098.fdata /tmp/.tmpihC8xi/prof.fdata.140102.fdata /tmp/.tmpihC8xi/prof.fdata.140111.fdata /tmp/.tmpihC8xi/prof.fdata.140124.fdata /tmp/.tmpihC8xi/prof.fdata.140141.fdata /tmp/.tmpihC8xi/prof.fdata.140148.fdata /tmp/.tmpihC8xi/prof.fdata.140183.fdata /tmp/.tmpihC8xi/prof.fdata.140204.fdata /tmp/.tmpihC8xi/prof.fdata.140218.fdata /tmp/.tmpihC8xi/prof.fdata.140219.fdata /tmp/.tmpihC8xi/prof.fdata.140222.fdata /tmp/.tmpihC8xi/prof.fdata.140223.fdata /tmp/.tmpihC8xi/prof.fdata.140228.fdata /tmp/.tmpihC8xi/prof.fdata.140229.fdata /tmp/.tmpihC8xi/prof.fdata.140235.fdata /tmp/.tmpihC8xi/prof.fdata.140236.fdata /tmp/.tmpihC8xi/prof.fdata.140240.fdata /tmp/.tmpihC8xi/prof.fdata.140241.fdata /tmp/.tmpihC8xi/prof.fdata.140301.fdata /tmp/.tmpihC8xi/prof.fdata.140322.fdata /tmp/.tmpihC8xi/prof.fdata.140329.fdata /tmp/.tmpihC8xi/prof.fdata.140339.fdata /tmp/.tmpihC8xi/prof.fdata.140400.fdata /tmp/.tmpihC8xi/prof.fdata.140427.fdata /tmp/.tmpihC8xi/prof.fdata.140472.fdata /tmp/.tmpihC8xi/prof.fdata.140473.fdata /tmp/.tmpihC8xi/prof.fdata.140476.fdata /tmp/.tmpihC8xi/prof.fdata.140477.fdata /tmp/.tmpihC8xi/prof.fdata.140482.fdata /tmp/.tmpihC8xi/prof.fdata.140483.fdata /tmp/.tmpihC8xi/prof.fdata.140491.fdata /tmp/.tmpihC8xi/prof.fdata.140493.fdata /tmp/.tmpihC8xi/prof.fdata.140495.fdata /tmp/.tmpihC8xi/prof.fdata.140496.fdata /tmp/.tmpihC8xi/prof.fdata.140500.fdata /tmp/.tmpihC8xi/prof.fdata.140501.fdata /tmp/.tmpihC8xi/prof.fdata.140502.fdata /tmp/.tmpihC8xi/prof.fdata.140505.fdata /tmp/.tmpihC8xi/prof.fdata.140507.fdata /tmp/.tmpihC8xi/prof.fdata.140510.fdata /tmp/.tmpihC8xi/prof.fdata.140511.fdata /tmp/.tmpihC8xi/prof.fdata.140512.fdata /tmp/.tmpihC8xi/prof.fdata.140514.fdata /tmp/.tmpihC8xi/prof.fdata.140519.fdata /tmp/.tmpihC8xi/prof.fdata.140520.fdata /tmp/.tmpihC8xi/prof.fdata.140521.fdata /tmp/.tmpihC8xi/prof.fdata.140522.fdata /tmp/.tmpihC8xi/prof.fdata.140596.fdata /tmp/.tmpihC8xi/prof.fdata.140653.fdata /tmp/.tmpihC8xi/prof.fdata.140655.fdata /tmp/.tmpihC8xi/prof.fdata.140670.fdata /tmp/.tmpihC8xi/prof.fdata.140674.fdata /tmp/.tmpihC8xi/prof.fdata.140684.fdata /tmp/.tmpihC8xi/prof.fdata.140697.fdata /tmp/.tmpihC8xi/prof.fdata.140706.fdata /tmp/.tmpihC8xi/prof.fdata.140710.fdata /tmp/.tmpihC8xi/prof.fdata.140719.fdata /tmp/.tmpihC8xi/prof.fdata.140724.fdata /tmp/.tmpihC8xi/prof.fdata.140733.fdata /tmp/.tmpihC8xi/prof.fdata.140734.fdata /tmp/.tmpihC8xi/prof.fdata.140743.fdata /tmp/.tmpihC8xi/prof.fdata.140744.fdata /tmp/.tmpihC8xi/prof.fdata.140747.fdata /tmp/.tmpihC8xi/prof.fdata.140758.fdata /tmp/.tmpihC8xi/prof.fdata.140763.fdata /tmp/.tmpihC8xi/prof.fdata.140768.fdata /tmp/.tmpihC8xi/prof.fdata.140769.fdata /tmp/.tmpihC8xi/prof.fdata.140774.fdata /tmp/.tmpihC8xi/prof.fdata.140785.fdata /tmp/.tmpihC8xi/prof.fdata.140795.fdata /tmp/.tmpihC8xi/prof.fdata.140797.fdata /tmp/.tmpihC8xi/prof.fdata.140818.fdata /tmp/.tmpihC8xi/prof.fdata.140823.fdata /tmp/.tmpihC8xi/prof.fdata.140827.fdata /tmp/.tmpihC8xi/prof.fdata.140838.fdata /tmp/.tmpihC8xi/prof.fdata.140851.fdata /tmp/.tmpihC8xi/prof.fdata.140854.fdata /tmp/.tmpihC8xi/prof.fdata.140884.fdata /tmp/.tmpihC8xi/prof.fdata.140901.fdata /tmp/.tmpihC8xi/prof.fdata.140911.fdata /tmp/.tmpihC8xi/prof.fdata.140918.fdata /tmp/.tmpihC8xi/prof.fdata.140926.fdata /tmp/.tmpihC8xi/prof.fdata.140935.fdata /tmp/.tmpihC8xi/prof.fdata.140954.fdata /tmp/.tmpihC8xi/prof.fdata.140959.fdata /tmp/.tmpihC8xi/prof.fdata.140964.fdata /tmp/.tmpihC8xi/prof.fdata.140978.fdata /tmp/.tmpihC8xi/prof.fdata.140982.fdata /tmp/.tmpihC8xi/prof.fdata.140985.fdata /tmp/.tmpihC8xi/prof.fdata.140998.fdata /tmp/.tmpihC8xi/prof.fdata.141008.fdata /tmp/.tmpihC8xi/prof.fdata.141027.fdata /tmp/.tmpihC8xi/prof.fdata.141044.fdata /tmp/.tmpihC8xi/prof.fdata.141062.fdata /tmp/.tmpihC8xi/prof.fdata.141092.fdata /tmp/.tmpihC8xi/prof.fdata.141100.fdata /tmp/.tmpihC8xi/prof.fdata.141117.fdata /tmp/.tmpihC8xi/prof.fdata.141131.fdata /tmp/.tmpihC8xi/prof.fdata.141147.fdata /tmp/.tmpihC8xi/prof.fdata.141149.fdata /tmp/.tmpihC8xi/prof.fdata.141167.fdata /tmp/.tmpihC8xi/prof.fdata.141178.fdata /tmp/.tmpihC8xi/prof.fdata.141183.fdata /tmp/.tmpihC8xi/prof.fdata.141205.fdata /tmp/.tmpihC8xi/prof.fdata.141211.fdata /tmp/.tmpihC8xi/prof.fdata.141213.fdata /tmp/.tmpihC8xi/prof.fdata.141220.fdata /tmp/.tmpihC8xi/prof.fdata.141225.fdata /tmp/.tmpihC8xi/prof.fdata.141227.fdata /tmp/.tmpihC8xi/prof.fdata.141246.fdata /tmp/.tmpihC8xi/prof.fdata.141264.fdata /tmp/.tmpihC8xi/prof.fdata.141267.fdata /tmp/.tmpihC8xi/prof.fdata.141281.fdata /tmp/.tmpihC8xi/prof.fdata.141287.fdata /tmp/.tmpihC8xi/prof.fdata.141291.fdata /tmp/.tmpihC8xi/prof.fdata.141293.fdata /tmp/.tmpihC8xi/prof.fdata.141302.fdata /tmp/.tmpihC8xi/prof.fdata.141304.fdata /tmp/.tmpihC8xi/prof.fdata.141321.fdata /tmp/.tmpihC8xi/prof.fdata.141342.fdata /tmp/.tmpihC8xi/prof.fdata.141359.fdata /tmp/.tmpihC8xi/prof.fdata.141364.fdata /tmp/.tmpihC8xi/prof.fdata.141368.fdata /tmp/.tmpihC8xi/prof.fdata.141373.fdata /tmp/.tmpihC8xi/prof.fdata.141383.fdata /tmp/.tmpihC8xi/prof.fdata.141385.fdata /tmp/.tmpihC8xi/prof.fdata.141395.fdata /tmp/.tmpihC8xi/prof.fdata.141401.fdata /tmp/.tmpihC8xi/prof.fdata.141408.fdata /tmp/.tmpihC8xi/prof.fdata.141409.fdata /tmp/.tmpihC8xi/prof.fdata.141433.fdata /tmp/.tmpihC8xi/prof.fdata.141446.fdata /tmp/.tmpihC8xi/prof.fdata.141453.fdata /tmp/.tmpihC8xi/prof.fdata.141489.fdata /tmp/.tmpihC8xi/prof.fdata.141491.fdata /tmp/.tmpihC8xi/prof.fdata.141529.fdata /tmp/.tmpihC8xi/prof.fdata.141550.fdata /tmp/.tmpihC8xi/prof.fdata.141555.fdata /tmp/.tmpihC8xi/prof.fdata.141570.fdata /tmp/.tmpihC8xi/prof.fdata.141590.fdata /tmp/.tmpihC8xi/prof.fdata.141591.fdata /tmp/.tmpihC8xi/prof.fdata.141600.fdata /tmp/.tmpihC8xi/prof.fdata.141623.fdata /tmp/.tmpihC8xi/prof.fdata.141625.fdata /tmp/.tmpihC8xi/prof.fdata.141639.fdata /tmp/.tmpihC8xi/prof.fdata.141653.fdata /tmp/.tmpihC8xi/prof.fdata.141661.fdata /tmp/.tmpihC8xi/prof.fdata.141675.fdata /tmp/.tmpihC8xi/prof.fdata.141690.fdata /tmp/.tmpihC8xi/prof.fdata.141697.fdata /tmp/.tmpihC8xi/prof.fdata.141699.fdata /tmp/.tmpihC8xi/prof.fdata.141709.fdata /tmp/.tmpihC8xi/prof.fdata.141719.fdata /tmp/.tmpihC8xi/prof.fdata.141736.fdata /tmp/.tmpihC8xi/prof.fdata.141740.fdata /tmp/.tmpihC8xi/prof.fdata.141757.fdata /tmp/.tmpihC8xi/prof.fdata.141775.fdata /tmp/.tmpihC8xi/prof.fdata.141783.fdata /tmp/.tmpihC8xi/prof.fdata.141791.fdata /tmp/.tmpihC8xi/prof.fdata.141853.fdata /tmp/.tmpihC8xi/prof.fdata.141858.fdata /tmp/.tmpihC8xi/prof.fdata.141862.fdata /tmp/.tmpihC8xi/prof.fdata.141898.fdata /tmp/.tmpihC8xi/prof.fdata.141924.fdata /tmp/.tmpihC8xi/prof.fdata.141960.fdata /tmp/.tmpihC8xi/prof.fdata.141986.fdata /tmp/.tmpihC8xi/prof.fdata.142001.fdata /tmp/.tmpihC8xi/prof.fdata.142005.fdata /tmp/.tmpihC8xi/prof.fdata.142070.fdata /tmp/.tmpihC8xi/prof.fdata.142089.fdata /tmp/.tmpihC8xi/prof.fdata.142115.fdata /tmp/.tmpihC8xi/prof.fdata.142147.fdata /tmp/.tmpihC8xi/prof.fdata.142182.fdata /tmp/.tmpihC8xi/prof.fdata.142226.fdata /tmp/.tmpihC8xi/prof.fdata.142228.fdata /tmp/.tmpihC8xi/prof.fdata.142231.fdata /tmp/.tmpihC8xi/prof.fdata.142240.fdata /tmp/.tmpihC8xi/prof.fdata.142242.fdata /tmp/.tmpihC8xi/prof.fdata.142243.fdata /tmp/.tmpihC8xi/prof.fdata.142245.fdata /tmp/.tmpihC8xi/prof.fdata.142247.fdata /tmp/.tmpihC8xi/prof.fdata.142249.fdata /tmp/.tmpihC8xi/prof.fdata.142250.fdata /tmp/.tmpihC8xi/prof.fdata.142253.fdata /tmp/.tmpihC8xi/prof.fdata.142254.fdata /tmp/.tmpihC8xi/prof.fdata.142255.fdata /tmp/.tmpihC8xi/prof.fdata.142258.fdata /tmp/.tmpihC8xi/prof.fdata.142259.fdata /tmp/.tmpihC8xi/prof.fdata.142261.fdata /tmp/.tmpihC8xi/prof.fdata.142263.fdata /tmp/.tmpihC8xi/prof.fdata.142265.fdata /tmp/.tmpihC8xi/prof.fdata.142266.fdata /tmp/.tmpihC8xi/prof.fdata.142267.fdata /tmp/.tmpihC8xi/prof.fdata.142385.fdata /tmp/.tmpihC8xi/prof.fdata.142389.fdata /tmp/.tmpihC8xi/prof.fdata.142391.fdata /tmp/.tmpihC8xi/prof.fdata.142395.fdata /tmp/.tmpihC8xi/prof.fdata.142419.fdata /tmp/.tmpihC8xi/prof.fdata.142425.fdata /tmp/.tmpihC8xi/prof.fdata.142435.fdata /tmp/.tmpihC8xi/prof.fdata.142445.fdata /tmp/.tmpihC8xi/prof.fdata.142447.fdata /tmp/.tmpihC8xi/prof.fdata.142452.fdata /tmp/.tmpihC8xi/prof.fdata.142455.fdata /tmp/.tmpihC8xi/prof.fdata.142461.fdata /tmp/.tmpihC8xi/prof.fdata.142464.fdata /tmp/.tmpihC8xi/prof.fdata.142469.fdata /tmp/.tmpihC8xi/prof.fdata.142474.fdata /tmp/.tmpihC8xi/prof.fdata.142480.fdata /tmp/.tmpihC8xi/prof.fdata.142484.fdata /tmp/.tmpihC8xi/prof.fdata.142490.fdata /tmp/.tmpihC8xi/prof.fdata.142492.fdata /tmp/.tmpihC8xi/prof.fdata.142499.fdata /tmp/.tmpihC8xi/prof.fdata.142510.fdata /tmp/.tmpihC8xi/prof.fdata.142511.fdata /tmp/.tmpihC8xi/prof.fdata.142520.fdata /tmp/.tmpihC8xi/prof.fdata.142524.fdata /tmp/.tmpihC8xi/prof.fdata.142538.fdata /tmp/.tmpihC8xi/prof.fdata.142543.fdata /tmp/.tmpihC8xi/prof.fdata.142554.fdata /tmp/.tmpihC8xi/prof.fdata.142566.fdata /tmp/.tmpihC8xi/prof.fdata.142571.fdata /tmp/.tmpihC8xi/prof.fdata.142581.fdata /tmp/.tmpihC8xi/prof.fdata.142585.fdata /tmp/.tmpihC8xi/prof.fdata.142602.fdata /tmp/.tmpihC8xi/prof.fdata.142607.fdata /tmp/.tmpihC8xi/prof.fdata.142622.fdata /tmp/.tmpihC8xi/prof.fdata.142631.fdata /tmp/.tmpihC8xi/prof.fdata.142637.fdata /tmp/.tmpihC8xi/prof.fdata.142644.fdata /tmp/.tmpihC8xi/prof.fdata.142645.fdata /tmp/.tmpihC8xi/prof.fdata.142655.fdata /tmp/.tmpihC8xi/prof.fdata.142664.fdata /tmp/.tmpihC8xi/prof.fdata.142666.fdata /tmp/.tmpihC8xi/prof.fdata.142673.fdata /tmp/.tmpihC8xi/prof.fdata.142686.fdata /tmp/.tmpihC8xi/prof.fdata.142696.fdata /tmp/.tmpihC8xi/prof.fdata.142700.fdata /tmp/.tmpihC8xi/prof.fdata.142702.fdata /tmp/.tmpihC8xi/prof.fdata.142708.fdata /tmp/.tmpihC8xi/prof.fdata.142725.fdata /tmp/.tmpihC8xi/prof.fdata.142727.fdata /tmp/.tmpihC8xi/prof.fdata.142740.fdata /tmp/.tmpihC8xi/prof.fdata.142742.fdata /tmp/.tmpihC8xi/prof.fdata.142770.fdata /tmp/.tmpihC8xi/prof.fdata.142797.fdata /tmp/.tmpihC8xi/prof.fdata.142811.fdata /tmp/.tmpihC8xi/prof.fdata.142822.fdata /tmp/.tmpihC8xi/prof.fdata.142829.fdata /tmp/.tmpihC8xi/prof.fdata.142836.fdata /tmp/.tmpihC8xi/prof.fdata.142856.fdata /tmp/.tmpihC8xi/prof.fdata.142874.fdata /tmp/.tmpihC8xi/prof.fdata.142875.fdata /tmp/.tmpihC8xi/prof.fdata.142878.fdata /tmp/.tmpihC8xi/prof.fdata.142879.fdata /tmp/.tmpihC8xi/prof.fdata.142884.fdata /tmp/.tmpihC8xi/prof.fdata.142885.fdata /tmp/.tmpihC8xi/prof.fdata.142890.fdata /tmp/.tmpihC8xi/prof.fdata.142893.fdata /tmp/.tmpihC8xi/prof.fdata.142912.fdata /tmp/.tmpihC8xi/prof.fdata.142916.fdata /tmp/.tmpihC8xi/prof.fdata.142931.fdata /tmp/.tmpihC8xi/prof.fdata.142946.fdata /tmp/.tmpihC8xi/prof.fdata.142961.fdata /tmp/.tmpihC8xi/prof.fdata.142962.fdata /tmp/.tmpihC8xi/prof.fdata.142965.fdata /tmp/.tmpihC8xi/prof.fdata.142966.fdata /tmp/.tmpihC8xi/prof.fdata.142971.fdata /tmp/.tmpihC8xi/prof.fdata.142972.fdata /tmp/.tmpihC8xi/prof.fdata.142979.fdata /tmp/.tmpihC8xi/prof.fdata.142980.fdata /tmp/.tmpihC8xi/prof.fdata.142981.fdata /tmp/.tmpihC8xi/prof.fdata.142986.fdata /tmp/.tmpihC8xi/prof.fdata.142987.fdata /tmp/.tmpihC8xi/prof.fdata.142988.fdata /tmp/.tmpihC8xi/prof.fdata.143042.fdata /tmp/.tmpihC8xi/prof.fdata.143046.fdata /tmp/.tmpihC8xi/prof.fdata.143050.fdata /tmp/.tmpihC8xi/prof.fdata.143054.fdata /tmp/.tmpihC8xi/prof.fdata.143057.fdata /tmp/.tmpihC8xi/prof.fdata.143061.fdata /tmp/.tmpihC8xi/prof.fdata.143067.fdata /tmp/.tmpihC8xi/prof.fdata.143078.fdata /tmp/.tmpihC8xi/prof.fdata.143120.fdata /tmp/.tmpihC8xi/prof.fdata.143150.fdata > "/tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata" [at /checkout/obj]`
Profile from 735 files merged.
[2025-02-02T03:20:37.508Z INFO  opt_dist::training] LLVM BOLT statistics
[2025-02-02T03:20:37.508Z INFO  opt_dist::training] /tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata: 173.05 MiB
##[endgroup]
---
[2025-02-02T03:26:39Z DEBUG collector::compile::execute] cd "/tmp/.tmpbJcTUL" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpbJcTUL#cargo@0.60.0" "--profile" "check" "--lib" "--" "--skip-this-rustc"
Running cargo-0.60.0: Check + [Full, IncrFull, IncrUnchanged, IncrPatched] + Llvm
[2025-02-02T03:29:20Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T03:29:21Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T03:29:21Z DEBUG collector::compile::execute] cd "/tmp/.tmpJEiqih" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpJEiqih#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2025-02-02T03:29:33Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T03:29:33Z DEBUG collector::compile::execute] cd "/tmp/.tmpJEiqih" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpJEiqih#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpJEiqih/incremental-state"
[2025-02-02T03:29:46Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T03:29:46Z DEBUG collector::compile::execute] cd "/tmp/.tmpJEiqih" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpJEiqih#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpJEiqih/incremental-state"
[2025-02-02T03:29:51Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpJEiqih"
[2025-02-02T03:29:51Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2025-02-02T03:29:51Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2025-02-02T03:29:51Z DEBUG collector::compile::execute] cd "/tmp/.tmpJEiqih" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpJEiqih#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpJEiqih/incremental-state"
[2025-02-02T03:29:57Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T03:29:58Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T03:29:58Z DEBUG collector::compile::execute] cd "/tmp/.tmpL9bgHA" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpL9bgHA#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2025-02-02T03:30:22Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2025-02-02T03:32:32Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T03:32:32Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T03:32:32Z DEBUG collector::compile::execute] cd "/tmp/.tmpctLQFY" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpctLQFY#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2025-02-02T03:32:39Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T03:32:39Z DEBUG collector::compile::execute] cd "/tmp/.tmpctLQFY" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpctLQFY#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpctLQFY/incremental-state"
[2025-02-02T03:32:46Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T03:32:46Z DEBUG collector::compile::execute] cd "/tmp/.tmpctLQFY" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpctLQFY#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpctLQFY/incremental-state"
[2025-02-02T03:32:48Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T03:32:48Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T03:32:48Z DEBUG collector::compile::execute] cd "/tmp/.tmpeYoj49" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpeYoj49#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2025-02-02T03:32:55Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2025-02-02T03:34:11Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T03:34:11Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T03:34:11Z DEBUG collector::compile::execute] cd "/tmp/.tmpvvWHPM" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpvvWHPM#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln"
[2025-02-02T03:34:21Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T03:34:21Z DEBUG collector::compile::execute] cd "/tmp/.tmpvvWHPM" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpvvWHPM#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpvvWHPM/incremental-state"
[2025-02-02T03:34:33Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T03:34:33Z DEBUG collector::compile::execute] cd "/tmp/.tmpvvWHPM" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpvvWHPM#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpvvWHPM/incremental-state"
[2025-02-02T03:34:37Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpvvWHPM"
[2025-02-02T03:34:37Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2025-02-02T03:34:37Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2025-02-02T03:34:37Z DEBUG collector::compile::execute] cd "/tmp/.tmpvvWHPM" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpvvWHPM#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpvvWHPM/incremental-state"
[2025-02-02T03:34:43Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T03:34:43Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T03:34:43Z DEBUG collector::compile::execute] cd "/tmp/.tmpU2P1NT" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpU2P1NT#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2025-02-02T03:34:53Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2025-02-02T03:36:33Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T03:36:33Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T03:36:33Z DEBUG collector::compile::execute] cd "/tmp/.tmpdJiKWX" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpdJiKWX#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2025-02-02T03:36:38Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T03:36:38Z DEBUG collector::compile::execute] cd "/tmp/.tmpdJiKWX" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpdJiKWX#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpdJiKWX/incremental-state"
[2025-02-02T03:36:42Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T03:36:42Z DEBUG collector::compile::execute] cd "/tmp/.tmpdJiKWX" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpdJiKWX#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpdJiKWX/incremental-state"
[2025-02-02T03:36:45Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmpdJiKWX"
[2025-02-02T03:36:45Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2025-02-02T03:36:45Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2025-02-02T03:36:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpdJiKWX" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpdJiKWX#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpdJiKWX/incremental-state"
[2025-02-02T03:36:49Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2025-02-02T03:36:49Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2025-02-02T03:36:49Z DEBUG collector::compile::execute] cd "/tmp/.tmpJPdrXd" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpJPdrXd#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2025-02-02T03:36:54Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
Finished benchmark tuple-stress (8/8)
##[endgroup]
[2025-02-02T03:37:26.341Z INFO  opt_dist::training] Merging rustc BOLT profiles from /tmp/.tmpWQnUaQ/prof.fdata to /tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata
##[group]Merging BOLT profiles
[2025-02-02T03:37:26.342Z INFO  opt_dist::exec] Executing `merge-fdata /tmp/.tmpWQnUaQ/prof.fdata.143241.fdata /tmp/.tmpWQnUaQ/prof.fdata.143256.fdata /tmp/.tmpWQnUaQ/prof.fdata.143257.fdata /tmp/.tmpWQnUaQ/prof.fdata.143258.fdata /tmp/.tmpWQnUaQ/prof.fdata.143262.fdata /tmp/.tmpWQnUaQ/prof.fdata.143263.fdata /tmp/.tmpWQnUaQ/prof.fdata.143264.fdata /tmp/.tmpWQnUaQ/prof.fdata.143271.fdata /tmp/.tmpWQnUaQ/prof.fdata.143272.fdata /tmp/.tmpWQnUaQ/prof.fdata.143273.fdata /tmp/.tmpWQnUaQ/prof.fdata.143292.fdata /tmp/.tmpWQnUaQ/prof.fdata.143302.fdata /tmp/.tmpWQnUaQ/prof.fdata.143312.fdata /tmp/.tmpWQnUaQ/prof.fdata.143323.fdata /tmp/.tmpWQnUaQ/prof.fdata.143334.fdata /tmp/.tmpWQnUaQ/prof.fdata.143345.fdata /tmp/.tmpWQnUaQ/prof.fdata.143382.fdata /tmp/.tmpWQnUaQ/prof.fdata.143420.fdata /tmp/.tmpWQnUaQ/prof.fdata.143458.fdata /tmp/.tmpWQnUaQ/prof.fdata.143472.fdata /tmp/.tmpWQnUaQ/prof.fdata.143496.fdata /tmp/.tmpWQnUaQ/prof.fdata.143514.fdata /tmp/.tmpWQnUaQ/prof.fdata.143538.fdata /tmp/.tmpWQnUaQ/prof.fdata.143539.fdata /tmp/.tmpWQnUaQ/prof.fdata.143540.fdata /tmp/.tmpWQnUaQ/prof.fdata.143544.fdata /tmp/.tmpWQnUaQ/prof.fdata.143545.fdata /tmp/.tmpWQnUaQ/prof.fdata.143546.fdata /tmp/.tmpWQnUaQ/prof.fdata.143553.fdata /tmp/.tmpWQnUaQ/prof.fdata.143554.fdata /tmp/.tmpWQnUaQ/prof.fdata.143555.fdata /tmp/.tmpWQnUaQ/prof.fdata.143566.fdata /tmp/.tmpWQnUaQ/prof.fdata.143569.fdata /tmp/.tmpWQnUaQ/prof.fdata.143572.fdata /tmp/.tmpWQnUaQ/prof.fdata.143573.fdata /tmp/.tmpWQnUaQ/prof.fdata.143574.fdata /tmp/.tmpWQnUaQ/prof.fdata.143575.fdata /tmp/.tmpWQnUaQ/prof.fdata.143577.fdata /tmp/.tmpWQnUaQ/prof.fdata.143578.fdata /tmp/.tmpWQnUaQ/prof.fdata.143581.fdata /tmp/.tmpWQnUaQ/prof.fdata.143584.fdata /tmp/.tmpWQnUaQ/prof.fdata.143585.fdata /tmp/.tmpWQnUaQ/prof.fdata.143586.fdata /tmp/.tmpWQnUaQ/prof.fdata.143588.fdata /tmp/.tmpWQnUaQ/prof.fdata.143590.fdata /tmp/.tmpWQnUaQ/prof.fdata.143595.fdata /tmp/.tmpWQnUaQ/prof.fdata.143596.fdata /tmp/.tmpWQnUaQ/prof.fdata.143597.fdata /tmp/.tmpWQnUaQ/prof.fdata.143598.fdata /tmp/.tmpWQnUaQ/prof.fdata.143647.fdata /tmp/.tmpWQnUaQ/prof.fdata.143744.fdata /tmp/.tmpWQnUaQ/prof.fdata.143748.fdata /tmp/.tmpWQnUaQ/prof.fdata.143753.fdata /tmp/.tmpWQnUaQ/prof.fdata.143754.fdata /tmp/.tmpWQnUaQ/prof.fdata.143780.fdata /tmp/.tmpWQnUaQ/prof.fdata.143782.fdata /tmp/.tmpWQnUaQ/prof.fdata.143788.fdata /tmp/.tmpWQnUaQ/prof.fdata.143793.fdata /tmp/.tmpWQnUaQ/prof.fdata.143798.fdata /tmp/.tmpWQnUaQ/prof.fdata.143801.fdata /tmp/.tmpWQnUaQ/prof.fdata.143808.fdata /tmp/.tmpWQnUaQ/prof.fdata.143812.fdata /tmp/.tmpWQnUaQ/prof.fdata.143815.fdata /tmp/.tmpWQnUaQ/prof.fdata.143817.fdata /tmp/.tmpWQnUaQ/prof.fdata.143825.fdata /tmp/.tmpWQnUaQ/prof.fdata.143828.fdata /tmp/.tmpWQnUaQ/prof.fdata.143833.fdata /tmp/.tmpWQnUaQ/prof.fdata.143837.fdata /tmp/.tmpWQnUaQ/prof.fdata.143853.fdata /tmp/.tmpWQnUaQ/prof.fdata.143859.fdata /tmp/.tmpWQnUaQ/prof.fdata.143867.fdata /tmp/.tmpWQnUaQ/prof.fdata.143869.fdata /tmp/.tmpWQnUaQ/prof.fdata.143876.fdata /tmp/.tmpWQnUaQ/prof.fdata.143886.fdata /tmp/.tmpWQnUaQ/prof.fdata.143892.fdata /tmp/.tmpWQnUaQ/prof.fdata.143899.fdata /tmp/.tmpWQnUaQ/prof.fdata.143922.fdata /tmp/.tmpWQnUaQ/prof.fdata.143946.fdata /tmp/.tmpWQnUaQ/prof.fdata.143962.fdata /tmp/.tmpWQnUaQ/prof.fdata.143969.fdata /tmp/.tmpWQnUaQ/prof.fdata.143977.fdata /tmp/.tmpWQnUaQ/prof.fdata.144017.fdata /tmp/.tmpWQnUaQ/prof.fdata.144019.fdata /tmp/.tmpWQnUaQ/prof.fdata.144027.fdata /tmp/.tmpWQnUaQ/prof.fdata.144035.fdata /tmp/.tmpWQnUaQ/prof.fdata.144046.fdata /tmp/.tmpWQnUaQ/prof.fdata.144048.fdata /tmp/.tmpWQnUaQ/prof.fdata.144069.fdata /tmp/.tmpWQnUaQ/prof.fdata.144077.fdata /tmp/.tmpWQnUaQ/prof.fdata.144081.fdata /tmp/.tmpWQnUaQ/prof.fdata.144097.fdata /tmp/.tmpWQnUaQ/prof.fdata.144104.fdata /tmp/.tmpWQnUaQ/prof.fdata.144108.fdata /tmp/.tmpWQnUaQ/prof.fdata.144117.fdata /tmp/.tmpWQnUaQ/prof.fdata.144130.fdata /tmp/.tmpWQnUaQ/prof.fdata.144135.fdata /tmp/.tmpWQnUaQ/prof.fdata.144144.fdata /tmp/.tmpWQnUaQ/prof.fdata.144148.fdata /tmp/.tmpWQnUaQ/prof.fdata.144165.fdata /tmp/.tmpWQnUaQ/prof.fdata.144171.fdata /tmp/.tmpWQnUaQ/prof.fdata.144193.fdata /tmp/.tmpWQnUaQ/prof.fdata.144208.fdata /tmp/.tmpWQnUaQ/prof.fdata.144218.fdata /tmp/.tmpWQnUaQ/prof.fdata.144223.fdata /tmp/.tmpWQnUaQ/prof.fdata.144232.fdata /tmp/.tmpWQnUaQ/prof.fdata.144242.fdata /tmp/.tmpWQnUaQ/prof.fdata.144261.fdata /tmp/.tmpWQnUaQ/prof.fdata.144263.fdata /tmp/.tmpWQnUaQ/prof.fdata.144270.fdata /tmp/.tmpWQnUaQ/prof.fdata.144281.fdata /tmp/.tmpWQnUaQ/prof.fdata.144294.fdata /tmp/.tmpWQnUaQ/prof.fdata.144331.fdata /tmp/.tmpWQnUaQ/prof.fdata.144333.fdata /tmp/.tmpWQnUaQ/prof.fdata.144341.fdata /tmp/.tmpWQnUaQ/prof.fdata.144352.fdata /tmp/.tmpWQnUaQ/prof.fdata.144356.fdata /tmp/.tmpWQnUaQ/prof.fdata.144367.fdata /tmp/.tmpWQnUaQ/prof.fdata.144377.fdata /tmp/.tmpWQnUaQ/prof.fdata.144381.fdata /tmp/.tmpWQnUaQ/prof.fdata.144399.fdata /tmp/.tmpWQnUaQ/prof.fdata.144408.fdata /tmp/.tmpWQnUaQ/prof.fdata.144415.fdata /tmp/.tmpWQnUaQ/prof.fdata.144430.fdata /tmp/.tmpWQnUaQ/prof.fdata.144433.fdata /tmp/.tmpWQnUaQ/prof.fdata.144457.fdata /tmp/.tmpWQnUaQ/prof.fdata.144460.fdata /tmp/.tmpWQnUaQ/prof.fdata.144480.fdata /tmp/.tmpWQnUaQ/prof.fdata.144486.fdata /tmp/.tmpWQnUaQ/prof.fdata.144498.fdata /tmp/.tmpWQnUaQ/prof.fdata.144529.fdata /tmp/.tmpWQnUaQ/prof.fdata.144534.fdata /tmp/.tmpWQnUaQ/prof.fdata.144544.fdata /tmp/.tmpWQnUaQ/prof.fdata.144546.fdata /tmp/.tmpWQnUaQ/prof.fdata.144555.fdata /tmp/.tmpWQnUaQ/prof.fdata.144570.fdata /tmp/.tmpWQnUaQ/prof.fdata.144578.fdata /tmp/.tmpWQnUaQ/prof.fdata.144584.fdata /tmp/.tmpWQnUaQ/prof.fdata.144593.fdata /tmp/.tmpWQnUaQ/prof.fdata.144596.fdata /tmp/.tmpWQnUaQ/prof.fdata.144600.fdata /tmp/.tmpWQnUaQ/prof.fdata.144608.fdata /tmp/.tmpWQnUaQ/prof.fdata.144619.fdata /tmp/.tmpWQnUaQ/prof.fdata.144621.fdata /tmp/.tmpWQnUaQ/prof.fdata.144644.fdata /tmp/.tmpWQnUaQ/prof.fdata.144653.fdata /tmp/.tmpWQnUaQ/prof.fdata.144665.fdata /tmp/.tmpWQnUaQ/prof.fdata.144679.fdata /tmp/.tmpWQnUaQ/prof.fdata.144686.fdata /tmp/.tmpWQnUaQ/prof.fdata.144698.fdata /tmp/.tmpWQnUaQ/prof.fdata.144704.fdata /tmp/.tmpWQnUaQ/prof.fdata.144710.fdata /tmp/.tmpWQnUaQ/prof.fdata.144718.fdata /tmp/.tmpWQnUaQ/prof.fdata.144726.fdata /tmp/.tmpWQnUaQ/prof.fdata.144731.fdata /tmp/.tmpWQnUaQ/prof.fdata.144735.fdata /tmp/.tmpWQnUaQ/prof.fdata.144749.fdata /tmp/.tmpWQnUaQ/prof.fdata.144752.fdata /tmp/.tmpWQnUaQ/prof.fdata.144759.fdata /tmp/.tmpWQnUaQ/prof.fdata.144766.fdata /tmp/.tmpWQnUaQ/prof.fdata.144768.fdata /tmp/.tmpWQnUaQ/prof.fdata.144783.fdata /tmp/.tmpWQnUaQ/prof.fdata.144790.fdata /tmp/.tmpWQnUaQ/prof.fdata.144797.fdata /tmp/.tmpWQnUaQ/prof.fdata.144810.fdata /tmp/.tmpWQnUaQ/prof.fdata.144817.fdata /tmp/.tmpWQnUaQ/prof.fdata.144821.fdata /tmp/.tmpWQnUaQ/prof.fdata.144836.fdata /tmp/.tmpWQnUaQ/prof.fdata.144840.fdata /tmp/.tmpWQnUaQ/prof.fdata.144844.fdata /tmp/.tmpWQnUaQ/prof.fdata.144848.fdata /tmp/.tmpWQnUaQ/prof.fdata.144859.fdata /tmp/.tmpWQnUaQ/prof.fdata.144865.fdata /tmp/.tmpWQnUaQ/prof.fdata.144877.fdata /tmp/.tmpWQnUaQ/prof.fdata.144888.fdata /tmp/.tmpWQnUaQ/prof.fdata.144913.fdata /tmp/.tmpWQnUaQ/prof.fdata.144930.fdata /tmp/.tmpWQnUaQ/prof.fdata.144937.fdata /tmp/.tmpWQnUaQ/prof.fdata.144942.fdata /tmp/.tmpWQnUaQ/prof.fdata.144944.fdata /tmp/.tmpWQnUaQ/prof.fdata.144953.fdata /tmp/.tmpWQnUaQ/prof.fdata.144964.fdata /tmp/.tmpWQnUaQ/prof.fdata.144976.fdata /tmp/.tmpWQnUaQ/prof.fdata.145006.fdata /tmp/.tmpWQnUaQ/prof.fdata.145017.fdata /tmp/.tmpWQnUaQ/prof.fdata.145031.fdata /tmp/.tmpWQnUaQ/prof.fdata.145042.fdata /tmp/.tmpWQnUaQ/prof.fdata.145050.fdata /tmp/.tmpWQnUaQ/prof.fdata.145063.fdata /tmp/.tmpWQnUaQ/prof.fdata.145075.fdata /tmp/.tmpWQnUaQ/prof.fdata.145082.fdata /tmp/.tmpWQnUaQ/prof.fdata.145087.fdata /tmp/.tmpWQnUaQ/prof.fdata.145107.fdata /tmp/.tmpWQnUaQ/prof.fdata.145112.fdata /tmp/.tmpWQnUaQ/prof.fdata.145114.fdata /tmp/.tmpWQnUaQ/prof.fdata.145126.fdata /tmp/.tmpWQnUaQ/prof.fdata.145136.fdata /tmp/.tmpWQnUaQ/prof.fdata.145151.fdata /tmp/.tmpWQnUaQ/prof.fdata.145165.fdata /tmp/.tmpWQnUaQ/prof.fdata.145169.fdata /tmp/.tmpWQnUaQ/prof.fdata.145189.fdata /tmp/.tmpWQnUaQ/prof.fdata.145191.fdata /tmp/.tmpWQnUaQ/prof.fdata.145219.fdata /tmp/.tmpWQnUaQ/prof.fdata.145220.fdata /tmp/.tmpWQnUaQ/prof.fdata.145232.fdata /tmp/.tmpWQnUaQ/prof.fdata.145254.fdata /tmp/.tmpWQnUaQ/prof.fdata.145255.fdata /tmp/.tmpWQnUaQ/prof.fdata.145267.fdata /tmp/.tmpWQnUaQ/prof.fdata.145282.fdata /tmp/.tmpWQnUaQ/prof.fdata.145302.fdata /tmp/.tmpWQnUaQ/prof.fdata.145318.fdata /tmp/.tmpWQnUaQ/prof.fdata.145320.fdata /tmp/.tmpWQnUaQ/prof.fdata.145344.fdata /tmp/.tmpWQnUaQ/prof.fdata.145350.fdata /tmp/.tmpWQnUaQ/prof.fdata.145352.fdata /tmp/.tmpWQnUaQ/prof.fdata.145370.fdata /tmp/.tmpWQnUaQ/prof.fdata.145375.fdata /tmp/.tmpWQnUaQ/prof.fdata.145384.fdata /tmp/.tmpWQnUaQ/prof.fdata.145387.fdata /tmp/.tmpWQnUaQ/prof.fdata.145401.fdata /tmp/.tmpWQnUaQ/prof.fdata.145405.fdata /tmp/.tmpWQnUaQ/prof.fdata.145408.fdata /tmp/.tmpWQnUaQ/prof.fdata.145411.fdata /tmp/.tmpWQnUaQ/prof.fdata.145416.fdata /tmp/.tmpWQnUaQ/prof.fdata.145425.fdata /tmp/.tmpWQnUaQ/prof.fdata.145434.fdata /tmp/.tmpWQnUaQ/prof.fdata.145438.fdata /tmp/.tmpWQnUaQ/prof.fdata.145443.fdata /tmp/.tmpWQnUaQ/prof.fdata.145460.fdata /tmp/.tmpWQnUaQ/prof.fdata.145462.fdata /tmp/.tmpWQnUaQ/prof.fdata.145469.fdata /tmp/.tmpWQnUaQ/prof.fdata.145473.fdata /tmp/.tmpWQnUaQ/prof.fdata.145480.fdata /tmp/.tmpWQnUaQ/prof.fdata.145502.fdata /tmp/.tmpWQnUaQ/prof.fdata.145506.fdata /tmp/.tmpWQnUaQ/prof.fdata.145519.fdata /tmp/.tmpWQnUaQ/prof.fdata.145521.fdata /tmp/.tmpWQnUaQ/prof.fdata.145524.fdata /tmp/.tmpWQnUaQ/prof.fdata.145545.fdata /tmp/.tmpWQnUaQ/prof.fdata.145552.fdata /tmp/.tmpWQnUaQ/prof.fdata.145559.fdata /tmp/.tmpWQnUaQ/prof.fdata.145565.fdata /tmp/.tmpWQnUaQ/prof.fdata.145592.fdata /tmp/.tmpWQnUaQ/prof.fdata.145599.fdata /tmp/.tmpWQnUaQ/prof.fdata.145612.fdata /tmp/.tmpWQnUaQ/prof.fdata.145618.fdata /tmp/.tmpWQnUaQ/prof.fdata.145632.fdata /tmp/.tmpWQnUaQ/prof.fdata.145655.fdata /tmp/.tmpWQnUaQ/prof.fdata.145661.fdata /tmp/.tmpWQnUaQ/prof.fdata.145688.fdata /tmp/.tmpWQnUaQ/prof.fdata.145705.fdata /tmp/.tmpWQnUaQ/prof.fdata.145717.fdata /tmp/.tmpWQnUaQ/prof.fdata.145726.fdata /tmp/.tmpWQnUaQ/prof.fdata.145732.fdata /tmp/.tmpWQnUaQ/prof.fdata.145740.fdata /tmp/.tmpWQnUaQ/prof.fdata.145744.fdata /tmp/.tmpWQnUaQ/prof.fdata.145748.fdata /tmp/.tmpWQnUaQ/prof.fdata.145758.fdata /tmp/.tmpWQnUaQ/prof.fdata.145765.fdata /tmp/.tmpWQnUaQ/prof.fdata.145794.fdata /tmp/.tmpWQnUaQ/prof.fdata.145801.fdata /tmp/.tmpWQnUaQ/prof.fdata.145806.fdata /tmp/.tmpWQnUaQ/prof.fdata.145810.fdata /tmp/.tmpWQnUaQ/prof.fdata.145819.fdata /tmp/.tmpWQnUaQ/prof.fdata.145830.fdata /tmp/.tmpWQnUaQ/prof.fdata.145846.fdata /tmp/.tmpWQnUaQ/prof.fdata.145854.fdata /tmp/.tmpWQnUaQ/prof.fdata.145860.fdata /tmp/.tmpWQnUaQ/prof.fdata.145862.fdata /tmp/.tmpWQnUaQ/prof.fdata.145884.fdata /tmp/.tmpWQnUaQ/prof.fdata.145888.fdata /tmp/.tmpWQnUaQ/prof.fdata.145904.fdata /tmp/.tmpWQnUaQ/prof.fdata.145910.fdata /tmp/.tmpWQnUaQ/prof.fdata.145922.fdata /tmp/.tmpWQnUaQ/prof.fdata.145932.fdata /tmp/.tmpWQnUaQ/prof.fdata.145937.fdata /tmp/.tmpWQnUaQ/prof.fdata.145940.fdata /tmp/.tmpWQnUaQ/prof.fdata.145944.fdata /tmp/.tmpWQnUaQ/prof.fdata.145961.fdata /tmp/.tmpWQnUaQ/prof.fdata.145965.fdata /tmp/.tmpWQnUaQ/prof.fdata.145978.fdata /tmp/.tmpWQnUaQ/prof.fdata.145989.fdata /tmp/.tmpWQnUaQ/prof.fdata.145995.fdata /tmp/.tmpWQnUaQ/prof.fdata.146006.fdata /tmp/.tmpWQnUaQ/prof.fdata.146010.fdata /tmp/.tmpWQnUaQ/prof.fdata.146024.fdata /tmp/.tmpWQnUaQ/prof.fdata.146034.fdata /tmp/.tmpWQnUaQ/prof.fdata.146041.fdata /tmp/.tmpWQnUaQ/prof.fdata.146043.fdata /tmp/.tmpWQnUaQ/prof.fdata.146054.fdata /tmp/.tmpWQnUaQ/prof.fdata.146062.fdata /tmp/.tmpWQnUaQ/prof.fdata.146066.fdata /tmp/.tmpWQnUaQ/prof.fdata.146071.fdata /tmp/.tmpWQnUaQ/prof.fdata.146079.fdata /tmp/.tmpWQnUaQ/prof.fdata.146096.fdata /tmp/.tmpWQnUaQ/prof.fdata.146128.fdata /tmp/.tmpWQnUaQ/prof.fdata.146148.fdata /tmp/.tmpWQnUaQ/prof.fdata.146158.fdata /tmp/.tmpWQnUaQ/prof.fdata.146164.fdata /tmp/.tmpWQnUaQ/prof.fdata.146170.fdata /tmp/.tmpWQnUaQ/prof.fdata.146174.fdata /tmp/.tmpWQnUaQ/prof.fdata.146176.fdata /tmp/.tmpWQnUaQ/prof.fdata.146194.fdata /tmp/.tmpWQnUaQ/prof.fdata.146203.fdata /tmp/.tmpWQnUaQ/prof.fdata.146208.fdata /tmp/.tmpWQnUaQ/prof.fdata.146213.fdata /tmp/.tmpWQnUaQ/prof.fdata.146221.fdata /tmp/.tmpWQnUaQ/prof.fdata.146227.fdata /tmp/.tmpWQnUaQ/prof.fdata.146239.fdata /tmp/.tmpWQnUaQ/prof.fdata.146245.fdata /tmp/.tmpWQnUaQ/prof.fdata.146246.fdata /tmp/.tmpWQnUaQ/prof.fdata.146255.fdata /tmp/.tmpWQnUaQ/prof.fdata.146269.fdata /tmp/.tmpWQnUaQ/prof.fdata.146274.fdata /tmp/.tmpWQnUaQ/prof.fdata.146287.fdata /tmp/.tmpWQnUaQ/prof.fdata.146315.fdata /tmp/.tmpWQnUaQ/prof.fdata.146321.fdata /tmp/.tmpWQnUaQ/prof.fdata.146333.fdata /tmp/.tmpWQnUaQ/prof.fdata.146336.fdata /tmp/.tmpWQnUaQ/prof.fdata.146340.fdata /tmp/.tmpWQnUaQ/prof.fdata.146362.fdata /tmp/.tmpWQnUaQ/prof.fdata.146372.fdata /tmp/.tmpWQnUaQ/prof.fdata.146390.fdata /tmp/.tmpWQnUaQ/prof.fdata.146392.fdata /tmp/.tmpWQnUaQ/prof.fdata.146404.fdata /tmp/.tmpWQnUaQ/prof.fdata.146406.fdata /tmp/.tmpWQnUaQ/prof.fdata.146415.fdata /tmp/.tmpWQnUaQ/prof.fdata.146417.fdata /tmp/.tmpWQnUaQ/prof.fdata.146426.fdata /tmp/.tmpWQnUaQ/prof.fdata.146450.fdata /tmp/.tmpWQnUaQ/prof.fdata.146456.fdata /tmp/.tmpWQnUaQ/prof.fdata.146464.fdata /tmp/.tmpWQnUaQ/prof.fdata.146467.fdata /tmp/.tmpWQnUaQ/prof.fdata.146473.fdata /tmp/.tmpWQnUaQ/prof.fdata.146493.fdata /tmp/.tmpWQnUaQ/prof.fdata.146499.fdata /tmp/.tmpWQnUaQ/prof.fdata.146507.fdata /tmp/.tmpWQnUaQ/prof.fdata.146515.fdata /tmp/.tmpWQnUaQ/prof.fdata.146520.fdata /tmp/.tmpWQnUaQ/prof.fdata.146528.fdata /tmp/.tmpWQnUaQ/prof.fdata.146530.fdata /tmp/.tmpWQnUaQ/prof.fdata.146541.fdata /tmp/.tmpWQnUaQ/prof.fdata.146551.fdata /tmp/.tmpWQnUaQ/prof.fdata.146561.fdata /tmp/.tmpWQnUaQ/prof.fdata.146581.fdata /tmp/.tmpWQnUaQ/prof.fdata.146587.fdata /tmp/.tmpWQnUaQ/prof.fdata.146594.fdata /tmp/.tmpWQnUaQ/prof.fdata.146599.fdata /tmp/.tmpWQnUaQ/prof.fdata.146606.fdata /tmp/.tmpWQnUaQ/prof.fdata.146613.fdata /tmp/.tmpWQnUaQ/prof.fdata.146619.fdata /tmp/.tmpWQnUaQ/prof.fdata.146623.fdata /tmp/.tmpWQnUaQ/prof.fdata.146627.fdata /tmp/.tmpWQnUaQ/prof.fdata.146636.fdata /tmp/.tmpWQnUaQ/prof.fdata.146641.fdata /tmp/.tmpWQnUaQ/prof.fdata.146645.fdata /tmp/.tmpWQnUaQ/prof.fdata.146659.fdata /tmp/.tmpWQnUaQ/prof.fdata.146669.fdata /tmp/.tmpWQnUaQ/prof.fdata.146683.fdata /tmp/.tmpWQnUaQ/prof.fdata.146691.fdata /tmp/.tmpWQnUaQ/prof.fdata.146696.fdata /tmp/.tmpWQnUaQ/prof.fdata.146713.fdata /tmp/.tmpWQnUaQ/prof.fdata.146726.fdata /tmp/.tmpWQnUaQ/prof.fdata.146730.fdata /tmp/.tmpWQnUaQ/prof.fdata.146736.fdata /tmp/.tmpWQnUaQ/prof.fdata.146739.fdata /tmp/.tmpWQnUaQ/prof.fdata.146757.fdata /tmp/.tmpWQnUaQ/prof.fdata.146764.fdata /tmp/.tmpWQnUaQ/prof.fdata.146771.fdata /tmp/.tmpWQnUaQ/prof.fdata.146775.fdata /tmp/.tmpWQnUaQ/prof.fdata.146784.fdata /tmp/.tmpWQnUaQ/prof.fdata.146790.fdata /tmp/.tmpWQnUaQ/prof.fdata.146795.fdata /tmp/.tmpWQnUaQ/prof.fdata.146811.fdata /tmp/.tmpWQnUaQ/prof.fdata.146816.fdata /tmp/.tmpWQnUaQ/prof.fdata.146825.fdata /tmp/.tmpWQnUaQ/prof.fdata.146830.fdata /tmp/.tmpWQnUaQ/prof.fdata.146843.fdata /tmp/.tmpWQnUaQ/prof.fdata.146857.fdata /tmp/.tmpWQnUaQ/prof.fdata.146870.fdata /tmp/.tmpWQnUaQ/prof.fdata.146887.fdata /tmp/.tmpWQnUaQ/prof.fdata.146891.fdata /tmp/.tmpWQnUaQ/prof.fdata.146901.fdata /tmp/.tmpWQnUaQ/prof.fdata.146904.fdata /tmp/.tmpWQnUaQ/prof.fdata.146912.fdata /tmp/.tmpWQnUaQ/prof.fdata.146925.fdata /tmp/.tmpWQnUaQ/prof.fdata.146927.fdata /tmp/.tmpWQnUaQ/prof.fdata.146939.fdata /tmp/.tmpWQnUaQ/prof.fdata.146948.fdata /tmp/.tmpWQnUaQ/prof.fdata.146952.fdata /tmp/.tmpWQnUaQ/prof.fdata.146956.fdata /tmp/.tmpWQnUaQ/prof.fdata.146964.fdata /tmp/.tmpWQnUaQ/prof.fdata.146971.fdata /tmp/.tmpWQnUaQ/prof.fdata.146974.fdata /tmp/.tmpWQnUaQ/prof.fdata.146978.fdata /tmp/.tmpWQnUaQ/prof.fdata.146986.fdata /tmp/.tmpWQnUaQ/prof.fdata.147003.fdata /tmp/.tmpWQnUaQ/prof.fdata.147015.fdata /tmp/.tmpWQnUaQ/prof.fdata.147020.fdata /tmp/.tmpWQnUaQ/prof.fdata.147031.fdata /tmp/.tmpWQnUaQ/prof.fdata.147038.fdata /tmp/.tmpWQnUaQ/prof.fdata.147044.fdata /tmp/.tmpWQnUaQ/prof.fdata.147051.fdata /tmp/.tmpWQnUaQ/prof.fdata.147063.fdata /tmp/.tmpWQnUaQ/prof.fdata.147074.fdata /tmp/.tmpWQnUaQ/prof.fdata.147086.fdata /tmp/.tmpWQnUaQ/prof.fdata.147095.fdata /tmp/.tmpWQnUaQ/prof.fdata.147101.fdata /tmp/.tmpWQnUaQ/prof.fdata.147107.fdata /tmp/.tmpWQnUaQ/prof.fdata.147120.fdata /tmp/.tmpWQnUaQ/prof.fdata.147133.fdata /tmp/.tmpWQnUaQ/prof.fdata.147156.fdata /tmp/.tmpWQnUaQ/prof.fdata.147166.fdata /tmp/.tmpWQnUaQ/prof.fdata.147174.fdata /tmp/.tmpWQnUaQ/prof.fdata.147198.fdata /tmp/.tmpWQnUaQ/prof.fdata.147206.fdata /tmp/.tmpWQnUaQ/prof.fdata.147214.fdata /tmp/.tmpWQnUaQ/prof.fdata.147233.fdata /tmp/.tmpWQnUaQ/prof.fdata.147262.fdata /tmp/.tmpWQnUaQ/prof.fdata.147309.fdata /tmp/.tmpWQnUaQ/prof.fdata.147340.fdata /tmp/.tmpWQnUaQ/prof.fdata.147347.fdata /tmp/.tmpWQnUaQ/prof.fdata.147370.fdata /tmp/.tmpWQnUaQ/prof.fdata.147383.fdata /tmp/.tmpWQnUaQ/prof.fdata.147408.fdata /tmp/.tmpWQnUaQ/prof.fdata.147423.fdata /tmp/.tmpWQnUaQ/prof.fdata.147447.fdata /tmp/.tmpWQnUaQ/prof.fdata.147463.fdata /tmp/.tmpWQnUaQ/prof.fdata.147481.fdata /tmp/.tmpWQnUaQ/prof.fdata.147528.fdata /tmp/.tmpWQnUaQ/prof.fdata.147533.fdata /tmp/.tmpWQnUaQ/prof.fdata.147536.fdata /tmp/.tmpWQnUaQ/prof.fdata.147546.fdata /tmp/.tmpWQnUaQ/prof.fdata.147554.fdata /tmp/.tmpWQnUaQ/prof.fdata.147561.fdata /tmp/.tmpWQnUaQ/prof.fdata.147569.fdata /tmp/.tmpWQnUaQ/prof.fdata.147588.fdata /tmp/.tmpWQnUaQ/prof.fdata.147592.fdata /tmp/.tmpWQnUaQ/prof.fdata.147593.fdata /tmp/.tmpWQnUaQ/prof.fdata.147608.fdata /tmp/.tmpWQnUaQ/prof.fdata.147632.fdata /tmp/.tmpWQnUaQ/prof.fdata.147646.fdata /tmp/.tmpWQnUaQ/prof.fdata.147650.fdata /tmp/.tmpWQnUaQ/prof.fdata.147662.fdata /tmp/.tmpWQnUaQ/prof.fdata.147667.fdata /tmp/.tmpWQnUaQ/prof.fdata.147696.fdata /tmp/.tmpWQnUaQ/prof.fdata.147706.fdata /tmp/.tmpWQnUaQ/prof.fdata.147708.fdata /tmp/.tmpWQnUaQ/prof.fdata.147712.fdata /tmp/.tmpWQnUaQ/prof.fdata.147719.fdata /tmp/.tmpWQnUaQ/prof.fdata.147731.fdata /tmp/.tmpWQnUaQ/prof.fdata.147776.fdata /tmp/.tmpWQnUaQ/prof.fdata.147799.fdata /tmp/.tmpWQnUaQ/prof.fdata.147803.fdata /tmp/.tmpWQnUaQ/prof.fdata.147819.fdata /tmp/.tmpWQnUaQ/prof.fdata.147877.fdata /tmp/.tmpWQnUaQ/prof.fdata.147885.fdata /tmp/.tmpWQnUaQ/prof.fdata.147893.fdata /tmp/.tmpWQnUaQ/prof.fdata.147925.fdata /tmp/.tmpWQnUaQ/prof.fdata.148012.fdata /tmp/.tmpWQnUaQ/prof.fdata.148069.fdata /tmp/.tmpWQnUaQ/prof.fdata.148243.fdata /tmp/.tmpWQnUaQ/prof.fdata.148282.fdata /tmp/.tmpWQnUaQ/prof.fdata.148292.fdata /tmp/.tmpWQnUaQ/prof.fdata.148375.fdata /tmp/.tmpWQnUaQ/prof.fdata.149651.fdata /tmp/.tmpWQnUaQ/prof.fdata.149727.fdata /tmp/.tmpWQnUaQ/prof.fdata.149766.fdata /tmp/.tmpWQnUaQ/prof.fdata.149919.fdata /tmp/.tmpWQnUaQ/prof.fdata.149997.fdata /tmp/.tmpWQnUaQ/prof.fdata.150012.fdata /tmp/.tmpWQnUaQ/prof.fdata.150261.fdata /tmp/.tmpWQnUaQ/prof.fdata.150517.fdata /tmp/.tmpWQnUaQ/prof.fdata.150793.fdata /tmp/.tmpWQnUaQ/prof.fdata.150804.fdata /tmp/.tmpWQnUaQ/prof.fdata.150811.fdata /tmp/.tmpWQnUaQ/prof.fdata.150820.fdata /tmp/.tmpWQnUaQ/prof.fdata.150835.fdata /tmp/.tmpWQnUaQ/prof.fdata.150860.fdata /tmp/.tmpWQnUaQ/prof.fdata.150867.fdata /tmp/.tmpWQnUaQ/prof.fdata.150871.fdata /tmp/.tmpWQnUaQ/prof.fdata.150879.fdata /tmp/.tmpWQnUaQ/prof.fdata.150931.fdata /tmp/.tmpWQnUaQ/prof.fdata.150944.fdata /tmp/.tmpWQnUaQ/prof.fdata.150954.fdata /tmp/.tmpWQnUaQ/prof.fdata.150964.fdata /tmp/.tmpWQnUaQ/prof.fdata.150975.fdata /tmp/.tmpWQnUaQ/prof.fdata.150986.fdata /tmp/.tmpWQnUaQ/prof.fdata.151012.fdata /tmp/.tmpWQnUaQ/prof.fdata.151278.fdata /tmp/.tmpWQnUaQ/prof.fdata.151545.fdata /tmp/.tmpWQnUaQ/prof.fdata.151812.fdata /tmp/.tmpWQnUaQ/prof.fdata.151854.fdata /tmp/.tmpWQnUaQ/prof.fdata.152376.fdata /tmp/.tmpWQnUaQ/prof.fdata.152643.fdata /tmp/.tmpWQnUaQ/prof.fdata.152917.fdata /tmp/.tmpWQnUaQ/prof.fdata.152918.fdata /tmp/.tmpWQnUaQ/prof.fdata.152919.fdata /tmp/.tmpWQnUaQ/prof.fdata.152923.fdata /tmp/.tmpWQnUaQ/prof.fdata.152924.fdata /tmp/.tmpWQnUaQ/prof.fdata.152925.fdata /tmp/.tmpWQnUaQ/prof.fdata.152932.fdata /tmp/.tmpWQnUaQ/prof.fdata.152933.fdata /tmp/.tmpWQnUaQ/prof.fdata.152934.fdata /tmp/.tmpWQnUaQ/prof.fdata.152953.fdata /tmp/.tmpWQnUaQ/prof.fdata.152963.fdata /tmp/.tmpWQnUaQ/prof.fdata.152973.fdata /tmp/.tmpWQnUaQ/prof.fdata.152984.fdata /tmp/.tmpWQnUaQ/prof.fdata.152995.fdata /tmp/.tmpWQnUaQ/prof.fdata.153006.fdata /tmp/.tmpWQnUaQ/prof.fdata.153018.fdata /tmp/.tmpWQnUaQ/prof.fdata.153030.fdata /tmp/.tmpWQnUaQ/prof.fdata.153042.fdata /tmp/.tmpWQnUaQ/prof.fdata.153060.fdata /tmp/.tmpWQnUaQ/prof.fdata.153061.fdata /tmp/.tmpWQnUaQ/prof.fdata.153062.fdata /tmp/.tmpWQnUaQ/prof.fdata.153066.fdata /tmp/.tmpWQnUaQ/prof.fdata.153067.fdata /tmp/.tmpWQnUaQ/prof.fdata.153068.fdata /tmp/.tmpWQnUaQ/prof.fdata.153075.fdata /tmp/.tmpWQnUaQ/prof.fdata.153076.fdata /tmp/.tmpWQnUaQ/prof.fdata.153077.fdata /tmp/.tmpWQnUaQ/prof.fdata.153091.fdata /tmp/.tmpWQnUaQ/prof.fdata.153092.fdata /tmp/.tmpWQnUaQ/prof.fdata.153093.fdata /tmp/.tmpWQnUaQ/prof.fdata.153094.fdata /tmp/.tmpWQnUaQ/prof.fdata.153095.fdata /tmp/.tmpWQnUaQ/prof.fdata.153096.fdata /tmp/.tmpWQnUaQ/prof.fdata.153097.fdata /tmp/.tmpWQnUaQ/prof.fdata.153098.fdata /tmp/.tmpWQnUaQ/prof.fdata.153104.fdata /tmp/.tmpWQnUaQ/prof.fdata.153105.fdata /tmp/.tmpWQnUaQ/prof.fdata.153106.fdata /tmp/.tmpWQnUaQ/prof.fdata.153107.fdata /tmp/.tmpWQnUaQ/prof.fdata.153200.fdata /tmp/.tmpWQnUaQ/prof.fdata.153204.fdata /tmp/.tmpWQnUaQ/prof.fdata.153207.fdata /tmp/.tmpWQnUaQ/prof.fdata.153213.fdata /tmp/.tmpWQnUaQ/prof.fdata.153215.fdata /tmp/.tmpWQnUaQ/prof.fdata.153221.fdata /tmp/.tmpWQnUaQ/prof.fdata.153230.fdata /tmp/.tmpWQnUaQ/prof.fdata.153236.fdata /tmp/.tmpWQnUaQ/prof.fdata.153242.fdata /tmp/.tmpWQnUaQ/prof.fdata.153246.fdata /tmp/.tmpWQnUaQ/prof.fdata.153250.fdata /tmp/.tmpWQnUaQ/prof.fdata.153255.fdata /tmp/.tmpWQnUaQ/prof.fdata.153267.fdata /tmp/.tmpWQnUaQ/prof.fdata.153280.fdata /tmp/.tmpWQnUaQ/prof.fdata.153287.fdata /tmp/.tmpWQnUaQ/prof.fdata.153346.fdata /tmp/.tmpWQnUaQ/prof.fdata.153350.fdata /tmp/.tmpWQnUaQ/prof.fdata.153373.fdata /tmp/.tmpWQnUaQ/prof.fdata.153432.fdata /tmp/.tmpWQnUaQ/prof.fdata.153442.fdata /tmp/.tmpWQnUaQ/prof.fdata.153452.fdata /tmp/.tmpWQnUaQ/prof.fdata.153463.fdata /tmp/.tmpWQnUaQ/prof.fdata.153474.fdata /tmp/.tmpWQnUaQ/prof.fdata.153485.fdata /tmp/.tmpWQnUaQ/prof.fdata.153539.fdata /tmp/.tmpWQnUaQ/prof.fdata.153594.fdata /tmp/.tmpWQnUaQ/prof.fdata.153649.fdata /tmp/.tmpWQnUaQ/prof.fdata.153661.fdata /tmp/.tmpWQnUaQ/prof.fdata.153723.fdata /tmp/.tmpWQnUaQ/prof.fdata.153760.fdata /tmp/.tmpWQnUaQ/prof.fdata.153803.fdata /tmp/.tmpWQnUaQ/prof.fdata.153804.fdata /tmp/.tmpWQnUaQ/prof.fdata.153805.fdata /tmp/.tmpWQnUaQ/prof.fdata.153809.fdata /tmp/.tmpWQnUaQ/prof.fdata.153810.fdata /tmp/.tmpWQnUaQ/prof.fdata.153811.fdata /tmp/.tmpWQnUaQ/prof.fdata.153818.fdata /tmp/.tmpWQnUaQ/prof.fdata.153819.fdata /tmp/.tmpWQnUaQ/prof.fdata.153820.fdata /tmp/.tmpWQnUaQ/prof.fdata.153839.fdata /tmp/.tmpWQnUaQ/prof.fdata.153849.fdata /tmp/.tmpWQnUaQ/prof.fdata.153859.fdata /tmp/.tmpWQnUaQ/prof.fdata.153870.fdata /tmp/.tmpWQnUaQ/prof.fdata.153881.fdata /tmp/.tmpWQnUaQ/prof.fdata.153892.fdata /tmp/.tmpWQnUaQ/prof.fdata.153904.fdata /tmp/.tmpWQnUaQ/prof.fdata.153916.fdata /tmp/.tmpWQnUaQ/prof.fdata.153928.fdata /tmp/.tmpWQnUaQ/prof.fdata.153946.fdata /tmp/.tmpWQnUaQ/prof.fdata.153947.fdata /tmp/.tmpWQnUaQ/prof.fdata.153948.fdata /tmp/.tmpWQnUaQ/prof.fdata.153952.fdata /tmp/.tmpWQnUaQ/prof.fdata.153953.fdata /tmp/.tmpWQnUaQ/prof.fdata.153954.fdata /tmp/.tmpWQnUaQ/prof.fdata.153961.fdata /tmp/.tmpWQnUaQ/prof.fdata.153962.fdata /tmp/.tmpWQnUaQ/prof.fdata.153963.fdata /tmp/.tmpWQnUaQ/prof.fdata.153982.fdata /tmp/.tmpWQnUaQ/prof.fdata.153992.fdata /tmp/.tmpWQnUaQ/prof.fdata.154002.fdata /tmp/.tmpWQnUaQ/prof.fdata.154013.fdata /tmp/.tmpWQnUaQ/prof.fdata.154024.fdata /tmp/.tmpWQnUaQ/prof.fdata.154037.fdata /tmp/.tmpWQnUaQ/prof.fdata.154051.fdata /tmp/.tmpWQnUaQ/prof.fdata.154063.fdata /tmp/.tmpWQnUaQ/prof.fdata.154079.fdata /tmp/.tmpWQnUaQ/prof.fdata.154099.fdata /tmp/.tmpWQnUaQ/prof.fdata.154100.fdata /tmp/.tmpWQnUaQ/prof.fdata.154101.fdata /tmp/.tmpWQnUaQ/prof.fdata.154105.fdata /tmp/.tmpWQnUaQ/prof.fdata.154106.fdata /tmp/.tmpWQnUaQ/prof.fdata.154107.fdata /tmp/.tmpWQnUaQ/prof.fdata.154114.fdata /tmp/.tmpWQnUaQ/prof.fdata.154115.fdata /tmp/.tmpWQnUaQ/prof.fdata.154116.fdata /tmp/.tmpWQnUaQ/prof.fdata.154123.fdata /tmp/.tmpWQnUaQ/prof.fdata.154125.fdata /tmp/.tmpWQnUaQ/prof.fdata.154128.fdata /tmp/.tmpWQnUaQ/prof.fdata.154165.fdata /tmp/.tmpWQnUaQ/prof.fdata.154175.fdata /tmp/.tmpWQnUaQ/prof.fdata.154185.fdata /tmp/.tmpWQnUaQ/prof.fdata.154196.fdata /tmp/.tmpWQnUaQ/prof.fdata.154210.fdata /tmp/.tmpWQnUaQ/prof.fdata.154228.fdata /tmp/.tmpWQnUaQ/prof.fdata.154247.fdata /tmp/.tmpWQnUaQ/prof.fdata.154262.fdata /tmp/.tmpWQnUaQ/prof.fdata.154281.fdata /tmp/.tmpWQnUaQ/prof.fdata.154304.fdata /tmp/.tmpWQnUaQ/prof.fdata.154305.fdata /tmp/.tmpWQnUaQ/prof.fdata.154306.fdata /tmp/.tmpWQnUaQ/prof.fdata.154310.fdata /tmp/.tmpWQnUaQ/prof.fdata.154311.fdata /tmp/.tmpWQnUaQ/prof.fdata.154312.fdata /tmp/.tmpWQnUaQ/prof.fdata.154319.fdata /tmp/.tmpWQnUaQ/prof.fdata.154320.fdata /tmp/.tmpWQnUaQ/prof.fdata.154321.fdata /tmp/.tmpWQnUaQ/prof.fdata.154340.fdata /tmp/.tmpWQnUaQ/prof.fdata.154350.fdata /tmp/.tmpWQnUaQ/prof.fdata.154360.fdata /tmp/.tmpWQnUaQ/prof.fdata.154371.fdata /tmp/.tmpWQnUaQ/prof.fdata.154382.fdata /tmp/.tmpWQnUaQ/prof.fdata.154396.fdata /tmp/.tmpWQnUaQ/prof.fdata.154414.fdata /tmp/.tmpWQnUaQ/prof.fdata.154433.fdata /tmp/.tmpWQnUaQ/prof.fdata.154452.fdata /tmp/.tmpWQnUaQ/prof.fdata.154467.fdata /tmp/.tmpWQnUaQ/prof.fdata.154486.fdata /tmp/.tmpWQnUaQ/prof.fdata.154503.fdata > "/tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata" [at /checkout/obj]`
Profile from 641 files merged.
##[endgroup]
[2025-02-02T03:37:38.153Z INFO  opt_dist::training] rustc BOLT statistics
[2025-02-02T03:37:38.153Z INFO  opt_dist::training] /tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata: 175.27 MiB
---
    0: Cannot execute tests
    1: Command COMPILETEST_ENABLE_DIST_TESTS=1 COMPILETEST_FORCE_STAGE0=1 python3 /checkout/x.py test --build x86_64-unknown-linux-gnu --stage 0 tests/assembly tests/codegen tests/codegen-units tests/incremental tests/mir-opt tests/pretty tests/run-make/glibc-symbols-x86_64-unknown-linux-gnu tests/ui tests/crashes [at /checkout/obj] has failed with exit code Some(1)

Stack backtrace:
   0: <anyhow::Error>::msg::<alloc::string::String>
             at /rust/deps/anyhow-1.0.95/src/backtrace.rs:27:14
   1: <opt_dist::exec::CmdBuilder>::run
             at /rustc/50da8aa725f1f3166e6378bc3272364542c4c0a4/src/tools/opt-dist/src/exec.rs:80:17
             at /rustc/50da8aa725f1f3166e6378bc3272364542c4c0a4/src/tools/opt-dist/src/tests.rs:113:5
   3: opt_dist::execute_pipeline::{closure#5}
             at /rustc/50da8aa725f1f3166e6378bc3272364542c4c0a4/src/tools/opt-dist/src/main.rs:348:40
             at /rustc/50da8aa725f1f3166e6378bc3272364542c4c0a4/src/tools/opt-dist/src/main.rs:348:40
   4: <opt_dist::timer::TimerSection>::section::<opt_dist::execute_pipeline::{closure#5}, ()>
             at /rustc/50da8aa725f1f3166e6378bc3272364542c4c0a4/src/tools/opt-dist/src/timer.rs:111:22
             at /rustc/50da8aa725f1f3166e6378bc3272364542c4c0a4/src/tools/opt-dist/src/main.rs:348:9
   6: opt_dist::main
             at /rustc/50da8aa725f1f3166e6378bc3272364542c4c0a4/src/tools/opt-dist/src/main.rs:399:18
   7: <fn() -> core::result::Result<(), anyhow::Error> as core::ops::function::FnOnce<()>>::call_once
   7: <fn() -> core::result::Result<(), anyhow::Error> as core::ops::function::FnOnce<()>>::call_once
             at /rustc/e30eefff41038ceea427009023627d6d66b36715/library/core/src/ops/function.rs:250:5
   8: std::sys::backtrace::__rust_begin_short_backtrace::<fn() -> core::result::Result<(), anyhow::Error>, core::result::Result<(), anyhow::Error>>
             at /rustc/e30eefff41038ceea427009023627d6d66b36715/library/std/src/sys/backtrace.rs:152:18
   9: std::rt::lang_start::<core::result::Result<(), anyhow::Error>>::{closure#0}
             at /rustc/e30eefff41038ceea427009023627d6d66b36715/library/std/src/rt.rs:195:18
  10: core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once
             at /rustc/e30eefff41038ceea427009023627d6d66b36715/library/core/src/ops/function.rs:284:13
             at /rustc/e30eefff41038ceea427009023627d6d66b36715/library/std/src/panicking.rs:584:40
  12: std::panicking::try
             at /rustc/e30eefff41038ceea427009023627d6d66b36715/library/std/src/panicking.rs:547:19
  13: std::panic::catch_unwind

@bors
Copy link
Contributor

bors commented Feb 2, 2025

💔 Test failed - checks-actions

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Feb 2, 2025
@Mark-Simulacrum
Copy link
Member Author

tests/ui/threads-sendsync/tcp-stress.rs

@bors retry rollup=iffy

I'm going to hope that's a spurious test failure.

@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 Feb 2, 2025
@bors
Copy link
Contributor

bors commented Feb 4, 2025

⌛ Testing commit 7f1231c with merge e5f11af...

@bors
Copy link
Contributor

bors commented Feb 5, 2025

☀️ Test successful - checks-actions
Approved by: RalfJung
Pushing e5f11af to master...

@bors bors added the merged-by-bors This PR was explicitly merged by bors. label Feb 5, 2025
@bors bors merged commit e5f11af into rust-lang:master Feb 5, 2025
7 checks passed
@rustbot rustbot added this to the 1.86.0 milestone Feb 5, 2025
@rust-timer
Copy link
Collaborator

Finished benchmarking commit (e5f11af): comparison URL.

Overall result: ✅ improvements - no action needed

@rustbot label: -perf-regression

Instruction count

This is the most reliable metric that we have; it was used to determine the overall result at the top of this comment. However, even this metric can sometimes exhibit noise.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-0.3% [-0.3%, -0.3%] 3
All ❌✅ (primary) - - 0

Max RSS (memory usage)

Results (primary 3.4%)

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.

mean range count
Regressions ❌
(primary)
3.4% [3.4%, 3.4%] 1
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) 3.4% [3.4%, 3.4%] 1

Cycles

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

Binary size

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

Bootstrap: 777.434s -> 777.31s (-0.02%)
Artifact size: 328.75 MiB -> 328.75 MiB (0.00%)

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. perf-regression-triaged The performance regression has been triaged. 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.

6 participants