Skip to main content

Provider for running Qiskit circuits on Alice & Bob QPUs and simulators

Project description

Alice & Bob Qiskit provider

This project contains a provider that allows access to Alice & Bob QPUs and emulators using the Qiskit framework.

Full documentation is available here and sample notebooks using the provider are available here.

Installation

You can install the provider using pip:

pip install qiskit-alice-bob-provider

pip will handle installing all the python dependencies automatically and you will always install the latest (and well-tested) version.

[!WARNING] Transpilation of gates CRY, RCCX and RCCCX does not work on macOS currently.

Remote execution on Alice & Bob QPUs: use your API key

To obtain an API key, get a Felis Cloud subscription on the Google Cloud Marketplace or contact Alice & Bob.

You can initialize the Alice & Bob remote provider using your API key locally with:

from qiskit_alice_bob_provider import AliceBobRemoteProvider
ab = AliceBobRemoteProvider('MY_API_KEY')

Where MY_API_KEY is your API key to the Alice & Bob API.

print(ab.backends())
backend = ab.get_backend('EMU:1Q:LESCANNE_2020')

The backend can then be used like a regular Qiskit backend:

from qiskit import QuantumCircuit

c = QuantumCircuit(1, 2)
c.initialize('+', 0)
c.measure_x(0, 0)
c.measure(0, 1)
job = backend.run(c)
res = job.result()
print(res.get_counts())

Local emulation of cat qubit processors

This project contains multiple emulators of multi cat qubit processors.

from qiskit_alice_bob_provider import AliceBobLocalProvider
from qiskit import QuantumCircuit, transpile

provider = AliceBobLocalProvider()
print(provider.backends())
# EMU:6Q:PHYSICAL_CATS, EMU:40Q:PHYSICAL_CATS, EMU:1Q:LESCANNE_2020

The EMU:nQ:PHYSICAL_CATS backends are theoretical models of quantum processors made up of physical cat qubits. They can be used to study the properties of error correction codes implemented with physical cat qubits, for different hardware performance levels (see the parameters of class PhysicalCatProcessor).

The EMU:1Q:LESCANNE_2020 backend is an interpolated model simulating the processor used in the seminal paper by Raphaël Lescanne in 2020. This interpolated model is configured to act as a digital twin of the cat qubit used in this paper. It does not represent the current performance of Alice & Bob's cat qubits.

The example below schedules and simulates a Bell state preparation circuit on a EMU:6Q:PHYSICAL_CATS processor, for different values of parameters average_nb_photons and kappa_2.

from qiskit_alice_bob_provider import AliceBobLocalProvider
from qiskit import QuantumCircuit, transpile

provider = AliceBobLocalProvider()

circ = QuantumCircuit(2, 2)
circ.initialize('0+')
circ.cx(0, 1)
circ.measure(0, 0)
circ.measure(1, 1)

# Default 6-qubit QPU with the ratio of memory dissipation rates set to
# k1/k2=1e-5 and cat size, average_nb_photons, set to 16.
backend = provider.get_backend('EMU:6Q:PHYSICAL_CATS')

print(transpile(circ, backend).draw())
# *Displays a timed and scheduled circuit*

print(backend.run(circ, shots=100000).result().get_counts())
# {'11': 49823, '00': 50177}

# Changing the cat size from 16 (default) to 4 and k1/k2 to 1e-2.
backend = provider.get_backend(
    'EMU:6Q:PHYSICAL_CATS', average_nb_photons=4, kappa_2=1e4
)
print(backend.run(circ, shots=100000).result().get_counts())
# {'01': 557, '11': 49422, '10': 596, '00': 49425}

Setting Up Development Environment (for contributors only)

To ensure code consistency and enforce commit message conventions, we use pre-commit (Python-based) and commitlint (Node.js-based). Follow these steps to set up your development environment.

Prerequisites

You need the following installed on your system:

  • Python 3.12
  • Node.js (latest LTS version recommended, required for commitlint)
  • pnpm (used to install commitlint dependencies)

Installation Steps

  1. Install Python dependencies
    Run the following command to set up the Python environment and install dependencies:

    make install
    

    This will:

    • Create a Python virtual environment
    • Install all required dependencies, including pre-commit
  2. Install commitlint dependencies
    Run the following command to install the necessary Node.js packages:

    pnpm install
    
  3. Install Git hooks
    Run the following command to install all required Git hooks:

    make precommit-hooks
    

Happy coding! 🚀

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

qiskit_alice_bob_provider-1.2.0.tar.gz (85.2 kB view details)

Uploaded Source

Built Distribution

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

qiskit_alice_bob_provider-1.2.0-py3-none-any.whl (109.8 kB view details)

Uploaded Python 3

File details

Details for the file qiskit_alice_bob_provider-1.2.0.tar.gz.

File metadata

File hashes

Hashes for qiskit_alice_bob_provider-1.2.0.tar.gz
Algorithm Hash digest
SHA256 c8e0453d6b74d6e6f7ade37b285ea0f93f6c88d04ba6a2f225ac567fb07e9a22
MD5 b174a27dbc097e450939fd8947e1a6d3
BLAKE2b-256 ca6c054c3de8cc47063ecb3324f9c586021ff29d45b6e9712b251e6393bec559

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_alice_bob_provider-1.2.0.tar.gz:

Publisher: main.yml on Alice-Bob-SW/qiskit-alice-bob-provider

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

File details

Details for the file qiskit_alice_bob_provider-1.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for qiskit_alice_bob_provider-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4aa055fd73d5a5199d1f92fba470a1f791c5e209ebccb96d794f3aa65b204fcf
MD5 3fd9914b98b034b1a6badff2e4a1b21e
BLAKE2b-256 3d0d0c68bfa543d1c8eb9ebea87b3887fea67b4574f126113cb8d1ff5dd09b22

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_alice_bob_provider-1.2.0-py3-none-any.whl:

Publisher: main.yml on Alice-Bob-SW/qiskit-alice-bob-provider

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