Benchmarking framework for classical, hybrid and quantum optimization algorithms
Project description
Luna-Bench
A framework for benchmarking optimization algorithms across quantum and classical domains. Define your models, plug in solvers, and compare results with predefined features and metrics. Add plots to visualize your benchmark results.
Alpha Notice: Luna-Bench is still in alpha. Many things are not final — for example, how metrics and features are accessed in plots is something we are still actively experimenting with to find the best approach. We highly welcome any user input and feedback! Feel free to open an issue or start a discussion.
Why
Benchmarking optimization algorithms is tedious. You end up writing the same infrastructure over and over: result storage, metric computation, plotting, managing model sets. Luna-Bench handles all of that so you can focus on the algorithms themselves. Features and metrics are tested and reused across benchmarks, which means fewer bugs and more consistent results.
- Compare quantum and classical solvers by adding algorithms easily from luna_quantum or add your own
- Persistent storage for results and configurations via SQLite
- Built-in metrics like approximation ratio, time to solution, and fraction of best solution
- Extensible through custom algorithms, metrics, features, and plots if desired
- Full type safety with Pydantic validation
- Reproducible benchmarks with database-backed result tracking
Installation
Requires Python 3.13+.
pip install luna-bench
Quick Start
Define your models
from luna_model import Model, Variable
from luna_bench.components import ModelSet
# Build a simple optimization model
model = Model("example")
with model.environment:
x = Variable("x")
y = Variable("y")
model.objective = x * y + x
model.constraints += x >= 0
model.constraints += y <= 5
# Group models into a set
modelset = ModelSet.create("my_models")
modelset.add(model)
Run a benchmark
from luna_bench import Benchmark
from luna_bench.algorithms import ScipAlgorithm
from luna_bench.features import OptSolFeature
from luna_bench.metrics import ApproximationRatio
from luna_bench.plots import AverageFeasibilityRatioPlot
from luna_quantum.algorithms import FlexQAOA
benchmark = Benchmark.create("my_benchmark")
benchmark.set_modelset(modelset)
# Add a solver
benchmark.add_algorithm("scip", ScipAlgorithm(max_runtime=60))
# Add any luna_quantum algorithm directly
benchmark.add_algorithm("flexqaoa", FlexQAOA())
# Add a feature that computes the optimal solution (used by metrics)
benchmark.add_feature("optimal_solution", OptSolFeature())
# Add a metric to evaluate solution quality
benchmark.add_metric("approx_ratio", ApproximationRatio())
# Add a plot to visualize metric results
benchmark.add_plot("approx_plot", AverageFeasibilityRatioPlot())
# Run everything: features, algorithms, metrics, plots
benchmark.run()
That's it. Luna-Bench runs your solvers against every model in the set, computes features, evaluates metrics, and stores the results.
Write your own algorithm
Subclass BaseAlgorithmSync and register it with the @algorithm decorator.
from luna_bench.custom import BaseAlgorithmSync
from luna_bench.custom import algorithm
from luna_model import Model, Solution
@algorithm()
class MyAlgorithm(BaseAlgorithmSync):
max_iterations: int = 1000
def run(self, model: Model) -> Solution:
# Your solver logic here
...
Write your own feature
Features extract properties from models. They run before algorithms and metrics.
from luna_bench.custom import BaseFeature
from luna_bench.custom import feature
from luna_bench.types import FeatureResult
from luna_model import Model
class MyFeatureResult(FeatureResult):
num_variables: int
@feature
class MyFeature(BaseFeature):
def run(self, model: Model) -> MyFeatureResult:
return MyFeatureResult(num_variables=model.num_variables)
Write your own metric
Metrics evaluate solutions. They can depend on features for reference data like optimal solutions.
from luna_bench.custom import BaseMetric
from luna_bench.custom.data_types.feature_result_container import FeatureResultContainer
from luna_bench.custom import metric
from luna_bench.types import MetricResult
from luna_model import Solution
class MyMetricResult(MetricResult):
score: float
@metric()
class MyMetric(BaseMetric):
def run(self, solution: Solution, feature_results: FeatureResultContainer) -> MyMetricResult:
score = solution.expectation_value()
return MyMetricResult(score=score)
Development
# Install dependencies
uv sync
# Install pre-commit hooks (runs linting, formatting, type checking, and tests on each commit)
pre-commit run . --all-files
License
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Acknowledgments
Built by the Aqarios team.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file luna_bench-0.1.1.tar.gz.
File metadata
- Download URL: luna_bench-0.1.1.tar.gz
- Upload date:
- Size: 118.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8081a4f337081644530f5e31c712fc09054da1c017f0a7977ddb28309ed856f8
|
|
| MD5 |
6216cd5d668aa7d15be4e8a5f56a3fde
|
|
| BLAKE2b-256 |
b72ff6172c35e09e596587331c89eeac2321190b867a243201059b0ab5c514ae
|
File details
Details for the file luna_bench-0.1.1-py3-none-any.whl.
File metadata
- Download URL: luna_bench-0.1.1-py3-none-any.whl
- Upload date:
- Size: 234.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e99b02236cff40e584b63c261f659591e088a45d11eb59a4e9fccff1c064da58
|
|
| MD5 |
c52f88479d4065db2457f2d61caf9ae8
|
|
| BLAKE2b-256 |
9545a7cc2fffb09a75a650361cd593399883c25d6facf0b378a24c1be29a51b1
|