Skip to main content

Framework for implementing and running standard quantum benchmarks on different quantum devices by different providers.

Project description

metriq-gym

Unitary Foundation PyPI version Downloads Doc Status Discord Chat Contributor Covenant

metriq-gym is a Python framework for implementing and running standard quantum benchmarks on different quantum devices by different providers.

  • Open – Open-source since its inception and fully developed in public.
  • Transparent – All benchmark parameters are defined in a schema file and the benchmark code is reviewable by the community.
  • Cross-platform – Supports running benchmarks on multiple quantum hardware providers (integration powered by qBraid-SDK)
  • User-friendly – Provides a simple command-line interface for dispatching, monitoring, and polling benchmark jobs (you can go on with your life while your job waits in the queue).

Data generated by metriq-gym is intended to be published on https://metriq.info.

Join the conversation!

  • For code, repo, or theory questions, especially those requiring more detailed responses, submit a Discussion.
  • For casual or time sensitive questions, chat with us on Discord's #metriq channel.

Installation

Quick Start (Recommended)

Four easy steps to get started with metriq-gym!

  1. Install metriq-gym directly in your Python environment using pip:

    pip install metriq-gym
    
  2. Download a benchmark configuration file from the schemas/examples/ directory

    curl -O https://raw.githubusercontent.com/unitaryfoundation/metriq-gym/refs/heads/main/metriq_gym/schemas/examples/wormhole.example.json
    
  3. Dispatch it to a quantum device or simulator.

    mgym dispatch wormhole.example.json --p local --d aer_simulator
    
  4. Poll the job to get the results.

    mgym poll latest
    

You will see the results of the benchmark printed in your terminal. E.g.

{'device': 'aer_simulator',
 'job_type': 'Wormhole',
 'provider': 'local',
 'results': {'expectation_value': 0.99658203125},
 'timestamp': '2025-07-29T20:31:17.978851',
 'version': '0.1.3.dev0'}

Prerequisites

  • Python (version 3.12 or newer)

Developer Setup

These instructions are for setting up a development environment if you plan to contribute to metriq-gym or run the latest version from source.

Prerequisites

Before you begin, ensure you have the following installed:

  • Python (version 3.12 or newer)
  • Poetry for managing dependencies

Cloning the Repository

First, clone the repository and navigate to the project directory:

git clone --recurse-submodules https://github.com/unitaryfoundation/metriq-gym.git
cd metriq-gym

If you've already cloned the repo (with or without submodules), run:

git pull --recurse-submodules

to keep it up to date.

Installation

Once you have poetry installed and the repository cloned, run:

poetry install

from the root folder of the project, in order to install the project dependencies.

We recommend doing this in an isolated virtual environment. See Poetry documentation for more information on managing virtual environments.

If you use pyenv, here is a quick start guide to set up the environment and install all dependencies:

pyenv install 3.13  
pyenv local 3.13 
poetry install
eval $(poetry env activate)

All Python commands below should be run in the virtual environment.

Running benchmarks

Workflow

You can dispatch benchmark jobs by specifying one or more configuration files for the benchmarks you wish to run.

mgym dispatch <BENCHMARK_CONFIG_1> <BENCHMARK_CONFIG_2> ... --provider <PROVIDER> --device <DEVICE>

Refer to the schemas/examples/ directory for example configuration files for supported benchmarks.

If running on quantum cloud hardware, the jobs will be added to a polling queue. The status of the queue can be checked with

mgym poll <METRIQ_GYM_JOB_ID>

where <METRIQ_GYM_JOB_ID> is the assigned job ID of the job that was dispatched as provided by metriq-gym.

Alternatively, the poll action can be used without any argument to view all dispatched jobs, and select the one that is of interest.

mgym poll

In order to export results to a JSON file, you can use the --json flag with the poll action.

mgym poll <METRIQ_GYM_JOB_ID> --json

This will create a JSON file with the results and the metadata of the job identified by <METRIQ_GYM_JOB_ID>. By default, the JSON file will be saved in the current working directory with the name <METRIQ_GYM_JOB_ID>.json.

Using local simulators

For quick testing without access to cloud hardware, metriq-gym can dispatch jobs to a local simulator. At the moment the Qiskit Aer simulator is supported. Specify the local provider and the aer_simulator device. Example (from the project root directory):

mgym dispatch metriq_gym/schemas/examples/qml_kernel.example.json --provider local --device aer_simulator

You can also create a noisy simulator based on an IBM backend by passing the backend name as the device:

mgym dispatch metriq_gym/schemas/examples/qml_kernel.example.json --provider local --device ibm_<BACKEND>

Polling local simulator jobs works the same way:

mgym poll <METRIQ_GYM_JOB_ID>

Credential management

To run on hardware, each hardware provider offers API tokens that are required to interact with their quantum devices. In order to run on these devices, you will need to follow the instructions on the respective pages of the providers and obtain API keys from them.

The .env.example file illustrates how to specify the API keys once you have acquired them. You will need to create a .env file in the same directory as .env.example and populate the values of these variables accordingly.

View jobs

You can view all the jobs that have been dispatched by using the view action. This will display basic information about each job, including its ID, backend, job type, provider, and device.

mgym view

In order to view the details of a specific job (e.g., the parameters the job was launched with), you can use the view action and pass the job's id as argument, or select the job by index from the list of all dispatched jobs.

mgym view <METRIQ_GYM_JOB_ID>

Example: Benchmarking Bell state effective qubits (BSEQ) on IBM hardware

The following example is for IBM, but the general workflow is applicable to any of the supported providers and benchmarks.

To run on IBM hardware, you will also require an IBM token. To obtain this, please visit the IBM Quantum Platform and include the API token in the local .env file as previously described.

The schemas/examples/ directory houses example JSON configuration files that define the benchmark to run. In this case, we use the bseq.example.json file as we want to run a BSEQ job. The following dispatches a job on the ibm-sherbrooke device for BSEQ.

mgym dispatch metriq_gym/schemas/examples/bseq.example.json --provider ibm --device ibm_sherbrooke

We should see logging information in our terminal to indicate that the dispatch action is taking place:

INFO - Starting job dispatch...
INFO - Dispatching BSEQ benchmark from metriq_gym/schemas/examples/bseq.example.json on ibm_sherbrooke...
...
INFO - Job dispatched with ID: 93a06a18-41d8-475a-a030-339fbf3accb9

We can confirm that the job has indeed been dispatched and retrieve the associated metriq-gym job ID (along with other pieces of metadata).

+--------------------------------------+------------+------------------------------------------------------+----------------+----------------------------+
| Metriq-gym Job Id                    | Provider   | Device                                               | Type           | Dispatch time (UTC)        |
+======================================+============+======================================================+================+============================+
| 93a06a18-41d8-475a-a030-339fbf3accb9 | ibm        | ibm_sherbrooke                                       | BSEQ           | 2025-03-05T10:21:18.333703 |
+--------------------------------------+------------+------------------------------------------------------+----------------+----------------------------+

We can use the "poll" action to check the status of our job:

mgym poll 93a06a18-41d8-475a-a030-339fbf3accb9

Doing so gives us the results of our job (if it has completed):

INFO - Polling job...
BSEQResult(largest_connected_size=100, fraction_connected=0.7874015748031497)

In the event where the job has not completed, we would receive the following message instead

INFO - Polling job...
INFO - Job is not yet completed. Current status:
INFO - - d0wtyfhvx7bg008203b0: QUEUED (position 3)
INFO - Please try again later.

As a convenience, while we could supply the metriq-gym job ID, we can also poll the job by running mgym poll and then selecting the job to poll by index from our local metriq-gym jobs database.

Available jobs:
+----+--------------------------------------+------------+------------------------------------------------------+----------------+-----------------------------+
|    | Metriq-gym Job Id                    | Provider   | Device                                               | Type           | Dispatch time (UTC)         |
+====+======================================+============+======================================================+================+=============================+
| 0  | 93a06a18-41d8-475a-a030-339fbf3accb9 | ibm        | ibm_sherbrooke                                        | BSEQ           | 2025-03-05T10:21:18.333703 |
+----+--------------------------------------+------------+------------------------------------------------------+----------------+-----------------------------+
Select a job index: 

Entering the index (in this case, 0), polls the same job.

Select a job index: 0
INFO - Polling job...

Running multiple benchmarks

metriq-gym supports running multiple benchmarks by specifying multiple configuration files. This allows you to obtain a comprehensive performance profile of a quantum device with full control over the parameters of each benchmark.

Multiple benchmark types

To run different types of benchmarks on a device, specify multiple configuration files:

mgym dispatch bseq_config.json clops_config.json qv_config.json --provider ibm --device ibm_sherbrooke

Same benchmark with different parameters

You can run the same benchmark type multiple times with different configurations to test various parameter ranges:

mgym dispatch bseq_small.json bseq_large.json --provider ibm --device ibm_sherbrooke

The system will process each configuration file as a separate job, giving you full control over the benchmark parameters and allowing for comprehensive device characterization.

Contributing

First, follow the Developer Setup instructions above.

Style guide

We don't have a style guide per se, but we recommend that both linter and formatter are run before each commit. In order to guarantee that, please install the pre-commit hook with

poetry run pre-commit install

immediately upon cloning the repository.

Tests

The entire suite of tests can be run with

poetry run pytest

Unit tests only can be run with

poetry run pytest -m "not e2e"

End-to-end tests only can be run with

poetry run pytest -m e2e

Type checking

The project uses mypy for static type checking. To run mypy, use the following command:

poetry run mypy

Documentation

The project uses Sphinx to generate documentation. To build the HTML documentation:

  1. Navigate to the docs/ directory:
cd docs/

Run the following command to build the HTML files:

make html

Open the generated index.html file located in the _build/html/ directory to view the documentation.

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

metriq_gym-0.1.3.dev0.tar.gz (20.2 MB view details)

Uploaded Source

Built Distribution

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

metriq_gym-0.1.3.dev0-py3-none-any.whl (20.6 MB view details)

Uploaded Python 3

File details

Details for the file metriq_gym-0.1.3.dev0.tar.gz.

File metadata

  • Download URL: metriq_gym-0.1.3.dev0.tar.gz
  • Upload date:
  • Size: 20.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for metriq_gym-0.1.3.dev0.tar.gz
Algorithm Hash digest
SHA256 a5b6634cb8c45833bc75f1599658a66f438beeece75bfd702b9d69ed398f5e57
MD5 6cd32af5ee58a149a56cad2170e92df7
BLAKE2b-256 f52c560579dde786deea71f0cddbe232e53c6fb177b885a39fff5803f4502a11

See more details on using hashes here.

Provenance

The following attestation bundles were made for metriq_gym-0.1.3.dev0.tar.gz:

Publisher: publish-to-pypi.yml on unitaryfoundation/metriq-gym

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file metriq_gym-0.1.3.dev0-py3-none-any.whl.

File metadata

File hashes

Hashes for metriq_gym-0.1.3.dev0-py3-none-any.whl
Algorithm Hash digest
SHA256 04e6d2496f199fd7dbdf0a5bc704e58a59ab66adf41586fc35edf47300190bfa
MD5 7d2a35ee55be473a6bef77165cf63f6e
BLAKE2b-256 719e464fd3ff3ffdbdd1d04ddfcc3e4a931d6286910e11b2e9cd5679da7c555c

See more details on using hashes here.

Provenance

The following attestation bundles were made for metriq_gym-0.1.3.dev0-py3-none-any.whl:

Publisher: publish-to-pypi.yml on unitaryfoundation/metriq-gym

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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