Skip to main content

Python SDK to BQ app

Project description

BlueQubit Python SDK

Usage

Interface with the BlueQubit server

Initialization

import bluequbit

# If you have run the line below once, subsequent initialization no longer
# requires explicit API token, i.e. bluequbit.init() without an argument is
# sufficient. This is because the token is automatically saved to
# ~/.config/bluequbit/config.json.
dq = bluequbit.init(<YOUR_API_TOKEN>)

Estimating how long it takes to simulate a circuit

import qiskit

import bluequbit

bq_client = bluequbit.init()

qc = qiskit.QuantumCircuit(2)
qc.h(0)
qc.x(1)

result = bq_client.estimate_job_runtime(qc)
print(result)
# Output
# {
#   'device': 'qsim_simulator',
#   'estimate_ms': 100,
#   'num_qubits': 2,
#   'qc': 'UUlTS0lUBQAVAgAAAAAAAAABcQAKaQAIAAAAAgAAAAAAAAAAAAAABAAAAAEAAAAAAAAAAmNpcmN1aXQtNzgAAAAAAAAAAG51bGxxAQAAAAIAAQFxAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAUAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASEdhdGVxAAAAAAAFAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFhHYXRlcQAAAAEAAA==',
#   'warning_message': 'This is just an estimate; the actual runtime may be less or more.'
# }

Submitting a simulation job and retrieving it

import bluequbit

bq_client = bluequbit.init()

bq_client.submit_job(qc)
result = bq_client.search_jobs()
print(result)
# Output
# {
#   'column_names': ['job_id', 'run_status', 'success', 'worker_runtime_ms', 'created_on'],
#   'data': [['4j2u9lb031YgfPpB', 'QUEUED', None, None, '2022-10-20T07:10:20.316Z']], 'total_count': 1
# }

Circuit serialization

You can decode a quantum circuit of Braket/Cirq/Qiskit to/from JSON string.

import bluequbit.circuit_serialization as circuit_serialization

# Example with Cirq circuit
encoded_cirq = circuit_serialization.encode_circuit(qc_cirq)
decoded_cirq = circuit_serialization.decode_circuit(encoded_cirq)

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

bluequbit-0.0.14b1.tar.gz (13.9 kB view details)

Uploaded Source

Built Distribution

bluequbit-0.0.14b1-py3-none-any.whl (16.6 kB view details)

Uploaded Python 3

File details

Details for the file bluequbit-0.0.14b1.tar.gz.

File metadata

  • Download URL: bluequbit-0.0.14b1.tar.gz
  • Upload date:
  • Size: 13.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for bluequbit-0.0.14b1.tar.gz
Algorithm Hash digest
SHA256 f6cd9f72315056fea5ca76d3d00bae4fcdb1ed738b5138b85b1dd3bccd38829f
MD5 27127ea2449c06a269fde303ba51086c
BLAKE2b-256 fe24ae6f795ec34c3cbc21d81c23147f28a56704724f3b4468511c24419a1587

See more details on using hashes here.

File details

Details for the file bluequbit-0.0.14b1-py3-none-any.whl.

File metadata

  • Download URL: bluequbit-0.0.14b1-py3-none-any.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for bluequbit-0.0.14b1-py3-none-any.whl
Algorithm Hash digest
SHA256 b28ae0c59f4af053d507d3f94f17bc6abc4287248c52585ba43aa080489ed964
MD5 c763ce59fd3a8b38bbd4645a01129f77
BLAKE2b-256 092ea21b45288066a274f8e6c0f5aa021e1dd4bd408ca6127269b9fcdbef2be9

See more details on using hashes here.

Supported by

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