Skip to main content

A WebAssembly benchmarking suite for precise performance measurement

Project description

WASURE - WebAssembly SUite for Runtime Evaluation

⚠️ This is a work in progress!

WASURE is a command-line toolkit that helps you benchmark WebAssembly runtimes with clarity. It lets you run benchmarks across multiple engines, manage runtime environments, and generate meaningful visualizations and exports for analysis.

🚀 Features

  • Run and manage WebAssembly benchmarks across various runtimes
  • Install, update, and manage runtimes with simple commands
  • Export results to CSV for analysis or create plots for quick visualization
  • Designed for clarity, reproducibility, and extensibility

🛠 Getting Started

Quick Install

Install the latest released version from PyPI:

pip3 install wasure

[!WARNING] Updating the pip package will delete all changes made, including benchmark results, installed runtimes, saved plots, and custom benchmarks. To avoid this, you can either:

  • Use a custom directory for these data (by using the relevant flags, such as --runtimes-folder)
  • Back up any important data beforehand
  • Use wasure from source, without installing it

Run Without Installing

Run the project from source, without installing it. This will provide the newest version.

git clone https://github.com/r-carissimi/wasure.git
cd wasure
pip3 install -r requirements.txt
python3 -m wasure

[!NOTE] While following the instructions below, be sure to replace wasure with python3 -m wasure

Install Latest Version from GitHub

If you want to install the newest features or fixes, install directly from the repository:

git clone https://github.com/r-carissimi/wasure.git
cd wasure
pip install .

📖 How to Use WASURE

WASURE is structured as a command-line tool with modular subcommands to list, run, compare, and visualize WebAssembly benchmarks. Each subcommand has its own options, allowing you to start simple and scale up your experiments as needed.

wasure [OPTIONS] COMMAND

Use --log-level DEBUG to troubleshoot issues and --help under any subcommand for more information.

🔍 Listing Available Benchmarks

See what benchmarks are available:

wasure benchmarks list

⚙️ Managing Runtimes

Install, update, and manage supported runtimes:

# View available runtimes
wasure runtimes available

# Install a runtime
wasure runtimes install wasmtime

# Update or remove runtimes
wasure runtimes update wasmtime
wasure runtimes remove wasmtime

# List installed runtimes and their versions
wasure runtimes list
wasure runtimes version

🏃 Running Benchmarks

Run benchmarks with your chosen runtimes:

# Run a single benchmark on one runtime
wasure run -b helloworld -r wasmtime

# Run multiple benchmarks on multiple runtimes
wasure run -b pystone dummy dhrystone/dhrystone10M -r wasmtime wasmedge wasmer --repeat 3

# Run a raw WebAssembly file directly
wasure run -b py2wasm/pystone/pystone.wasm -r wasmtime

# Run a benchmark tracking the memory consumption. Timings may increase.
wasure run -b helloworld -r wasmtime

Useful Flags

  • --repeat N: Repeat each benchmark N times
  • --no-store-output: Don’t save output, just timings
  • --results-folder <path>: Define custom output directory
  • --memory: Pool the memory consumption

📊 Visualizing and Exporting Results

Plot or export results with:

# Plot benchmark output
wasure plot /path/to/results/2025-05-06_10-56-21.json

# Export results to CSV
wasure export /path/to/results/2025-05-06_10-56-21.json

📄 Exported CSV Structure

When you export benchmark results to CSV, each row contains the following columns:

Column Description
benchmark Name of the benchmark or WebAssembly file
runtime Name of the runtime used
run_index Index of the run (for repeated benchmarks)
elapsed_time_ns Execution time in nanoseconds
score Benchmark-specific score (if applicable, else 0)
return_code Process return code (0 means success)
max_rss_bytes Maximum resident set size in bytes, if --memory is set
max_vms_bytes Maximum virtual memory size in bytes, if --memory is set

✅ Checking Runtimes Support

The check command allows you to verify if specific benchmarks run successfully on selected runtimes. It is particularly useful when combined with the wasm-features or wasi-proposals benchmark groups. These groups enable you to track which runtime has implemented specific features or proposals.

# Check the wasm features support on all runtimes
wasure check wasm-features

# Check the wasi proposals implementation on wasmtime and wasmedge
wasure check wasi-proposals -r wasmtime wasmedge

💡 Run WASI benchmarks on runtimes that do not support WASI

Refer to the Replay Merger project for instructions on how to run WASI benchmarks on runtimes that do not support WASI.

➕ Adding New Benchmarks

Refer to the Benchmarks Management Documentation for detailed instructions on adding new benchmarks.

⚙️ Adding or Editing a Runtime

Refer to the Runtimes Management Documentation for detailed instructions on adding or editing runtimes.

⚠️ Known Limitations

  • Platform Support: Linux and macOS are supported. Windows is currently not supported.
  • Path Restrictions: Installers relying on npm (e.g., v8, jsc, spidermonkey) may fail if the runtimes path contains spaces.
  • Non-ASCII Characters: JSC (JavaScriptCore) does not support payload paths with non-ASCII characters.

🤝 Contributing

Contributions are welcome! Feel free to open issues or submit pull requests to improve the project. Please ensure your code follows the PEP 8 style guide for Python to maintain consistency across the project.

📜 License

This project is licensed under the GNU General Public License v3.0.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wasure-0.9.tar.gz (92.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

wasure-0.9-py3-none-any.whl (94.4 MB view details)

Uploaded Python 3

File details

Details for the file wasure-0.9.tar.gz.

File metadata

  • Download URL: wasure-0.9.tar.gz
  • Upload date:
  • Size: 92.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for wasure-0.9.tar.gz
Algorithm Hash digest
SHA256 4e26745b9b543d527f648477142f7752fb747e46e59b6a145a39400845486804
MD5 a33df653f51bea729752ce0c6b0ffc1d
BLAKE2b-256 dd296b1be98cff10ca1be20b268d82cfea014c553c0bb0df780917086852b4c4

See more details on using hashes here.

File details

Details for the file wasure-0.9-py3-none-any.whl.

File metadata

  • Download URL: wasure-0.9-py3-none-any.whl
  • Upload date:
  • Size: 94.4 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for wasure-0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 822b21f6116c384daf54db16c2f96380cb807b36f6187f8c77ea81aa4108e45f
MD5 1b473cb07e9233206b2b90f99a4f03a6
BLAKE2b-256 b0aaf47308cafa92f803335d4e3c96d542db881c50f0068aa59b7463caccfc7f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page