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
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
deqart-0.0.1b10.tar.gz
(12.9 kB
view details)
Built Distribution
deqart-0.0.1b10-py3-none-any.whl
(15.6 kB
view details)
File details
Details for the file deqart-0.0.1b10.tar.gz
.
File metadata
- Download URL: deqart-0.0.1b10.tar.gz
- Upload date:
- Size: 12.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1523d55a877fa63766e2cac895d101ed2735a8b167e1de50d2253896a2fbbc19 |
|
MD5 | 67ca6d27e6459276fbdb6d22c0d1769f |
|
BLAKE2b-256 | d2ca3453a702952d8a5d2f4d586fb551164235a7280cf8c67eac4b23c719f5d9 |
File details
Details for the file deqart-0.0.1b10-py3-none-any.whl
.
File metadata
- Download URL: deqart-0.0.1b10-py3-none-any.whl
- Upload date:
- Size: 15.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3f04cfc6b42cdc2410b149e7f47e390292f28be9d21ebe8ee4991a0495e1d88 |
|
MD5 | c94364d372fdcbbabda0be0173227b8a |
|
BLAKE2b-256 | 70fe45739b559b202bd1d1232a926aa3896bfeb6f24806098b004dd1c07b76b6 |