zena-sdk 0.1.4__cp38-abi3-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- qsys/__init__.py +31 -0
- qsys/__pycache__/__init__.cpython-313.pyc +0 -0
- qsys/backends/base.py +39 -0
- qsys/backends/local5q.py +8 -0
- qsys/circuit/__init__.py +20 -0
- qsys/circuit/__pycache__/__init__.cpython-313.pyc +0 -0
- qsys/circuit/__pycache__/quantum_circuit.cpython-313.pyc +0 -0
- qsys/circuit/quantum_circuit.py +103 -0
- qsys/cli/__init__.py +2 -0
- qsys/cli/io_cli.py +45 -0
- qsys/errors/__init__.py +32 -0
- qsys/errors/__pycache__/__init__.cpython-313.pyc +0 -0
- qsys/io/__init__.py +21 -0
- qsys/io/json_io.py +84 -0
- qsys/io/text_io.py +58 -0
- qsys/ir/__init__.py +1 -0
- qsys/ir/__pycache__/__init__.cpython-313.pyc +0 -0
- qsys/ir/__pycache__/types.cpython-313.pyc +0 -0
- qsys/ir/from_payload.py +27 -0
- qsys/ir/types.py +9 -0
- qsys/logging.py +14 -0
- qsys/runtime/__init__.py +4 -0
- qsys/runtime/__pycache__/__init__.cpython-313.pyc +0 -0
- qsys/runtime/__pycache__/execute.cpython-313.pyc +0 -0
- qsys/runtime/execute.py +155 -0
- qsys/target.py +44 -0
- qsys/targets.py +63 -0
- qsys/transpiler/__init__.py +6 -0
- qsys/transpiler/basis.py +39 -0
- qsys/transpiler/opt1q.py +101 -0
- qsys/transpiler/passes.py +57 -0
- qsys/transpiler/routing.py +136 -0
- qsys/transpiler/validate.py +132 -0
- qsys/viz/__init__.py +1 -0
- qsys/viz/text_drawer.py +89 -0
- simulator_statevector/__init__.py +5 -0
- simulator_statevector/__pycache__/__init__.cpython-313.pyc +0 -0
- simulator_statevector/simulator_statevector.pyd +0 -0
- zena/__init__.py +7 -0
- zena/__pycache__/__init__.cpython-312.pyc +0 -0
- zena/__pycache__/__init__.cpython-313.pyc +0 -0
- zena/__pycache__/execute.cpython-312.pyc +0 -0
- zena/__pycache__/execute.cpython-313.pyc +0 -0
- zena/circuit/__init__.py +2 -0
- zena/circuit/__pycache__/__init__.cpython-312.pyc +0 -0
- zena/circuit/__pycache__/__init__.cpython-313.pyc +0 -0
- zena/circuit/__pycache__/quantum_circuit.cpython-312.pyc +0 -0
- zena/circuit/__pycache__/quantum_circuit.cpython-313.pyc +0 -0
- zena/circuit/__pycache__/register.cpython-312.pyc +0 -0
- zena/circuit/__pycache__/register.cpython-313.pyc +0 -0
- zena/circuit/quantum_circuit.py +218 -0
- zena/circuit/register.py +28 -0
- zena/compiler/__init__.py +72 -0
- zena/compiler/__pycache__/__init__.cpython-312.pyc +0 -0
- zena/compiler/__pycache__/__init__.cpython-313.pyc +0 -0
- zena/dist/zena_sdk-0.1.0-py3-none-any.whl +0 -0
- zena/dist/zena_sdk-0.1.0.tar.gz +0 -0
- zena/execute.py +35 -0
- zena/providers/__init__.py +5 -0
- zena/providers/__pycache__/__init__.cpython-312.pyc +0 -0
- zena/providers/__pycache__/__init__.cpython-313.pyc +0 -0
- zena/providers/__pycache__/aer.cpython-312.pyc +0 -0
- zena/providers/__pycache__/aer.cpython-313.pyc +0 -0
- zena/providers/__pycache__/backend.cpython-312.pyc +0 -0
- zena/providers/__pycache__/backend.cpython-313.pyc +0 -0
- zena/providers/__pycache__/job.cpython-312.pyc +0 -0
- zena/providers/__pycache__/job.cpython-313.pyc +0 -0
- zena/providers/aer.py +71 -0
- zena/providers/backend.py +18 -0
- zena/providers/job.py +24 -0
- zena/visualization/__init__.py +28 -0
- zena/visualization/__pycache__/__init__.cpython-312.pyc +0 -0
- zena/visualization/__pycache__/__init__.cpython-313.pyc +0 -0
- zena_sdk-0.1.4.dist-info/METADATA +70 -0
- zena_sdk-0.1.4.dist-info/RECORD +76 -0
- zena_sdk-0.1.4.dist-info/WHEEL +4 -0
zena/providers/aer.py
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Aer Provider for local simulation.
|
|
3
|
+
"""
|
|
4
|
+
from .backend import Backend
|
|
5
|
+
from .job import Job, Result
|
|
6
|
+
import uuid
|
|
7
|
+
|
|
8
|
+
# Import the internal execution logic from qsys
|
|
9
|
+
try:
|
|
10
|
+
from qsys.runtime.execute import execute as qsys_execute
|
|
11
|
+
except ImportError:
|
|
12
|
+
qsys_execute = None
|
|
13
|
+
|
|
14
|
+
class StatevectorSimulator(Backend):
|
|
15
|
+
"""Local statevector simulator backend."""
|
|
16
|
+
|
|
17
|
+
@property
|
|
18
|
+
def name(self):
|
|
19
|
+
return "statevector_simulator"
|
|
20
|
+
|
|
21
|
+
@property
|
|
22
|
+
def target(self):
|
|
23
|
+
"""Return a default target for the simulator."""
|
|
24
|
+
try:
|
|
25
|
+
from qsys.backends.base import Target
|
|
26
|
+
# Simulator typically has all-to-all connectivity and standard basis
|
|
27
|
+
return Target(
|
|
28
|
+
n_qubits=32, # Theoretical limit for 8GB RAM approx
|
|
29
|
+
basis_gates={"x", "sx", "rz", "cx", "measure", "h", "y", "z", "s", "sdg", "t", "tdg", "rx", "ry", "swap"},
|
|
30
|
+
coupling_map=[] # Empty list often means all-to-all in these engines, or we can generate it
|
|
31
|
+
)
|
|
32
|
+
except ImportError:
|
|
33
|
+
return None
|
|
34
|
+
|
|
35
|
+
def run(self, circuit, shots=1024, **kwargs):
|
|
36
|
+
"""Run the circuit using qsys."""
|
|
37
|
+
if not qsys_execute:
|
|
38
|
+
raise ImportError("qsys.runtime.execute not available. Cannot run simulation.")
|
|
39
|
+
|
|
40
|
+
# Extract the core qsys circuit
|
|
41
|
+
if not hasattr(circuit, "_core_circuit") or not circuit._core_circuit:
|
|
42
|
+
raise ValueError("Circuit has no underlying qsys circuit.")
|
|
43
|
+
|
|
44
|
+
core_qc = circuit._core_circuit
|
|
45
|
+
|
|
46
|
+
# Execute using qsys
|
|
47
|
+
# qsys.execute returns a dict with 'counts', 'statevector', etc.
|
|
48
|
+
# We disable the internal qsys transpiler for now to avoid 'backend.target' errors
|
|
49
|
+
# since we are not yet passing a formal qsys.Backend object.
|
|
50
|
+
res_data = qsys_execute(core_qc, shots=shots, use_transpiler=False)
|
|
51
|
+
|
|
52
|
+
# Wrap in Result and Job
|
|
53
|
+
result = Result(res_data)
|
|
54
|
+
job_id = str(uuid.uuid4())
|
|
55
|
+
return Job(self, job_id, result)
|
|
56
|
+
|
|
57
|
+
class AerProvider:
|
|
58
|
+
"""Provider for Aer backends."""
|
|
59
|
+
|
|
60
|
+
def __init__(self):
|
|
61
|
+
self._backends = {
|
|
62
|
+
"statevector_simulator": StatevectorSimulator()
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
def get_backend(self, name="statevector_simulator"):
|
|
66
|
+
if name not in self._backends:
|
|
67
|
+
raise ValueError(f"Backend '{name}' not found.")
|
|
68
|
+
return self._backends[name]
|
|
69
|
+
|
|
70
|
+
# Global instance
|
|
71
|
+
Aer = AerProvider()
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Base Backend Class.
|
|
3
|
+
"""
|
|
4
|
+
from abc import ABC, abstractmethod
|
|
5
|
+
|
|
6
|
+
class Backend(ABC):
|
|
7
|
+
"""Abstract base class for backends."""
|
|
8
|
+
|
|
9
|
+
@abstractmethod
|
|
10
|
+
def run(self, circuit, shots=1024, **kwargs):
|
|
11
|
+
"""Run a circuit on the backend."""
|
|
12
|
+
pass
|
|
13
|
+
|
|
14
|
+
@property
|
|
15
|
+
@abstractmethod
|
|
16
|
+
def name(self):
|
|
17
|
+
"""Backend name."""
|
|
18
|
+
pass
|
zena/providers/job.py
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Job Class to handle execution status and results.
|
|
3
|
+
"""
|
|
4
|
+
class Job:
|
|
5
|
+
def __init__(self, backend, job_id, result=None):
|
|
6
|
+
self._backend = backend
|
|
7
|
+
self._job_id = job_id
|
|
8
|
+
self._result = result
|
|
9
|
+
|
|
10
|
+
def result(self):
|
|
11
|
+
"""Return the result of the job."""
|
|
12
|
+
return self._result
|
|
13
|
+
|
|
14
|
+
class Result:
|
|
15
|
+
def __init__(self, backend_result_dict):
|
|
16
|
+
self._data = backend_result_dict
|
|
17
|
+
|
|
18
|
+
def get_counts(self):
|
|
19
|
+
"""Return counts from the result."""
|
|
20
|
+
return self._data.get("counts", {})
|
|
21
|
+
|
|
22
|
+
def get_statevector(self):
|
|
23
|
+
"""Return statevector from the result."""
|
|
24
|
+
return self._data.get("statevector", [])
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
def plot_histogram(data, title=None):
|
|
2
|
+
"""
|
|
3
|
+
Plot a histogram of counts.
|
|
4
|
+
|
|
5
|
+
Args:
|
|
6
|
+
data (dict): Counts dictionary (e.g., {'00': 500, '11': 500})
|
|
7
|
+
title (str): Optional title for the plot.
|
|
8
|
+
"""
|
|
9
|
+
if title:
|
|
10
|
+
print(f"\n--- {title} ---")
|
|
11
|
+
else:
|
|
12
|
+
print("\n--- Histogram ---")
|
|
13
|
+
|
|
14
|
+
if not data:
|
|
15
|
+
print("Empty data.")
|
|
16
|
+
return
|
|
17
|
+
|
|
18
|
+
max_val = max(data.values())
|
|
19
|
+
total = sum(data.values())
|
|
20
|
+
|
|
21
|
+
# Sort keys for consistent display
|
|
22
|
+
for key in sorted(data.keys()):
|
|
23
|
+
val = data[key]
|
|
24
|
+
percentage = (val / total) * 100
|
|
25
|
+
bar_length = int((val / max_val) * 20)
|
|
26
|
+
bar = "█" * bar_length
|
|
27
|
+
print(f"{key:5s} | {bar:<20} | {val:4d} ({percentage:>5.1f}%)")
|
|
28
|
+
print("-" * 45)
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: zena-sdk
|
|
3
|
+
Version: 0.1.4
|
|
4
|
+
Classifier: Development Status :: 3 - Alpha
|
|
5
|
+
Classifier: Intended Audience :: Developers
|
|
6
|
+
Classifier: Intended Audience :: Science/Research
|
|
7
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
10
|
+
Requires-Dist: numpy>=1.20
|
|
11
|
+
Summary: A high-level Python SDK for the Zena Quantum Simulator, including core Rust engine.
|
|
12
|
+
Author-email: Zena Team <info@zena.quantum>
|
|
13
|
+
License: Apache-2.0
|
|
14
|
+
Requires-Python: >=3.8
|
|
15
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
16
|
+
|
|
17
|
+
# Zena SDK
|
|
18
|
+
|
|
19
|
+
**Zena SDK** is a high-level Python library for creating and simulating quantum circuits, designed with a familiar API for users of Qiskit. It serves as the user-facing layer for the powerful Zena Quantum Simulator engine.
|
|
20
|
+
|
|
21
|
+
## Installation
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
pip install zena-sdk
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
*(Note: Requires valid `qsys` and `simulator_statevector` backend installations)*
|
|
28
|
+
|
|
29
|
+
## Basic Usage
|
|
30
|
+
|
|
31
|
+
Zena SDK allows you to build circuits using `QuantumRegister`, `ClassicalRegister`, and `QuantumCircuit` in a way that feels completely natural.
|
|
32
|
+
|
|
33
|
+
```python
|
|
34
|
+
from zena import QuantumCircuit, execute, Aer
|
|
35
|
+
|
|
36
|
+
# 1. Create a Quantum Circuit
|
|
37
|
+
qc = QuantumCircuit(2, 2)
|
|
38
|
+
qc.h(0)
|
|
39
|
+
qc.cx(0, 1)
|
|
40
|
+
qc.measure([0, 1], [0, 1])
|
|
41
|
+
|
|
42
|
+
# 2. visualizae
|
|
43
|
+
print(qc.draw())
|
|
44
|
+
|
|
45
|
+
# 3. Choose a Backend
|
|
46
|
+
backend = Aer.get_backend('statevector_simulator')
|
|
47
|
+
|
|
48
|
+
# 4. Execute
|
|
49
|
+
job = execute(qc, backend, shots=1024)
|
|
50
|
+
result = job.result()
|
|
51
|
+
|
|
52
|
+
# 5. Get Results
|
|
53
|
+
print("Counts:", result.get_counts())
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Features
|
|
57
|
+
|
|
58
|
+
- **Familiar API**: Drop-in conceptual replacement for basic Qiskit circuits.
|
|
59
|
+
- **High Performance**: Powered by a Rust-based statevector simulator.
|
|
60
|
+
- **Visualizations**: Built-in methods for circuit drawing and result plotting.
|
|
61
|
+
- **Extensible**: Modular architecture allowing for future backend plugins.
|
|
62
|
+
|
|
63
|
+
## Architecture
|
|
64
|
+
|
|
65
|
+
Zena SDK (`zena`) sits on top of the Core Engine (`qsys`).
|
|
66
|
+
|
|
67
|
+
- **Base Layer**: `qsys` (Intermediate Representation & Composer)
|
|
68
|
+
- **Simulation Layer**: `simulator_statevector` (Rust-based capabilities)
|
|
69
|
+
- **User Layer**: `zena` (High-level Circuit & Provider API)
|
|
70
|
+
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
qsys\__init__.py,sha256=Q8yVST9Ov7MJiIYOxpNoTLYg9IZoisuadosaM4mgZ28,698
|
|
2
|
+
qsys\__pycache__\__init__.cpython-313.pyc,sha256=xskCS2TiRCQgx6U4SOzFRUZu8-Wq5nCHUY6NytsxMZg,889
|
|
3
|
+
qsys\backends\base.py,sha256=6gnUHBXGIADGRFRzQXT1MSYs_IS-7BrhmUvrzHA3w3k,1017
|
|
4
|
+
qsys\backends\local5q.py,sha256=oFME6sErOOjiHkQ3nN4zG4S3H05XK4JF69RnTyrcIJY,284
|
|
5
|
+
qsys\circuit\__init__.py,sha256=TCOP6J2PgFXEbRFDRQUAD5lKP0Y2yW3GbTBT8fPKvU4,505
|
|
6
|
+
qsys\circuit\__pycache__\__init__.cpython-313.pyc,sha256=OZK4IsPHo2NlgstYdj1T0A5fSitBk_8FtkeX5HpBErI,421
|
|
7
|
+
qsys\circuit\__pycache__\quantum_circuit.cpython-313.pyc,sha256=2K6CVIjd79rNnr9roghGxznmAAWSq41jkAIQZQCODHY,5575
|
|
8
|
+
qsys\circuit\quantum_circuit.py,sha256=-KfDygGkHzNce0qv42AuDxXyO-Sme1OUeal5aqRiHaA,4017
|
|
9
|
+
qsys\cli\__init__.py,sha256=y_HHgHnDAi_oBmHJgRwVFEZHr3J_uR6vbUFr6D05twE,45
|
|
10
|
+
qsys\cli\io_cli.py,sha256=bprn2Oqawkamu0glb-8NOds0f7fwKLk_9r0x579rSoY,1168
|
|
11
|
+
qsys\errors\__init__.py,sha256=1mGayUVji7TG6sl_I8iI4OifDOrwvXtVx8htVcmqrnQ,530
|
|
12
|
+
qsys\errors\__pycache__\__init__.cpython-313.pyc,sha256=w3YiS4JCkvf0iJjr0kDoBA8ko9oDOxZ8xcDuwSoph2k,1384
|
|
13
|
+
qsys\io\__init__.py,sha256=R-8apoTeewML6-fuGVu1CAUYJEESKK9GfBacSJV2Vk4,753
|
|
14
|
+
qsys\io\json_io.py,sha256=RQqNHDMQPueovJPBuADHULRcA6mS1w4vfIVRnlnXm4M,2786
|
|
15
|
+
qsys\io\text_io.py,sha256=uxH_I8G_4Z7ih1vp2Xj-O8qzM-PlRfNbL19rTQGFz7I,2330
|
|
16
|
+
qsys\ir\__init__.py,sha256=Sb-7WnlilyjGbvuqjVh4YXFvJRDorLHAUOq8F9SuO5o,13
|
|
17
|
+
qsys\ir\__pycache__\__init__.cpython-313.pyc,sha256=BfnKq-GWCg-SZ2_-yzIuxBiHTqpI22BNQdgya11H1k0,174
|
|
18
|
+
qsys\ir\__pycache__\types.cpython-313.pyc,sha256=Wf7YP-9kDj31iCTZHTuhSc-PsMfm9gUK-iKj6mdBS-8,728
|
|
19
|
+
qsys\ir\from_payload.py,sha256=jQuj7EnrJ23ShjRlvTiKPDDpf0KpxqXvD5K_VBJ5IMU,863
|
|
20
|
+
qsys\ir\types.py,sha256=2EwKGhHAitUDMvD8uRIz8kgHXWfBMFa_w7vQZC1M_Tg,253
|
|
21
|
+
qsys\logging.py,sha256=SvShsBSUI1yQaenGXvMN7x9nievG4Oyiz9zD9rkqzfU,405
|
|
22
|
+
qsys\runtime\__init__.py,sha256=via8B-K-M_rByn58t_ZE-og_WnQvkOq8SbgQKCrjccE,127
|
|
23
|
+
qsys\runtime\__pycache__\__init__.cpython-313.pyc,sha256=6EW6OsMIrziybVGBZx-rYXufYECVOlNy-4_Bkq1j9Hg,282
|
|
24
|
+
qsys\runtime\__pycache__\execute.cpython-313.pyc,sha256=4EDGp42dEe0YGDOw-RkAQVJ19Y_l08w034pDNXIkDPo,5644
|
|
25
|
+
qsys\runtime\execute.py,sha256=5tr4f7i4Sl8KAbwZCfmlQqXmqXk9yah8N0cnZiQtUO4,5622
|
|
26
|
+
qsys\target.py,sha256=iEQ0gNeMDNgR8mRIcghnmDTQE8xsDNyJhc9NM-qQOKc,1488
|
|
27
|
+
qsys\targets.py,sha256=wsVx0ifXeiJBpwXlZ3c0a3dIfHtrGuHEw8BsYrstQ2o,1416
|
|
28
|
+
qsys\transpiler\__init__.py,sha256=yV3OqTd_eHXVeNETCr3f7Dj2nPleLKeeybqf2pjGvic,281
|
|
29
|
+
qsys\transpiler\basis.py,sha256=NcMA-QbFgNV9FOUjIfmEGVq7LydChUXKQxvyZhdIEgc,1311
|
|
30
|
+
qsys\transpiler\opt1q.py,sha256=Hv6NwvNIinWsprjjzW_9YSNAS67tGYANNVTof8mo8y0,3465
|
|
31
|
+
qsys\transpiler\passes.py,sha256=DXWTeA4Wmp-Ock2WPs23_uJTfiPJB1zkgfgcWxMTzrA,1761
|
|
32
|
+
qsys\transpiler\routing.py,sha256=cZJaqAlxESt7J3oqGsRAPgnD7Y5inZQ3OtlpkxwW3aA,5077
|
|
33
|
+
qsys\transpiler\validate.py,sha256=Wga14FVrkPhll4bFThVs9YqQSt8jScWxh3L61d9ow1c,4509
|
|
34
|
+
qsys\viz\__init__.py,sha256=-rCy5Sx04Bi7XnH-GzEJ8yzHAQ6rlN66aPdV8FhQg5w,14
|
|
35
|
+
qsys\viz\text_drawer.py,sha256=zvX3BXSAFNj8z6qsfkzmfzONvjf2hMw1mNzD-gMQqJQ,3124
|
|
36
|
+
simulator_statevector\__init__.py,sha256=IBnMkXProb3w8uTTrGN7mOHoWuKdKqTTd3MtM8hizmk,167
|
|
37
|
+
simulator_statevector\__pycache__\__init__.cpython-313.pyc,sha256=hralv5IC7Xwp5WcYygjKu7WPfw47tFpPP6naDg0Btik,453
|
|
38
|
+
simulator_statevector\simulator_statevector.pyd,sha256=gWZeYTOA4uXfcbD_JcnptrTqthWVtcCQLdSQ0K9Wj0Q,413696
|
|
39
|
+
zena\__init__.py,sha256=slBf_rnfNiZw6NkdBNSZklC_aIh0HqM_GnlxWrMFJvU,229
|
|
40
|
+
zena\__pycache__\__init__.cpython-312.pyc,sha256=gmoIlCjIw-33uHDlHp0P1q6ESTF7fVjcg_y515g6j1Q,453
|
|
41
|
+
zena\__pycache__\__init__.cpython-313.pyc,sha256=vD9LD8qeCxcpwZ63XOfqzK00aWnKv4zbTHMoiabzdMA,475
|
|
42
|
+
zena\__pycache__\execute.cpython-312.pyc,sha256=HreVKRUBtwJ5l9dqe9hWSMZTeMOolBkq2usu0rPTNQg,1279
|
|
43
|
+
zena\__pycache__\execute.cpython-313.pyc,sha256=RCy2Sc9hCGIfEeOiESgOAIUobCYdTUzKBxysq_l4mBU,1270
|
|
44
|
+
zena\circuit\__init__.py,sha256=wKzKOy3wPaNvgKShbRYzFlrRi_lz_3_MyQ925oDqCFE,101
|
|
45
|
+
zena\circuit\__pycache__\__init__.cpython-312.pyc,sha256=V6oE5KqcOwpwBmQK6JnGBe04XyK8a56EZ_TV6jWoPPg,294
|
|
46
|
+
zena\circuit\__pycache__\__init__.cpython-313.pyc,sha256=i31-QGuxJSsf4NCaJw518EM10NLbxRL27Kr6bNem3AU,316
|
|
47
|
+
zena\circuit\__pycache__\quantum_circuit.cpython-312.pyc,sha256=M9bWOFOEWcvn18Th0PFnUgxa5_hyUIosxsFb9qW6fZg,10738
|
|
48
|
+
zena\circuit\__pycache__\quantum_circuit.cpython-313.pyc,sha256=fnXHoTIi1uIFLmqixzEu0_kDRYIaF89SXc4q0jqohY8,11053
|
|
49
|
+
zena\circuit\__pycache__\register.cpython-312.pyc,sha256=NgYTgrv0hoQb83D19_82_JqgyEoWhTUfPCUaA-9MVhI,2169
|
|
50
|
+
zena\circuit\__pycache__\register.cpython-313.pyc,sha256=In5PqL7J4NlQRvZ61DmbmJc95HFgbtY5IPvFCYetx-0,2306
|
|
51
|
+
zena\circuit\quantum_circuit.py,sha256=fNM_6K-jlo3Yy7eWceK6JOFkQ0dQdvzEMkE4gAKdTn0,8061
|
|
52
|
+
zena\circuit\register.py,sha256=t23-L8hXAgsRD2l5o-99e9gccl8ylP_rLQ1UgHAMWA4,832
|
|
53
|
+
zena\compiler\__init__.py,sha256=-5S58DzhjB0TrgSZ-kSvIj7rn8Mmcil2x3lFQxeN_sY,2768
|
|
54
|
+
zena\compiler\__pycache__\__init__.cpython-312.pyc,sha256=-XwVatyhncgMa-6Mcnt9sTJ7KnlggeCCjAl6Ncu6INI,2008
|
|
55
|
+
zena\compiler\__pycache__\__init__.cpython-313.pyc,sha256=1j-XrkDrCN7d1jazLYgFhvU3zgOTbvsvup7B--lRJus,2061
|
|
56
|
+
zena\dist\zena_sdk-0.1.0-py3-none-any.whl,sha256=j6iMq5DgcWpkOfpnyh01VK2sklxfLyR9CdeP08yzcLo,1816
|
|
57
|
+
zena\dist\zena_sdk-0.1.0.tar.gz,sha256=K5CUHhTQFtkYDspGxIozIP7Wco41pl47_QR16JKY954,6856
|
|
58
|
+
zena\execute.py,sha256=LC46PiqI5FK6zjAATAahNOrUwdR-58xc5xUSIt4gdm8,1224
|
|
59
|
+
zena\providers\__init__.py,sha256=dgwMU16it9iBjddjtycVrEw6FHx0QzlJwcLTnYhBRTc,51
|
|
60
|
+
zena\providers\__pycache__\__init__.cpython-312.pyc,sha256=ieurVL6n2kmhid9ZrrTlbSB1q2MUGvocAUBzojz-Dsg,368
|
|
61
|
+
zena\providers\__pycache__\__init__.cpython-313.pyc,sha256=-EKKVqQ1s27HONJnajO4OONLCXKM9y5zqVUWQvlaXPw,448
|
|
62
|
+
zena\providers\__pycache__\aer.cpython-312.pyc,sha256=gL_rE1hf4WpmO0gw8_vA5yS6KiE7GzZArAogsUqAZWc,2888
|
|
63
|
+
zena\providers\__pycache__\aer.cpython-313.pyc,sha256=qWlxB4qePUzkc8oUZD9nguy4etTDP95AZKLDau8KuOQ,3023
|
|
64
|
+
zena\providers\__pycache__\backend.cpython-312.pyc,sha256=QGc1vU5dl2BoV6VAoi8MrR8tWJHp2wL8Yl_IgzoS--0,868
|
|
65
|
+
zena\providers\__pycache__\backend.cpython-313.pyc,sha256=s2TKwxydXorl7H_IOnjSDTLRlx-kria-D8tiA7j9DUA,950
|
|
66
|
+
zena\providers\__pycache__\job.cpython-312.pyc,sha256=Lzb6NTwSwNodrqJt2LZOBvH9B2e60wSxM2IPxNu5-Sg,1587
|
|
67
|
+
zena\providers\__pycache__\job.cpython-313.pyc,sha256=wjd1CEv78ieo47j1TNbtq_z0cbxHsDa6iVKUNodMUXc,1681
|
|
68
|
+
zena\providers\aer.py,sha256=2jrOVdBtIqCpxacH5u1VhTGX5EEHEMFIfqERmaFinig,2479
|
|
69
|
+
zena\providers\backend.py,sha256=MYce8srKEhKy5uePkVwTO9Jsop614mcEV3bzzWe6FSo,361
|
|
70
|
+
zena\providers\job.py,sha256=MmC3iaddumNFlWH1Q6RuQ0zqquknR7R_3uWFLASYhbY,690
|
|
71
|
+
zena\visualization\__init__.py,sha256=zWzuaFe8je_apkMUWOszoP6yaY-8f7zGNDc4AnvVsqs,770
|
|
72
|
+
zena\visualization\__pycache__\__init__.cpython-312.pyc,sha256=ZcOaCFOCJ6CVrgcuH17NcqggV3DU19EpUeYrEyhZosQ,1306
|
|
73
|
+
zena\visualization\__pycache__\__init__.cpython-313.pyc,sha256=WbYdhyHlopFthHiCnXRbwRf2EKxvu0dws-rv3dtoW1w,1311
|
|
74
|
+
zena_sdk-0.1.4.dist-info\METADATA,sha256=eNyEKeuj1zMneJwM8sydYAczk12v7l3sti9o7kuh2Kg,2166
|
|
75
|
+
zena_sdk-0.1.4.dist-info\WHEEL,sha256=gPqN4EsdiAyGvmfrYy_ONrF276O8o0hPitI2CKZrEFA,95
|
|
76
|
+
zena_sdk-0.1.4.dist-info\RECORD,,
|