Skip to content

Commit a050d6b

Browse files
committed
Add bitmaps and diesel to rustc PGO benchmarks
1 parent 67a9bcb commit a050d6b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ COPY host-x86_64/dist-x86_64-linux/build-clang.sh /tmp/
9898
RUN ./build-clang.sh
9999
ENV CC=clang CXX=clang++
100100

101-
# rustc-perf version from 2022-04-05
102-
ENV PERF_COMMIT 04fccd80396f954b339c366e30221f4bd52c5e03
101+
# rustc-perf version from 2022-05-18
102+
ENV PERF_COMMIT f66cc8f3e04392b0e2fd811f21fd1ece6ebaded3
103103
RUN curl -LS -o perf.zip https://github.com/rust-lang/rustc-perf/archive/$PERF_COMMIT.zip && \
104104
unzip perf.zip && \
105105
mv rustc-perf-$PERF_COMMIT rustc-perf && \

src/ci/pgo.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/bin/bash
2+
# ignore-tidy-linelength
23

34
set -euxo pipefail
45

@@ -87,7 +88,7 @@ python3 ../x.py build --target=$PGO_HOST --host=$PGO_HOST \
8788
# That's why we override the profile path to include the PID. This will produce many more profiling
8889
# files, but the resulting profile will produce a slightly faster rustc binary.
8990
LLVM_PROFILE_FILE=/tmp/rustc-pgo/default_%m_%p.profraw gather_profiles "Check,Debug,Opt" "All" \
90-
"externs,ctfe-stress-4,cargo-0.60.0,token-stream-stress,match-stress,tuple-stress"
91+
"externs,ctfe-stress-5,cargo-0.60.0,token-stream-stress,match-stress,tuple-stress,diesel-1.4.8,bitmaps-3.1.0"
9192

9293
# Merge the profile data we gathered
9394
./build/$PGO_HOST/llvm/bin/llvm-profdata \

0 commit comments

Comments
 (0)