Skip to main content

Python SDK to Deqart platform

Project description

Usage

Interface with the Deqart server

Initialization

import deqart

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

Estimating how long it takes to simulate a circuit

import deqart

dq = deqart.init()

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

result = dq.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 deqart

dq = deqart.init()

dq.submit_job(qc)
result = dq.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 deqart.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


Download files

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

Source Distribution

deqart-0.0.7b3.tar.gz (13.8 kB view details)

Uploaded Source

Built Distribution

deqart-0.0.7b3-py3-none-any.whl (16.8 kB view details)

Uploaded Python 3

File details

Details for the file deqart-0.0.7b3.tar.gz.

File metadata

  • Download URL: deqart-0.0.7b3.tar.gz
  • Upload date:
  • Size: 13.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for deqart-0.0.7b3.tar.gz
Algorithm Hash digest
SHA256 5a73fb8c51385ceeb94974c469e3b538018a28eb0d76642323599f0aa3ba00a1
MD5 5721a0e6afaa3865c7c5f5ac8258a101
BLAKE2b-256 4ca623f2f416f2a612ddfdc5ded859705d2e4b04b9e34219fe9df8c0938f37f6

See more details on using hashes here.

File details

Details for the file deqart-0.0.7b3-py3-none-any.whl.

File metadata

  • Download URL: deqart-0.0.7b3-py3-none-any.whl
  • Upload date:
  • Size: 16.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for deqart-0.0.7b3-py3-none-any.whl
Algorithm Hash digest
SHA256 d3d81e2334bda2bc7bfa273b06b6db039f1ce01af93eb1c3a96ab78975d0a777
MD5 94714bbb0c5636b04714b4be46ec3c5c
BLAKE2b-256 9d95b1470ae7498f7eb7556750b6942df3e2961049fde692c9ef8a32ff31bc2f

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