lean4-htt/tests/bench
2024-04-17 18:10:32 +00:00
..
inundation chore: remove the coercion from String to Name (#3589) 2024-03-21 23:46:03 +00:00
.gitignore test: lake: add build Init/Lean/Lake benchmark 2023-09-22 20:05:20 +02:00
accumulate_profile.py chore: include full build in stdlib benchmark (#3104) 2023-12-23 16:27:07 +00:00
arith_eval.ml
binarytrees.ghc-6.hs
binarytrees.lean
binarytrees.lean.args
binarytrees.lean.expected.out
binarytrees.ocaml-2.ml
binarytrees.st.hs
binarytrees.st.lean
binarytrees.st.mlton-2.sml
binarytrees.st.sml
binarytrees.st.swift
binarytrees.swift
binarytrees5.ml
binarytrees5_multicore.ml
compile.sh
const_fold.hs
const_fold.lean
const_fold.lean.args
const_fold.lean.expected.out
const_fold.ml
const_fold.sml
const_fold.swift
cross.yaml chore: fix more typos in comments 2023-10-08 14:37:34 -07:00
dag_hassorry_issue.lean
dag_hassorry_issue.lean.args
dag_hassorry_issue.lean.expected.out
deriv.hs
deriv.lean
deriv.lean.args
deriv.lean.expected.out
deriv.ml
deriv.sml
deriv.swift
ex-50-50-1.leq
flake.lock chore: update cross-bench setup 2024-04-15 10:59:07 +02:00
flake.nix chore: update cross-bench setup 2024-04-15 10:59:07 +02:00
full-stdlib.exec.yaml
ghc-gc.py
lean-gc.py
liasolver.lean fix: liasolver benchmark bug introduced by #3364 (#3372) 2024-02-16 23:39:26 +00:00
liasolver.lean.args
liasolver.lean.expected.out
Makefile chore: update cross-bench setup 2024-04-15 10:59:07 +02:00
mlkit-gc.py
nat_repr.lean chore: Nat.repr microbenchmark (#3888) 2024-04-17 18:10:32 +00:00
nat_repr.lean.args chore: Nat.repr microbenchmark (#3888) 2024-04-17 18:10:32 +00:00
nat_repr.lean.expected.out chore: Nat.repr microbenchmark (#3888) 2024-04-17 18:10:32 +00:00
ocaml-gc.py
parser.lean
perf.py
qsort.hs
qsort.lean
qsort.lean.args
qsort.lean.expected.out
qsort.ml
qsort.sml
qsort.swift
rbmap.hs
rbmap.lean
rbmap.lean.args
rbmap.lean.expected.out
rbmap.ml
rbmap.sml
rbmap.swift
rbmap2.lean
rbmap3.lean
rbmap500k.lean
rbmap_checkpoint.hs
rbmap_checkpoint.lean
rbmap_checkpoint.lean.args
rbmap_checkpoint.lean.expected.out
rbmap_checkpoint.ml
rbmap_checkpoint.sml
rbmap_checkpoint.swift
rbmap_checkpoint2.lean
rbmap_checkpoint2.sml
rbmap_checkpoint_cpp_lean3.cpp
rbmap_checkpoint_cpp_std.cpp
rbmap_cpp_lean3.cpp
rbmap_cpp_std.cpp
rbmap_fbip.lean
rbmap_library.lean
README.md chore: update cross-bench setup 2024-04-15 10:59:07 +02:00
reduceMatch.lean chore: upstream omega (#3367) 2024-02-19 00:19:55 +00:00
report.py
run.sh
server_startup.lean test: add language server startup benchmark (#3558) 2024-03-04 09:01:51 +00:00
server_startup.log test: add language server startup benchmark (#3558) 2024-03-04 09:01:51 +00:00
speedcenter.exec.velcom.yaml chore: Nat.repr microbenchmark (#3888) 2024-04-17 18:10:32 +00:00
speedcenter.yaml chore: fix more typos in comments 2023-10-08 14:37:34 -07:00
states35.lean
test_single.sh
unionfind.lean
unionfind.lean.args
unionfind.lean.expected.out
unionfind_clean.lean
workspaceSymbols.lean

Lean Benchmark Suites

This folder contains multiple small Lean programs for benchmarking used by two separate benchmark suites based on the temci benchmarking tool:

  • The light-weight "Speedcenter" suite benchmarks the current build of Lean. It can be used for quick comparisons on the cmdline and powers the Lean Speedcenter website.
  • The heavy-weight "Cross" suite benchmarks multiple Lean configurations and other functional compilers against each other and generates CSV and HTML reports from that. It was created for the paper "Counting Immutable Beans - Reference Counting Optimized for Purely Functional Programming" (IFL19).

Speedcenter Suite

Requirements:

  • A local Lean build in ../../build/release. Build at least the bin target.
  • temci. Using Nix, open a nix-shell in the project root directory to add a compatible version to your PATH. Alternatively, try pip3 install git+https://github.com/parttimenerd/temci.git.

To execute the suite and save the results in base.yaml, run (in this folder)

temci exec --config speedcenter.yaml --out base.yaml

Other interesting exec flags:

  • use --runs N to modify the default number of 10 runs per benchmark
  • use --included_blocks fast to excluded slow benchmarks like the stdlib benchmark. You can replace fast with any benchmark name or label in speedcenter.exec.yaml.

If you have multiple saved result files, you can compare them with

temci report --config speedcenter.yaml report1.yaml report2.yaml ...

Cross Suite

We recommend using Nix for building/obtaining all Lean variants and used compilers in a reproducible way. After installing Nix, running the benchmarks is as easy as

nix develop
make

This will record 50 runs for each benchmark configuration (this can be changed with runs in cross.yaml), generate results in report_lean.csv and report_cross.csv, and print them to stdout in a tabulated format. It will also generate HTML reports in report/ comparing the time-based benchmarks.

In order to reduce noise in the benchmarking data, you may instead want to try calling make inside a temci shell:

temci short shell --sudo --preset usable --cpuset_active make

Using root powers, this will temporarily configure your machine similarly to the LLVM benchmarking recommendations and move all your other processes to a single CPU core.