dense-evolution 8.1.2__tar.gz → 8.1.4__tar.gz
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.
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/PKG-INFO +1 -1
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/dense_evolution/__init__.py +1 -6
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/dense_evolution/gates.py +0 -8
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/dense_evolution.egg-info/PKG-INFO +1 -1
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/pyproject.toml +1 -1
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/README.md +0 -0
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/dash.py +0 -0
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/dense_evolution/chunk.py +0 -0
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/dense_evolution/compiler.py +0 -0
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/dense_evolution/healing.py +0 -0
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/dense_evolution/parser.py +0 -0
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/dense_evolution/registry.py +0 -0
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/dense_evolution/simulator.py +0 -0
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/dense_evolution/stress_test.py +0 -0
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/dense_evolution/test2.py +0 -0
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/dense_evolution.egg-info/SOURCES.txt +0 -0
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/dense_evolution.egg-info/dependency_links.txt +0 -0
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/dense_evolution.egg-info/requires.txt +0 -0
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/dense_evolution.egg-info/top_level.txt +0 -0
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/license.md +0 -0
- {dense_evolution-8.1.2 → dense_evolution-8.1.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dense-evolution
|
|
3
|
-
Version: 8.1.
|
|
3
|
+
Version: 8.1.4
|
|
4
4
|
Summary: Micro-optimized High-Performance NISQ Statevector Quantum Circuit Simulator (Hardware-Adaptive Integration of Native NumPy, CUDA-Accelerated CuPy, and Linear Kernel Fusion via JAX JIT/XLA Compilation)
|
|
5
5
|
Author-email: Salvatore Pennacchio <jtatopenn@libero.it>
|
|
6
6
|
License: Business Source License 1.1
|
|
@@ -2,15 +2,10 @@
|
|
|
2
2
|
Dense-Evolution
|
|
3
3
|
High-performance quantum statevector simulator optimized for NISQ circuits.
|
|
4
4
|
"""
|
|
5
|
-
|
|
6
5
|
from .simulator import DenseSVSimulator
|
|
7
6
|
from .parser import QASMParser, QASMCircuit
|
|
8
7
|
from .compiler import QuantumTranspiler
|
|
9
8
|
from .registry import NoiseModel, QuantumHardwareRegistry
|
|
10
9
|
from .gates import GATES, PARAMETRIC_GATES, GATE_IDS
|
|
11
10
|
|
|
12
|
-
|
|
13
|
-
__version__ = "8.1.1"
|
|
14
|
-
=======
|
|
15
|
-
__version__ = "8.1.2"
|
|
16
|
-
>>>>>>> 10dd0b7 (v8.1.2 - SafeMemoryGuard Anti-OOM, chunk.py rewrite, README update)
|
|
11
|
+
__version__ = "8.1.4"
|
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
import numpy as np
|
|
2
2
|
from .registry import HAS_JAX
|
|
3
3
|
|
|
4
|
-
<<<<<<< HEAD
|
|
5
|
-
# Scegli il backend corretto una volta sola
|
|
6
|
-
=======
|
|
7
4
|
|
|
8
|
-
>>>>>>> 10dd0b7 (v8.1.2 - SafeMemoryGuard Anti-OOM, chunk.py rewrite, README update)
|
|
9
5
|
if HAS_JAX:
|
|
10
6
|
import jax.numpy as jnp
|
|
11
7
|
xp = jnp
|
|
@@ -40,11 +36,7 @@ GATE_IDS = {
|
|
|
40
36
|
'rx': 9, 'ry': 10, 'rz': 11, 'cx': 20, 'cz': 21
|
|
41
37
|
}
|
|
42
38
|
|
|
43
|
-
<<<<<<< HEAD
|
|
44
|
-
# Un dizionario unico, pulito e senza codice duplicato
|
|
45
|
-
=======
|
|
46
39
|
|
|
47
|
-
>>>>>>> 10dd0b7 (v8.1.2 - SafeMemoryGuard Anti-OOM, chunk.py rewrite, README update)
|
|
48
40
|
PARAMETRIC_GATES = {
|
|
49
41
|
'rx': lambda theta: xp.array([[xp.cos(theta/2), -1j*xp.sin(theta/2)], [-1j*xp.sin(theta/2), xp.cos(theta/2)]], dtype=complex),
|
|
50
42
|
'ry': lambda theta: xp.array([[xp.cos(theta/2), -xp.sin(theta/2)], [xp.sin(theta/2), xp.cos(theta/2)]], dtype=complex),
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dense-evolution
|
|
3
|
-
Version: 8.1.
|
|
3
|
+
Version: 8.1.4
|
|
4
4
|
Summary: Micro-optimized High-Performance NISQ Statevector Quantum Circuit Simulator (Hardware-Adaptive Integration of Native NumPy, CUDA-Accelerated CuPy, and Linear Kernel Fusion via JAX JIT/XLA Compilation)
|
|
5
5
|
Author-email: Salvatore Pennacchio <jtatopenn@libero.it>
|
|
6
6
|
License: Business Source License 1.1
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "dense-evolution"
|
|
7
|
-
version = "8.1.
|
|
7
|
+
version = "8.1.4"
|
|
8
8
|
description = "Micro-optimized High-Performance NISQ Statevector Quantum Circuit Simulator (Hardware-Adaptive Integration of Native NumPy, CUDA-Accelerated CuPy, and Linear Kernel Fusion via JAX JIT/XLA Compilation)"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dense_evolution-8.1.2 → dense_evolution-8.1.4}/dense_evolution.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|