Quantastica quantum simulator tools
Project description
Qubit Toaster backend for Qiskit
Allows running Qiskit code on Qubit Toaster - a high performance quantum circuit simulator.
Install
pip install quantastica-qiskit-toaster
Usage
Import ToasterBackend into your Qiskit code:
from quantastica.qiskit_toaster import ToasterBackend
Replace Aer.get_backend with ToasterBackend.get_backend.
Example
from qiskit import QuantumRegister, ClassicalRegister
from qiskit import QuantumCircuit, execute, Aer
from quantastica.qiskit_toaster import ToasterBackend
qc = QuantumCircuit()
q = QuantumRegister(2, "q")
c = ClassicalRegister(2, "c")
qc.add_register(q)
qc.add_register(c)
qc.h(q[0])
qc.cx(q[0], q[1])
qc.measure(q[0], c[0])
qc.measure(q[1], c[1])
# Instead:
#backend = Aer.get_backend("qasm_simulator")
# Use:
backend = ToasterBackend.get_backend("qasm_simulator")
# OR:
# backend = ToasterBackend.get_backend("statevector_simulator")
job = execute(qc, backend=backend)
job_result = job.result()
print(job_result.get_counts(qc))
Details
Syntax
ToasterBackend.get_backend(backend_name = None)
Arguments
backend_name can be:
-
qasm_simulatoronly counts will be returned -
statevector_simulatorboth counts and state vector will be returned
If backend name is not provided then it will act as qasm_simulator
That's it. Enjoy! :)
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file quantastica-qiskit-toaster-0.9.6.tar.gz.
File metadata
- Download URL: quantastica-qiskit-toaster-0.9.6.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ec92fb170ffdf8335260e79ba0d363c11c1a1912c195e2d219ded6540482f74
|
|
| MD5 |
cf04181420b7c5ba99e18dadabad7f36
|
|
| BLAKE2b-256 |
e6b460aea2bfa2deb06979ba024412114916cfa6f906f157836c43e1ca1f217b
|
File details
Details for the file quantastica_qiskit_toaster-0.9.6-py3-none-any.whl.
File metadata
- Download URL: quantastica_qiskit_toaster-0.9.6-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c1159e9090168b45bb18c0553f7b4184fd3a1c0f20eaaad5687423e7bbce42e
|
|
| MD5 |
f3f986d5afe6de60d6444bb85fe222bc
|
|
| BLAKE2b-256 |
d2c792d334a9eaf8584fbff61a0ed4838a33915144ab820b95d517b9f7504e95
|