The Cirq module that provides tools and access to Superstaq.
Project description
cirq-superstaq
This package is used to access Superstaq via a Web API through Cirq. Cirq programmers can take advantage of the applications, pulse level optimizations, and write-once-target-all features of Superstaq with this package.
cirq-superstaq
is available on PyPI and can be installed with:
pip install cirq-superstaq
Please note that Python version 3.8
or higher is required. For further installation instructions, see here.
Creating and submitting a circuit through cirq-superstaq
import cirq
import cirq_superstaq as css
q0 = cirq.LineQubit(0)
q1 = cirq.LineQubit(1)
circuit = cirq.Circuit(cirq.H(q0), cirq.CNOT(q0, q1), cirq.measure(q0))
service = css.Service(
api_key="""Insert superstaq token that you received from https://superstaq.infleqtion.com""",
verbose=True,
)
# 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 = service.create_job(circuit, repetitions=1, target="ibmq_brisbane_qpu", method="dry-run")
print("This is the job that's created ", job.status())
print(job.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
cirq_superstaq-0.5.27.tar.gz
(64.4 kB
view details)
Built Distribution
File details
Details for the file cirq_superstaq-0.5.27.tar.gz
.
File metadata
- Download URL: cirq_superstaq-0.5.27.tar.gz
- Upload date:
- Size: 64.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 055583d652b5f986df45e557074e1c432c55fa4f8060122e082ac3f48c8341f1 |
|
MD5 | 5f723d299ea61d69a69be8a38a48d042 |
|
BLAKE2b-256 | 73347e79662402d0642c5741e119c4133dd61b6d6b1d29eb1343765e809bba94 |
File details
Details for the file cirq_superstaq-0.5.27-py3-none-any.whl
.
File metadata
- Download URL: cirq_superstaq-0.5.27-py3-none-any.whl
- Upload date:
- Size: 71.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e61a0e06ff73482355394cb559e3860afa32912a15c9917ea18cd3b7299ee759 |
|
MD5 | 8cc0d901b50c17dda922a23c5e6e1a4e |
|
BLAKE2b-256 | f4b35df9eaa7fa95f92ea3b4ea6aad41058d8c8226f459fc2aad140ef6a80b6b |