Skip to content

se-tuebingen/effect-handlers-bench

 
 

Repository files navigation

Effect handlers benchmarks suite

The project aims to build a repository of systems that implement effect handlers, benchmarks implemented in those systems, and scripts to build the systems, run the benchmarks, and produce the results.

A system may either be a programming language that has native support for effect handlers, or a library that embeds effect handlers in another programming language.

Quick start

Ensure that Docker is installed on your system. Then,

$ make bench_ocaml

runs the OCaml benchmarks and produces benchmarks/ocaml/results.csv which contains the results of running the Multicore OCaml benchmarks.

System availability

System Availability
Eff Eff
Effekt Effekt
Handlers in Action Handlers in Action
Koka Koka
libhandler libhandler
libmpeff libmpeff
Links Links
Multicore OCaml Multicore OCaml

Benchmark availability

Eff Effekt Handlers in Action Koka Multicore OCaml
Countdown ✔️ ✔️ ✔️ ✔️
Fibonacci Recursive ✔️ ✔️ ✔️ ✔️
Product Early ✔️ ✔️ ✔️ ✔️
Iterator ✔️ ✔️ ✔️ ✔️
Nqueens ✔️ ✔️ ✔️ ✔️ ✔️
Generator ✔️ ✔️ ✔️ ✔️
Tree explore ✔️ ✔️ ✔️ ✔️
Triples ✔️ ✔️ ✔️ ✔️
Parsing Dollars ✔️ ✔️ ✔️ ✔️
Resume Nontail ✔️ ✔️ ✔️ ✔️
Handler Sieve ✔️ ✔️ ✔️

Legend:

  • ✔️ : Benchmark is implemented
  • ❌ : Benchmark is not implemented
  • ➖ : Benchmark is unsuitable for this system, and there is no sense in implementing it (eg. benchmarking the speed of file transfer in a language that does not support networking)

Directory structure

  • systems/<system_name>/Dockerfile is the Dockerfile in order to build the system.
  • benchmarks/<system_name>/<benchmark_name>/ contains the source for the benchmark <benchmark_name> for the system <system_name>.
  • descriptions/<benchmark_name>/ contains the description of the benchmark, the input and outputs, and any special considerations.
  • Makefile is used to build the systems and benchmarks, and run the benchmarks. For each system, the Makefile has the following rules:
    • system_<system_name>: Builds the <system_name> docker image.
    • bench_<system_name>: Runs the benchmarks using the docker image for <system_name>.
    • test_<system_name>: Tests the benchmark programs using the docker image for <system_name>.
  • LABELS.md contains a list of available benchmark labels. Each benchmark can be assigned multiple labels.

Contributing

Benchmarking chairs

The role of the benchmarking chairs is to curate the repository, monitor the quality of benchmarks, and to solicit new benchmarks and fixes to existing benchmarks. Each benchmarking chair serves two consecutive terms. Each term is 6 months.

The current co-chairs are

Past co-chairs

Benchmark

If you wish to implement <goat_benchmark> for system <awesome_system>,

  • Add the benchmark sources under benchmarks/<awesome_system>/<goat_benchmark>. The benchmark takes its input as a command-line argument and prints its outputs.
  • Update benchmarks/<awesome_system>/Makefileto build, test, and benchmark the program. Use the parameters for testing and benchmarking provided in descriptions/<goat_benchmark>/README.md.
  • Update this README.md file to tick the new benchmark in the benchmark availability table.

Description

If you wish to add a new benchmark <goat_benchmark>,

  • Add a benchmark description under descriptions/<goat_benchmark>/README.md. Use the template provided in descriptions/template/README.md.
  • Provide a reference implementation for at least one system.
  • Update this README.md and add a new row to the benchmark availability table.

System

If you wish to contribute a system <awesome_system>,

  • Add a new dockerfile at systems/awesome_system/Dockerfile.
  • Add a new workflow under .github/workflows/system_<awesome_system>.yml. It should build the system and run tests.
  • Update this README.md and add a new column to the benchmark availability table. Create a status badge and add it as well.
  • Update Makefile with commands that build, test, and benchmark the system.

Ideally, you will also add benchmarks to go with the new system.

Having a dockerfile aids reproducibility and ensures that we can build the system from scratch natively on a machine if needed. The benchmarking chair will push the image to Docker Hub so that systems are easily available for wider use.

We use Ubuntu 22.04 as the base image for building the systems and hyperfine to run the benchmarks.

Artifacts

We curate software artifacts from papers related to effect handlers. If you wish to contribute your artifacts, then please place your artifact as-is under a suitable directory in artifacts/.

There is no review process for artifacts (other than that they must be related to work on effect handlers). Whilst we do not enforce any standards on artifacts, we do recommend that artifacts conform with the artifacts evaluation packaging guidelines used by various programming language conferences.

About

Benchmark repository of polyglot effect handler examples

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Haskell 40.2%
  • Makefile 23.0%
  • OCaml 20.0%
  • Dockerfile 16.8%