tomijaga / canister-profiling

Collection of canister performance benchmarks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

canister-profiling

This repository contains code and scripts for collecting performance data for different canisters running on the IC.

Community contributions are strongly encouraged.

Performance report

Performance reports are generated in gh-pages branch. The reported Wasm binary size is after the instrumentation.

How to reproduce performance report

  • dfx start --clean
  • Run make
  • The results are stored in _out/

How to create a new benchmark

Each benchmark usually contains multiple implementations written in different languages, e.g., Motoko and Rust. The folder follows the following structure:

Benchmark_name/
  Makefile
  README.md // Perf result will be appended to this markdown file.
  perf.sh   // ic-repl script that generates perf result. If the candid interface is different, we can use multiple scripts.
  motoko/
    dfx.json
    src/
      benchmark1.mo
      benchmark2.mo
  rust/
    dfx.json
    benchmark1/
      Cargo.toml
      benchmark1.did
      src/
        lib.rs
    benchmark2/
      Cargo.toml
      benchmark2.did
      src/
        lib.rs

About

Collection of canister performance benchmarks

License:Apache License 2.0


Languages

Language:Rust 48.0%Language:Motoko 32.7%Language:Shell 15.1%Language:Dhall 2.4%Language:Makefile 1.8%