lean4-htt/tests/bench
2020-01-12 08:02:48 -08:00
..
.gitignore
accumulate_profile.py
arith_eval.ml
binarytrees.ghc-6.hs
binarytrees.lean chore: fix tests 2019-10-27 18:29:51 -07:00
binarytrees.lean.args test(tests/bench): add benchmarks as regular ctests with lowered inputs 2019-09-02 10:52:24 +02:00
binarytrees.lean.expected.out test(tests/bench): add benchmarks as regular ctests with lowered inputs 2019-09-02 10:52:24 +02:00
binarytrees.ocaml-2.ml
binarytrees.swift
compile.sh chore: fix tests 2019-11-22 07:56:06 -08:00
const_fold.hs
const_fold.lean chore(tests/bench): parameterize all benchmarks 2019-08-29 18:38:39 +02:00
const_fold.lean.args test(tests/bench): add benchmarks as regular ctests with lowered inputs 2019-09-02 10:52:24 +02:00
const_fold.lean.expected.out test(tests/bench): add benchmarks as regular ctests with lowered inputs 2019-09-02 10:52:24 +02:00
const_fold.ml
const_fold.sml
const_fold.swift
cross.nix refactor: rename all Default.lean files except for Init/Default.lean 2019-11-19 13:52:21 +01:00
cross.yaml test(tests/bench): further updates 2019-09-25 11:03:14 +02:00
deriv.hs
deriv.lean chore(tests/bench): parameterize all benchmarks 2019-08-29 18:38:39 +02:00
deriv.lean.args test(tests/bench): add benchmarks as regular ctests with lowered inputs 2019-09-02 10:52:24 +02:00
deriv.lean.expected.out test(tests/bench): add benchmarks as regular ctests with lowered inputs 2019-09-02 10:52:24 +02:00
deriv.ml
deriv.sml
deriv.swift
disable-st.patch chore: fix cross bench suite 2019-11-15 16:39:14 +01:00
frontend_test.lean
ghc-gc.py
lean-gc.py
Makefile chore: update benchmarks 2019-11-25 10:42:14 +01:00
mlkit-gc.py
nixpkgs.nix chore: update benchmark packages 2019-11-07 17:47:58 +01:00
ocaml-gc.py
parser.lean feat: file IO using handles 2020-01-12 08:02:48 -08:00
perf.py
qsort.hs
qsort.lean chore: fix tests 2019-10-27 18:29:51 -07:00
qsort.lean.args test(tests/bench): add benchmarks as regular ctests with lowered inputs 2019-09-02 10:52:24 +02:00
qsort.lean.expected.out test(tests/bench): add benchmarks as regular ctests with lowered inputs 2019-09-02 10:52:24 +02:00
qsort.ml
qsort.sml
qsort.swift
rbmap.hs
rbmap.lean fix: file and import names, tests and stage0 2019-10-04 17:04:02 -07:00
rbmap.lean.args test(tests/bench): add benchmarks as regular ctests with lowered inputs 2019-09-02 10:52:24 +02:00
rbmap.lean.expected.out test(tests/bench): add benchmarks as regular ctests with lowered inputs 2019-09-02 10:52:24 +02:00
rbmap.library.lean
rbmap.ml
rbmap.sml
rbmap.swift
rbmap2.lean chore(tests/bench): fix benchmarks 2019-08-10 12:52:42 +02:00
rbmap3.lean
rbmap4.lean chore(tests/bench): fix benchmarks 2019-08-10 12:52:42 +02:00
rbmap500k.lean chore(tests/bench/rbmap500k): add new test 2019-09-11 18:01:56 -07:00
rbmap_checkpoint.hs chore: cross bench suite: fix fatal laziness in rbmap_checkpoint.hs 2019-11-15 16:39:14 +01:00
rbmap_checkpoint.lean feat: file IO using handles 2020-01-12 08:02:48 -08:00
rbmap_checkpoint.lean.args test(tests/bench): add benchmarks as regular ctests with lowered inputs 2019-09-02 10:52:24 +02:00
rbmap_checkpoint.lean.expected.out test(tests/bench): add benchmarks as regular ctests with lowered inputs 2019-09-02 10:52:24 +02:00
rbmap_checkpoint.ml
rbmap_checkpoint.sml
rbmap_checkpoint.swift
rbmap_checkpoint2.lean chore(tests/bench): fix benchmarks 2019-08-10 12:52:42 +02:00
rbmap_checkpoint2.sml
rbmap_checkpoint_cpp_lean3.cpp
rbmap_checkpoint_cpp_std.cpp
rbmap_cpp_lean3.cpp
rbmap_cpp_std.cpp
README.md chore: bench cross suite: move default.nix and update README 2019-11-15 16:39:14 +01:00
report.py chore: fix cross bench suite 2019-11-15 16:39:14 +01:00
run.sh
speedcenter.exec.yaml chore: fix one more benchmark 2019-11-25 12:47:42 +01:00
speedcenter.yaml chore(tests/bench/speedcenter.yaml): update temci config 2019-10-02 14:14:49 +02:00
test_single.sh chore: revert "test: capture stderr as well" 2019-10-29 19:55:48 +01:00
unionfind.lean refactor(library/init/data/array): new name convention for Array functions 2019-10-01 16:46:05 -07:00
unionfind.lean.args test(tests/bench): add benchmarks as regular ctests with lowered inputs 2019-09-02 10:52:24 +02:00
unionfind.lean.expected.out test(tests/bench): add benchmarks as regular ctests with lowered inputs 2019-09-02 10:52:24 +02:00
unionfind_clean.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-shell cross.nix --pure --run 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:

nix-shell cross.nix --pure --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.