quantum-debugger 0.4.0__tar.gz → 0.4.1__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.
- {quantum_debugger-0.4.0/quantum_debugger.egg-info → quantum_debugger-0.4.1}/PKG-INFO +5 -4
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/README.md +2 -1
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1/quantum_debugger.egg-info}/PKG-INFO +5 -4
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/setup.py +3 -3
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/CHANGELOG.md +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/LICENSE +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/MANIFEST.in +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/examples/bell_state_debug.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/examples/benchmarks.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/examples/grover_profiling.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/examples/interactive_demo.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/examples/qaoa_maxcut_example.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/examples/qiskit_integration_demo.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/examples/qml_basic_example.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/examples/vqe_h2_example.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/backends/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/backends/base.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/backends/cupy_backend.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/backends/numba_backend.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/backends/numpy_backend.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/backends/sparse_backend.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/core/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/core/circuit.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/core/gates.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/core/quantum_state.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/debugger/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/debugger/breakpoints.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/debugger/debugger.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/debugger/inspector.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/integrations/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/integrations/qiskit_adapter.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/mitigation/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/mitigation/core/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/mitigation/core/extrapolator.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/mitigation/core/folder.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/mitigation/zne.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/noise/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/noise/composite_noise.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/noise/hardware_profiles.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/noise/noise_helpers.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/noise/noise_models.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/noise/stochastic_sampler.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/parallel/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/parallel/executor.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/profiler/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/profiler/metrics.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/profiler/profiler.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/algorithms/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/algorithms/qaoa.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/algorithms/vqe.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/ansatz/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/gates/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/gates/parameterized.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/hamiltonians/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/hamiltonians/molecular.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/optimizers/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/training/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/utils/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/utils/gradients.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/visualization/__init__.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/visualization/bloch_sphere.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/visualization/state_viz.py +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger.egg-info/SOURCES.txt +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger.egg-info/dependency_links.txt +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger.egg-info/requires.txt +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger.egg-info/top_level.txt +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/requirements.txt +0 -0
- {quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/setup.cfg +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quantum-debugger
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.1
|
|
4
4
|
Summary: Interactive quantum circuit debugger and Quantum Machine Learning library with VQE, QAOA, and parameterized gates
|
|
5
5
|
Home-page: https://github.com/Raunakg2005/quantum-debugger
|
|
6
|
-
Author:
|
|
7
|
-
Author-email:
|
|
6
|
+
Author: Raunak Kumar Gupta
|
|
7
|
+
Author-email: raunak.gupta@somaiya.edu
|
|
8
8
|
Project-URL: Bug Reports, https://github.com/Raunakg2005/quantum-debugger/issues
|
|
9
9
|
Project-URL: Source, https://github.com/Raunakg2005/quantum-debugger
|
|
10
10
|
Project-URL: Documentation, https://github.com/Raunakg2005/quantum-debugger#readme
|
|
@@ -425,6 +425,7 @@ MIT License - see [LICENSE](LICENSE) file.
|
|
|
425
425
|
---
|
|
426
426
|
|
|
427
427
|
**PyPI:** https://pypi.org/project/quantum-debugger/
|
|
428
|
-
**Author:**
|
|
428
|
+
**Author:** Raunak Kumar Gupta
|
|
429
|
+
**Institution:** K.J. Somaiya School of Engineering
|
|
429
430
|
**Version:** 0.4.0
|
|
430
431
|
**Python:** 3.9+
|
|
@@ -373,6 +373,7 @@ MIT License - see [LICENSE](LICENSE) file.
|
|
|
373
373
|
---
|
|
374
374
|
|
|
375
375
|
**PyPI:** https://pypi.org/project/quantum-debugger/
|
|
376
|
-
**Author:**
|
|
376
|
+
**Author:** Raunak Kumar Gupta
|
|
377
|
+
**Institution:** K.J. Somaiya School of Engineering
|
|
377
378
|
**Version:** 0.4.0
|
|
378
379
|
**Python:** 3.9+
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quantum-debugger
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.1
|
|
4
4
|
Summary: Interactive quantum circuit debugger and Quantum Machine Learning library with VQE, QAOA, and parameterized gates
|
|
5
5
|
Home-page: https://github.com/Raunakg2005/quantum-debugger
|
|
6
|
-
Author:
|
|
7
|
-
Author-email:
|
|
6
|
+
Author: Raunak Kumar Gupta
|
|
7
|
+
Author-email: raunak.gupta@somaiya.edu
|
|
8
8
|
Project-URL: Bug Reports, https://github.com/Raunakg2005/quantum-debugger/issues
|
|
9
9
|
Project-URL: Source, https://github.com/Raunakg2005/quantum-debugger
|
|
10
10
|
Project-URL: Documentation, https://github.com/Raunakg2005/quantum-debugger#readme
|
|
@@ -425,6 +425,7 @@ MIT License - see [LICENSE](LICENSE) file.
|
|
|
425
425
|
---
|
|
426
426
|
|
|
427
427
|
**PyPI:** https://pypi.org/project/quantum-debugger/
|
|
428
|
-
**Author:**
|
|
428
|
+
**Author:** Raunak Kumar Gupta
|
|
429
|
+
**Institution:** K.J. Somaiya School of Engineering
|
|
429
430
|
**Version:** 0.4.0
|
|
430
431
|
**Python:** 3.9+
|
|
@@ -5,9 +5,9 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="quantum-debugger",
|
|
8
|
-
version="0.4.
|
|
9
|
-
author="
|
|
10
|
-
author_email="
|
|
8
|
+
version="0.4.1",
|
|
9
|
+
author="Raunak Kumar Gupta",
|
|
10
|
+
author_email="raunak.gupta@somaiya.edu",
|
|
11
11
|
description="Interactive quantum circuit debugger and Quantum Machine Learning library with VQE, QAOA, and parameterized gates",
|
|
12
12
|
long_description=long_description,
|
|
13
13
|
long_description_content_type="text/markdown",
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/backends/numba_backend.py
RENAMED
|
File without changes
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/backends/numpy_backend.py
RENAMED
|
File without changes
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/backends/sparse_backend.py
RENAMED
|
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
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/integrations/qiskit_adapter.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/mitigation/core/__init__.py
RENAMED
|
File without changes
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/mitigation/core/extrapolator.py
RENAMED
|
File without changes
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/mitigation/core/folder.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/noise/hardware_profiles.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/noise/stochastic_sampler.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/algorithms/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/gates/parameterized.py
RENAMED
|
File without changes
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/hamiltonians/__init__.py
RENAMED
|
File without changes
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/hamiltonians/molecular.py
RENAMED
|
File without changes
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/qml/optimizers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/visualization/__init__.py
RENAMED
|
File without changes
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/visualization/bloch_sphere.py
RENAMED
|
File without changes
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger/visualization/state_viz.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.4.0 → quantum_debugger-0.4.1}/quantum_debugger.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|