Skip to main content

Qibo's quantum calibration, characterization and validation module.

Project description

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.

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

qibocal-0.2.5.tar.gz (744.9 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.5-py3-none-any.whl (915.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: qibocal-0.2.5.tar.gz
  • Upload date:
  • Size: 744.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qibocal-0.2.5.tar.gz
Algorithm Hash digest
SHA256 60b3aaf485c99115797aca85c5fddcae52144eb1de55897adb86b9f22d1ab658
MD5 be027a762ad043e4f54638833be2816e
BLAKE2b-256 ec3ec28de690d82f50c1ad1137152531fdb3323c1b2b4b80c30dec5f13f87097

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qibocal-0.2.5-py3-none-any.whl
  • Upload date:
  • Size: 915.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qibocal-0.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 7fd00a0f6ba9ea3a21e8e2bcae87dad7d484f379cacb67ba1176a9e38e5de9c6
MD5 b1dd2b62b504657176212978b56b373a
BLAKE2b-256 145a5501f78f801892164d54233271076b4d2d0e6b0fc5c382840b3fcde321f2

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