Skip to main content

Run Quil programs on Microsoft Azure Quantum using pyQuil

Project description

pyquil-for-azure-quantum

This library allows you to use pyQuil to run programs on Azure Quantum against Rigetti targets. Internally, it leverages the azure-quantum package.

Usage

Generally, you use pyQuil normally, with a few differences:

  1. Instead of pyquil.get_qc(), you will use either pyquil_azure_quantum.get_qvm() or pyquil_azure_quantum.get_qpu().
  2. You do not need to have qvm or quilc running in order to run programs through pyquil_azure_quantum. You may still run them if you wish to run QVM locally instead of passing through Azure or if you wish to precompile your programs (e.g., to inspect the exact Quil that will run).
  3. You do not need a QCS account or credentials unless you wish to manually inspect the details of the QPU (e.g., list all qubits).
  4. You must have these environment variables set:
    1. AZURE_QUANTUM_SUBSCRIPTION_ID: The Azure subscription ID where the Quantum Workspace is located.
    2. AZURE_QUANTUM_WORKSPACE_RG: The Azure resource group where the Quantum Workspace is located.
    3. AZURE_QUANTUM_WORKSPACE_NAME: The name of the Quantum Workspace.
    4. AZURE_QUANTUM_WORKSPACE_LOCATION: The region where the Quantum Workspace is located.
  5. You may set environment variables to authenticate with Azure. If you do not, a browser will open to the Azure portal to authenticate.
  6. Whenever possible, you should prefer using AzureQuantumComputer.run_batch() over Program.write_memory(); AzureQuantumComputer.run() to run programs which have multiple parameters. Calling write_memory() followed by run() will still work but will be much slower than running a batch of parameters all at once.

Examples

1. Leveraging Hosted QVM and quilc

With this program, you do not need to run qvm nor quilc locally in order to leverage them, as they can run through Azure Quantum.

from pyquil_for_azure_quantum import get_qpu, get_qvm
from pyquil.gates import CNOT, MEASURE, H
from pyquil.quil import Program
from pyquil.quilbase import Declare

program = Program(
    Declare("ro", "BIT", 2),
    H(0),
    CNOT(0, 1),
    MEASURE(0, ("ro", 0)),
    MEASURE(1, ("ro", 1)),
).wrap_in_numshots_loop(1000)

qpu = get_qpu("Aspen-11")
qvm = get_qvm()

exe = qpu.compile(program)  # This does not run quilc yet.
results = qpu.run(exe)  # Quilc will run in the cloud before executing the program.
qvm_results = qvm.run(exe)  # This runs the program on QVM in the cloud, not locally.

2. Running quilc Locally

You can optionally run quilc yourself and disable the use of quilc in the cloud.

from pyquil_for_azure_quantum import get_qpu
from pyquil.gates import CNOT, MEASURE, H
from pyquil.quil import Program
from pyquil.quilbase import Declare


program = Program(
    Declare("ro", "BIT", 2),
    H(0),
    CNOT(0, 1),
    MEASURE(0, ("ro", 0)),
    MEASURE(1, ("ro", 1)),
).wrap_in_numshots_loop(1000)
qpu = get_qpu("Aspen-11")
native_quil = qpu.compiler.quil_to_native_quil(program)  # quilc must be running locally to compile
exe = qpu.compile(native_quil, to_native_gates=False)  # Skip quilc in the cloud
results = qpu.run(exe)

3. Running Parametrized Circuits in a Batch

When you have a program which should be run across multiple parameters, you can submit all the parameters at once to significantly improve performance.

import numpy as np
from pyquil_for_azure_quantum import get_qpu
from pyquil.gates import MEASURE, RX
from pyquil.quil import Program
from pyquil.quilbase import Declare
from pyquil.quilatom import MemoryReference


program = Program(
    Declare("ro", "BIT", 1),
    Declare("theta", "REAL", 1),
    RX(MemoryReference("theta"), 0),
    MEASURE(0, ("ro", 0)),
).wrap_in_numshots_loop(1000)

qpu = get_qpu("Aspen-11")
compiled = qpu.compile(program)

memory_map = {"theta": [[0.0], [np.pi], [2 * np.pi]]}
results = qpu.run_batch(compiled, memory_map)  # This is a list of results, one for each parameter set.

results_0 = results[0].get_register_map().get("ro")
results_pi = results[1].get_register_map().get("ro")
results_2pi = results[2].get_register_map().get("ro")

Microsoft, Microsoft Azure, and Azure Quantum are trademarks of the Microsoft group of companies.

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

pyquil_for_azure_quantum-0.1.0.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

pyquil_for_azure_quantum-0.1.0-py3-none-any.whl (12.6 kB view details)

Uploaded Python 3

File details

Details for the file pyquil_for_azure_quantum-0.1.0.tar.gz.

File metadata

  • Download URL: pyquil_for_azure_quantum-0.1.0.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.12.3 Linux/6.8.0-1017-azure

File hashes

Hashes for pyquil_for_azure_quantum-0.1.0.tar.gz
Algorithm Hash digest
SHA256 d6763e950d9b5c3c672dc0ac9a7a6aeb12b3d28d95b11aafed7d866ecd99e702
MD5 9660caa16ecd283db356f4921a4a372a
BLAKE2b-256 b368992d11e5f6cbac691ef0f412427df7d1857be72e682e1f8942eb3c03f7a8

See more details on using hashes here.

File details

Details for the file pyquil_for_azure_quantum-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pyquil_for_azure_quantum-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b7833fc52d073397c4061a4ac921da1bbf8d8ab6aed8c68b33dadbf3c77554d3
MD5 69b6a668971e381eba20ef39801cf2e0
BLAKE2b-256 9c4f7b9719d4d56fedb5cdc6c4881e8a301a2cfd80a32675dea7d0a1b8ba29a6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page