The Qiskit module that provides tools and access to Superstaq.
Project description
qiskit-superstaq
This package is used to access Superstaq via a Web API through Qiskit. Qiskit programmers can take advantage of the applications, pulse level optimizations, and write-once-target-all features of Superstaq with this package.
qiskit-superstaq
is available on PyPI and can be installed with:
pip install qiskit-superstaq
Please note that Python version 3.8
or higher is required. See installation instructions here.
Creating and submitting a circuit through qiskit-superstaq
import qiskit
import qiskit_superstaq as qss
token = "Insert superstaq token that you received from https://superstaq.infleqtion.com"
superstaq = qss.superstaq_provider.SuperstaqProvider(token)
backend = superstaq.get_backend("ibmq_brisbane_qpu")
qc = qiskit.QuantumCircuit(2, 2)
qc.h(0)
qc.cx(0, 1)
qc.measure(0, 0)
qc.measure(1, 1)
print(qc)
# Submitting a circuit to IBM's Brisbane QPU. Providing the "dry-run" method parameter instructs Superstaq to simulate the circuit, and is available to free trial users.
job = backend.run(qc, shots=100, method="dry-run")
print(job.result().get_counts())
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
qiskit_superstaq-0.5.30.tar.gz
(49.5 kB
view hashes)
Built Distribution
Close
Hashes for qiskit_superstaq-0.5.30-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 456da3bf5ea025985e8fd22b2245ac300bc305f54a590b893a7d34f9b7e8d2a1 |
|
MD5 | 20d00398e2d9ef4596ef3fe3717131f2 |
|
BLAKE2b-256 | 537ca8272680818c89d911daf165f7d9c7e23a02817b838321f70c9215e4877c |