dense-evolution 8.1.2__tar.gz → 8.1.3__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.
Files changed (21) hide show
  1. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/PKG-INFO +1 -1
  2. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/dense_evolution/__init__.py +1 -6
  3. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/dense_evolution.egg-info/PKG-INFO +1 -1
  4. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/pyproject.toml +1 -1
  5. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/README.md +0 -0
  6. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/dash.py +0 -0
  7. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/dense_evolution/chunk.py +0 -0
  8. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/dense_evolution/compiler.py +0 -0
  9. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/dense_evolution/gates.py +0 -0
  10. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/dense_evolution/healing.py +0 -0
  11. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/dense_evolution/parser.py +0 -0
  12. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/dense_evolution/registry.py +0 -0
  13. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/dense_evolution/simulator.py +0 -0
  14. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/dense_evolution/stress_test.py +0 -0
  15. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/dense_evolution/test2.py +0 -0
  16. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/dense_evolution.egg-info/SOURCES.txt +0 -0
  17. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/dense_evolution.egg-info/dependency_links.txt +0 -0
  18. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/dense_evolution.egg-info/requires.txt +0 -0
  19. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/dense_evolution.egg-info/top_level.txt +0 -0
  20. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/license.md +0 -0
  21. {dense_evolution-8.1.2 → dense_evolution-8.1.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dense-evolution
3
- Version: 8.1.2
3
+ Version: 8.1.3
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
- <<<<<<< HEAD
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.3"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dense-evolution
3
- Version: 8.1.2
3
+ Version: 8.1.3
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.2"
7
+ version = "8.1.3"
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