lean4-htt/tests/bench
Sebastian Ullrich 3ed67138d5 chore(*): update equation syntax in files and old parser
for f in ../../**/*.lean; do echo $f; ./patch.lean.out $f > tmp && cat tmp > $f; done
2019-08-09 11:11:34 +02:00
..
.gitignore
accumulate_profile.py chore(tests/bench/speedcenter.exec.yaml): stdlib: time imports 2019-07-05 15:54:35 +02:00
arith_eval.ml
binarytrees.ghc-6.hs
binarytrees.lean chore(*): update equation syntax in files and old parser 2019-08-09 11:11:34 +02:00
binarytrees.ocaml-2.ml
binarytrees.swift feat(tests/bench): add safe binarytrees.swift from https://benchmarksgame-team.pages.debian.net/benchmarksgame/program/binarytrees-swift-1.html 2019-05-30 19:33:38 +02:00
compile.sh
const_fold.hs chore(tests/bench): rename benchmarks 2019-05-30 16:25:41 +02:00
const_fold.lean chore(*): update equation syntax in files and old parser 2019-08-09 11:11:34 +02:00
const_fold.ml chore(tests/bench): rename benchmarks 2019-05-30 16:25:41 +02:00
const_fold.sml chore(tests/bench): rename benchmarks 2019-05-30 16:25:41 +02:00
const_fold.swift chore(tests/bench): rename benchmarks 2019-05-30 16:25:41 +02:00
cross.yaml chore(tests/bench/temci.yaml): move out of the way 2019-07-04 14:54:25 +02:00
default.nix feat(tests/bench): add Swift support 2019-05-30 19:33:23 +02:00
deriv.hs
deriv.lean chore(*): update equation syntax in files and old parser 2019-08-09 11:11:34 +02:00
deriv.ml
deriv.sml
deriv.swift test(tests/bench): add deriv.swift 2019-05-30 11:34:58 -07:00
frontend_test.lean chore(tests/bench): fix benchmarks 2019-06-30 13:29:23 +02:00
ghc-gc.py
lean-gc.py
Makefile chore(tests/bench/temci.yaml): move out of the way 2019-07-04 14:54:25 +02:00
mlkit-gc.py
nixpkgs.nix
ocaml-gc.py
perf.py
qsort.hs
qsort.lean chore(tests/bench): fix tests 2019-07-03 08:37:40 -07:00
qsort.ml
qsort.sml
qsort.swift feat(tests/bench): add qsort.swift 2019-05-31 00:40:09 +02:00
rbmap.hs
rbmap.lean chore(*): update equation syntax in files and old parser 2019-08-09 11:11:34 +02:00
rbmap.library.lean chore(*): update equation syntax in files and old parser 2019-08-09 11:11:34 +02:00
rbmap.ml
rbmap.sml
rbmap.swift tests(tests/bench): add rbmap.swift 2019-05-30 14:47:06 -07:00
rbmap2.lean chore(*): update equation syntax in files and old parser 2019-08-09 11:11:34 +02:00
rbmap3.lean chore(*): update equation syntax in files and old parser 2019-08-09 11:11:34 +02:00
rbmap4.lean chore(*): update equation syntax in files and old parser 2019-08-09 11:11:34 +02:00
rbmap_checkpoint.hs chore(tests/bench/rbmap_checkpoint): myLen version for GHC 2019-05-30 07:35:22 -07:00
rbmap_checkpoint.lean chore(*): update equation syntax in files and old parser 2019-08-09 11:11:34 +02:00
rbmap_checkpoint.ml test(tests/bench/rbmap_checkpoint): OCaml version using myLen 2019-05-30 07:40:53 -07:00
rbmap_checkpoint.sml chore(tests/bench/rbmap_checkpoint): use myLean 2019-05-30 07:30:07 -07:00
rbmap_checkpoint.swift test(tests/bench/rbmap_checkpoint): add swift version 2019-05-30 14:35:58 -07:00
rbmap_checkpoint2.lean chore(*): update equation syntax in files and old parser 2019-08-09 11:11:34 +02:00
rbmap_checkpoint2.sml
rbmap_checkpoint_cpp_lean3.cpp test(tests/bench): add C++ versions of rbmap benchmarks 2019-06-22 06:58:27 -07:00
rbmap_checkpoint_cpp_std.cpp test(tests/bench): add C++ versions of rbmap benchmarks 2019-06-22 06:58:27 -07:00
rbmap_cpp_lean3.cpp test(tests/bench): add C++ versions of rbmap benchmarks 2019-06-22 06:58:27 -07:00
rbmap_cpp_std.cpp test(tests/bench): add C++ versions of rbmap benchmarks 2019-06-22 06:58:27 -07:00
README.md doc(tests/bench/README): update speedcenter URL 2019-07-05 16:23:07 +02:00
report.py chore(tests/bench): further tweak Swift support 2019-05-31 10:48:50 +02:00
run.sh
speedcenter.exec.yaml chore(tests/bench/speedcenter.exec.yaml): stdlib: time imports 2019-07-05 15:54:35 +02:00
speedcenter.yaml chore(tests/bench/speedcenter.yaml): update temci config 2019-07-04 14:43:04 +02:00
unionfind.lean chore(frontends/lean): use => instead of := in match-expressions 2019-07-04 11:38:38 -07:00
unionfind_clean.lean chore(frontends/lean): use => instead of := in match-expressions 2019-07-04 11:38:38 -07:00

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" (to appear).

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 frontend 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-shell --run make

This will record 50 runs for each benchmark configuration (this can be changed with min_runs in temci.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:

nix-shell --run "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.