Skip to main content

Qibocal

codecov PyPI - Version PyPI - Python Version Documentation

Qibocal provides calibration protocols using Qibo and Qibolab.

Qibocal key features:

  • Declarative inputs using runcard.

  • Generation of a report.

Documentation

Qibocal documentation is available at https://qibo.science/qibocal/stable/.

Installation

The package can be installed by source:

git clone https://github.com/qiboteam/qibocal.git
cd qibocal
pip install .

Developer instructions

For development make sure to install the package using poetry and to install the pre-commit hooks:

git clone https://github.com/qiboteam/qibocal.git
cd qibocal
poetry install
pre-commit install

Minimal working example

Here is an example on how to run a Rabi experiment in Qibocal.

from qibocal import create_calibration_platform
from qibocal.protocols import rabi_amplitude

# create platform
platform = create_calibration_platform("qubit")

# define qubits where the protocols will be executed
targets = [0]

# define protocol parameters
params = rabi_amplitude.parameters_type.load(dict(
        min_amp=0.01,
        max_amp=0.2,
        step_amp=0.02,
        nshots=2000,
        pulse_length=40,
        ))

# acquire
platform.connect()
data, acquisition_time = rabi_amplitude.acquisition(
                                                    params=params,
                                                    platform=platform,
                                                    targets=targets
                                                    )
platform.disconnect()

# post-processing
results, fit_time = rabi_amplitude.fit(data=data)

# visualize the results
plots, table = rabi_amplitude.report(data=data, results=results, target=target[0])
plots[0].show()

Rabi

The table is written in HTML and can be visualized in Python with

from IPython import display
display.HTML(table)

Table

Running a protocol through a runcard

The same experiment can also be run using the following yaml file

platform: qubit
targets: [0]
actions:
- id: rabi
  operation: rabi_amplitude
  parameters:
    min_amp: 0.01
    max_amp: 0.2
    step_amp: 0.02
    nshots: 2000
    pulse_length: 40

To run the protocol Qibocal uses the qq run command

qq run <runcard> -o <output_folder>

if <output_folder> is specified, the results will be saved in it, otherwise qq will automatically create a default folder containing the current date and the username.

Uploading reports to server

In order to upload the report to a centralized server, send to the server administrators your public ssh key (from the machine(s) you are planning to upload the report) and then use the qq upload <output_folder> command. This program will upload your report to the server and generate an unique URL.

Contributing

Contributions, issues and feature requests are welcome! Feel free to check GitHub issues

Citation policy

arXiv DOI

If you use the package please refer to the documentation for citation instructions

Ongoing development

A non-exhaustive list of possible protocols to be implemented in Qibocal is collected here.

Download files

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

Source Distribution

qibocal-0.2.6.tar.gz (772.3 kB view details)

Uploaded Source

Built Distribution

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

qibocal-0.2.6-py3-none-any.whl (958.7 kB view details)

Uploaded Python 3

File details

Details for the file qibocal-0.2.6.tar.gz.

File metadata

  • Download URL: qibocal-0.2.6.tar.gz
  • Upload date:
  • Size: 772.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for qibocal-0.2.6.tar.gz
Algorithm Hash digest
SHA256 35d71bedf8c26f47166de5b34abecfc9e734c356309d7173212e7af9b0a4268e
MD5 9e16fcee89b2687b822d4e199a964b49
BLAKE2b-256 3bc3ab9b2d4ca2096bcf86dbcb847374842eebc60f50d6b4e1b04776860bccac

See more details on using hashes here.

File details

Details for the file qibocal-0.2.6-py3-none-any.whl.

File metadata

  • Download URL: qibocal-0.2.6-py3-none-any.whl
  • Upload date:
  • Size: 958.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for qibocal-0.2.6-py3-none-any.whl
Algorithm Hash digest
SHA256 e009c3154bffa7d7d48bd6dfe7d8715edca4660cb0fba6eccc5113f14b2d8999
MD5 98ff55d2406f7e6b6c159925b59b3443
BLAKE2b-256 17bea74ea4b8a24c06a7670a3f770f5dc676e72696ec1b57c15f5dfda44b6508

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 Sentry Error logging StatusPage Status page