chore: move more radar bench logic to this repo (#13633)
These commands were previously executed in the radar-bench-lean4 repository, but are now moved here for additional control.
This commit is contained in:
parent
c8191c5e2c
commit
9e5c86eac9
2 changed files with 20 additions and 0 deletions
11
tests/bench_build.sh
Executable file
11
tests/bench_build.sh
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# This script must be called from the repo root.
|
||||
# The radar environment variables must be provided.
|
||||
# See also the https://github.com/leanprover/radar readme.
|
||||
|
||||
cmake --preset release -DWFAIL=OFF
|
||||
make -C build/release -j"$(nproc)" bench-part1
|
||||
mv tests/part1.measurements.jsonl "$RADAR_OUT"
|
||||
|
||||
tests/bench/build/lakeprof_report_upload.py
|
||||
9
tests/bench_other.sh
Executable file
9
tests/bench_other.sh
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# This script must be called from the repo root.
|
||||
# The radar environment variables must be provided.
|
||||
# See also the https://github.com/leanprover/radar readme.
|
||||
|
||||
cmake --preset release -DWFAIL=OFF
|
||||
make -C build/release -j"$(nproc)" bench-part2
|
||||
mv tests/part2.measurements.jsonl "$RADAR_OUT"
|
||||
Loading…
Add table
Reference in a new issue