Quantum Noise Analysis
Note The project is still under development. Please raise any query or feature request directly to mail joshimohit@bhu.ac.in.
Resource estimation with the package
from qiskit_noise_analysis import resource_estimation
report = resource_estimation.get_estimation(
circuits = [ circ1, circ2, ....],
basis_gates= ["id", "rz", "sx", "x", "cx"],
circuit_names= ['circ1', 'circ2'])
Implementation Example
from qiskit_noise_analysis import resource_estimation
from qiskit import QuantumCircuit
qc1 = QuantumCircuit(4)
qc1.h([0,1,2,3])
qc1.cx(0,1)
qc1.t([1,2,3])
qc2 = QuantumCircuit(4)
qc2.t([0,1,2,3])
qc2.cx(0,1)
report = resource_estimation.get_estimation(circuits=[qc1, qc2], circuit_names =['qc1','qc2'])
You can also use resource_estimation.demo() to see the comparison of two random circuits.
Release files for qiskit-noise-analysis 0.1.5
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| qiskit_noise_analysis-0.1.5.tar.gz | 5.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| qiskit_noise_analysis-0.1.5-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 11.9 kB
Release files / qiskit_noise_analysis-0.1.5.tar.gz
| Download URL | qiskit_noise_analysis-0.1.5.tar.gz |
|---|---|
| Size | 5.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
6bdcefc3be8ed80e0cc5e313863d8d063dc454a56b50eb2e3a6e96a947aaf688
|
|
BLAKE2b-256 checksum How to use checksums |
0754ca46f3a0c052b0d259a7cdce2541941e1f3a284623b0ed801a1ec9fc7282
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.2
|
Release files / qiskit_noise_analysis-0.1.5-py3-none-any.whl
| Download URL | qiskit_noise_analysis-0.1.5-py3-none-any.whl |
|---|---|
| Size | 6.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
9a944c245eec5598bfba2fbc4ab4ba187a1081f9073114d1253d81a2436ea2df
|
|
BLAKE2b-256 checksum How to use checksums |
685229b75e7df483ffc686dfc27ac50d1060c780c86b1bca07c7c5ac336a629c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.2
|