quantum-debugger 0.7.0__tar.gz → 0.7.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.7.0 → quantum_debugger-0.7.1}/CHANGELOG.md +9 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/PKG-INFO +29 -5
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/README.md +27 -3
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/__init__.py +1 -1
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger.egg-info/PKG-INFO +29 -5
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/setup.py +1 -1
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/AUTHORS.md +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/LICENSE +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/MANIFEST.in +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/examples/bell_state_debug.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/examples/benchmarks.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/examples/grover_profiling.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/examples/interactive_demo.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/examples/qaoa_maxcut_example.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/examples/qiskit_integration_demo.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/examples/qml_basic_example.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/examples/vqe_h2_example.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/amplitude_amplification.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/amplitude_estimation.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/arithmetic.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/bb84.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/bell_test.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/decomposition.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/error_correction.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/grover.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/grover_optimize.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/hamiltonian_simulation.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/hhl.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/maxcut.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/metrology.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/multicontrol.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/oracles.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/phase_estimation.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/protocols.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/qec_threshold.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/qft.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/quantum_counting.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/quantum_walk.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/randomized_benchmarking.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/sat_solver.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/shor.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/simon.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/spectroscopy.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/state_preparation.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/swap_test.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/vqe_solver.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/backends/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/backends/_cuda_dll.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/backends/aws_backend.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/backends/base.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/backends/base_backend.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/backends/cupy_backend.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/backends/gpu_backend.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/backends/ibm_backend.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/backends/numba_backend.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/backends/numpy_backend.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/backends/sparse_backend.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/benchmarks/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/benchmarks/optimization_benchmarks.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/benchmarks/qml_benchmarks.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/benchmarks/report_generator.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/benchmarks/scalability_benchmarks.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/core/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/core/circuit.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/core/gates.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/core/quantum_state.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/debugger/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/debugger/breakpoints.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/debugger/debugger.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/debugger/inspector.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/gpu/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/gpu/memory.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/gpu/mixed_precision.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/gpu/multi_gpu.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/integrations/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/integrations/cirq_adapter.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/integrations/cirq_bridge.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/integrations/pennylane_bridge.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/integrations/qiskit_adapter.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/integrations/qiskit_bridge.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/mitigation/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/mitigation/core/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/mitigation/core/extrapolator.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/mitigation/core/folder.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/mitigation/zne.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/noise/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/noise/composite_noise.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/noise/hardware_profiles.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/noise/noise_helpers.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/noise/noise_models.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/noise/stochastic_sampler.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/optimization/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/optimization/circuit_compiler.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/optimization/gate_reduction.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/optimization/optimization_passes.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/optimization/transpiler.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/parallel/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/parallel/executor.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/profiler/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/profiler/metrics.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/profiler/profiler.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/advanced/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/advanced/ansatz_analysis.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/advanced/autoencoder.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/advanced/data_reuploading.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/advanced/qcnn.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/advanced/vqc.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/algorithms/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/algorithms/actor_critic.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/algorithms/dqn.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/algorithms/policy_gradient.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/algorithms/qaoa.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/algorithms/qgan.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/algorithms/qrl.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/algorithms/vqd.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/algorithms/vqe.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/ansatz/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/ansatz/excitation_preserving.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/ansatz/real_amplitudes.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/ansatz/strongly_entangling.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/ansatz/two_local.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/automl/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/automl/ansatz_selector.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/automl/architecture_search.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/automl/auto_qnn.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/automl/hyperparameter_tuner.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/data/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/data/dataset.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/data/feature_maps.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/error_mitigation/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/error_mitigation/zne.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/gates/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/gates/parameterized.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/hamiltonians/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/hamiltonians/molecular.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/hybrid/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/hybrid/layers.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/hybrid/pytorch_integration.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/hybrid/tensorflow_integration.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/kernels/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/kernels/alignment.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/kernels/qsvm.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/kernels/quantum_kernel.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/mitigation/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/mitigation/cdr.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/mitigation/error_characterization.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/mitigation/noise_models.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/mitigation/pec.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/optimizers/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/optimizers/advanced.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/optimizers/basics.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/optimizers/spsa.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/qnn/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/qnn/base.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/qnn/encoding.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/qnn/losses.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/qnn/network.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/qnn/variational.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/training/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/transfer/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/transfer/fine_tuning.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/transfer/model_zoo.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/transfer/pretrained.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/transfer/serialization.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/utils/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/utils/gradients.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/stabilizer.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/tomography.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/visualization/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/visualization/bloch_sphere.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/visualization/state_viz.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger.egg-info/SOURCES.txt +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger.egg-info/dependency_links.txt +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger.egg-info/requires.txt +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger.egg-info/top_level.txt +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/requirements.txt +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/setup.cfg +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/cirq/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/cirq/test_cirq_advanced.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/cirq/test_cirq_edge_cases.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/cirq/test_cirq_integration.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/conftest.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/integration/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/integration/test_integration.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/integration/test_qiskit_integration.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_actor_critic.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_advanced_algorithms.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_advanced_optimizers.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_advanced_qml.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_ansatz_library.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_automl.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_dataset.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_dqn.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_edge_cases.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_hamiltonians.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_hybrid.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_kernels.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_mitigation.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_policy_gradient.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_qaoa.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_qml_parameterized_gates.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_qnn.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_spsa.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_transfer.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_transfer_extended.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_vqd.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_vqe.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/qml/test_zne.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_algorithms.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_arithmetic.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_backends.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_bb84.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_bell_test.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_benchmarks.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_decomposition.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_error_correction.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_grover_optimize.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_hamiltonian_simulation.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_integrations.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_maxcut.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_metrology.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_multicontrol.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_optimization.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_protocols_shor.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_qec_threshold.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_randomized_benchmarking.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_sat_solver.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_simon.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_spectroscopy.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_stabilizer.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_state_preparation.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_tomography.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/test_vqe_solver.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/CONVERSION_TRACKER.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/__init__.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_advanced.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_backend_comprehensive.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_backend_integration.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_backends.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_backends_advanced.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_backends_comprehensive.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_backends_fast.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_circuit_noise.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_circuit_noise_advanced.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_circuit_noise_unique.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_compatibility.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_comprehensive.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_distribution.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_docstrings.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_error_handling.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_extreme.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_gpu_quick.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_hardware_profiles_extended.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_hardware_profiles_phase3.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_mitigation_comprehensive.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_mitigation_final.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_mitigation_observables.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_mitigation_zne.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_noise.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_noise_advanced.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_noise_extreme.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_noise_final.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_noise_performance.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_noise_quantum_info.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_noise_ultimate.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_parallel.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_performance.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_production.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_qiskit_complex.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_qiskit_extreme.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_qiskit_ultra.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_qml_advanced.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_qml_comprehensive.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_qml_memory.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_qml_threading.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_qml_tricky.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_quickstart.py +0 -0
- {quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/tests/unit/test_validation.py +0 -0
|
@@ -5,6 +5,15 @@ All notable changes to QuantumDebugger will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.7.1] - 2026-07-24
|
|
9
|
+
|
|
10
|
+
Documentation / packaging patch (no code changes).
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Refreshed the PyPI project summary and README to reflect the current scope —
|
|
14
|
+
the state-vector and Clifford/stabilizer engines and the verified algorithm
|
|
15
|
+
library — instead of the older QML-only description.
|
|
16
|
+
|
|
8
17
|
## [0.7.0] - 2026-07-22
|
|
9
18
|
|
|
10
19
|
Theme: performance & scale, a large genuine quantum-algorithms library, advanced
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quantum-debugger
|
|
3
|
-
Version: 0.7.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.7.1
|
|
4
|
+
Summary: A quantum simulation and debugging toolkit: state-vector and Clifford/stabilizer simulation engines, a broad verified algorithm library (Shor, Grover, QPE, HHL, QEC, VQE, QAOA), quantum machine learning, GPU acceleration, and multi-framework support (Qiskit, PennyLane, Cirq, TensorFlow, PyTorch).
|
|
5
5
|
Home-page: https://github.com/Raunakg2005/quantum-debugger
|
|
6
6
|
Author: Raunak Kumar Gupta
|
|
7
7
|
Author-email: raunak.gupta@somaiya.edu
|
|
@@ -107,6 +107,30 @@ every routine verified against its known outcome:
|
|
|
107
107
|
|
|
108
108
|
See [CHANGELOG.md](CHANGELOG.md) for the full list.
|
|
109
109
|
|
|
110
|
+
## What's New in v0.7.0
|
|
111
|
+
|
|
112
|
+
A **second simulation engine** plus a large, verified quantum-algorithms library:
|
|
113
|
+
- **Clifford / stabilizer simulator** (`StabilizerSimulator`) — the
|
|
114
|
+
Aaronson-Gottesman tableau: GHZ, graph/cluster states, and randomized
|
|
115
|
+
benchmarking on **hundreds of qubits** instantly, far past the state-vector wall.
|
|
116
|
+
- **Big algorithms library** — Shor factoring, Simon, quantum error correction
|
|
117
|
+
(bit-flip / phase-flip / the 9-qubit Shor code), Trotter Hamiltonian simulation,
|
|
118
|
+
gate decomposition (ZYZ/KAK), quantum arithmetic (Fourier + ripple-carry adders),
|
|
119
|
+
teleportation / superdense / entanglement swapping, Bell-CHSH & GHZ-Mermin
|
|
120
|
+
nonlocality, and BB84 QKD — each verified against its known outcome.
|
|
121
|
+
- **VQE** ground-state solver converges to machine precision on larger chains
|
|
122
|
+
(BFGS optimizer).
|
|
123
|
+
|
|
124
|
+
### In development (0.8.0-dev)
|
|
125
|
+
- **Density-matrix simulator** (`DensityMatrix`) — open quantum systems with Kraus
|
|
126
|
+
channels, Lindblad master-equation evolution, and channel metrics (process /
|
|
127
|
+
average gate fidelity, Choi matrix, CPTP checks).
|
|
128
|
+
- **QEC under continuous noise** — a code run against an independent bit-/phase-flip
|
|
129
|
+
channel on every qubit, exactly, with CPTP syndrome recovery.
|
|
130
|
+
- **Quantum multiplier** and a **ripple-carry subtractor**.
|
|
131
|
+
|
|
132
|
+
See [CHANGELOG.md](CHANGELOG.md) for the full list.
|
|
133
|
+
|
|
110
134
|
## What's New in v0.6.1
|
|
111
135
|
|
|
112
136
|
Correctness, performance, and "make the advertised features real" release:
|
|
@@ -418,8 +442,8 @@ pytest tests/ --cov=quantum_debugger --cov-report=html
|
|
|
418
442
|
|
|
419
443
|
See [FINAL_TEST_SUMMARY.md](tests/FINAL_TEST_SUMMARY.md) for detailed test information.
|
|
420
444
|
|
|
421
|
-
**Test Statistics (v0.
|
|
422
|
-
- ~
|
|
445
|
+
**Test Statistics (v0.7.0):**
|
|
446
|
+
- ~1400 tests passing (`pytest tests/ -m "not aws"`)
|
|
423
447
|
- GPU-hardware tests require a working CUDA + CuPy install; they skip otherwise
|
|
424
448
|
- A few tests are performance/timing based and may vary by machine
|
|
425
449
|
|
|
@@ -466,5 +490,5 @@ If you use quantum-debugger in your research, please cite:
|
|
|
466
490
|
|
|
467
491
|
---
|
|
468
492
|
|
|
469
|
-
**Version:** 0.
|
|
493
|
+
**Version:** 0.7.1 (on PyPI) · 0.8.0-dev (in development)
|
|
470
494
|
**Last Updated:** July 2026
|
|
@@ -32,6 +32,30 @@ every routine verified against its known outcome:
|
|
|
32
32
|
|
|
33
33
|
See [CHANGELOG.md](CHANGELOG.md) for the full list.
|
|
34
34
|
|
|
35
|
+
## What's New in v0.7.0
|
|
36
|
+
|
|
37
|
+
A **second simulation engine** plus a large, verified quantum-algorithms library:
|
|
38
|
+
- **Clifford / stabilizer simulator** (`StabilizerSimulator`) — the
|
|
39
|
+
Aaronson-Gottesman tableau: GHZ, graph/cluster states, and randomized
|
|
40
|
+
benchmarking on **hundreds of qubits** instantly, far past the state-vector wall.
|
|
41
|
+
- **Big algorithms library** — Shor factoring, Simon, quantum error correction
|
|
42
|
+
(bit-flip / phase-flip / the 9-qubit Shor code), Trotter Hamiltonian simulation,
|
|
43
|
+
gate decomposition (ZYZ/KAK), quantum arithmetic (Fourier + ripple-carry adders),
|
|
44
|
+
teleportation / superdense / entanglement swapping, Bell-CHSH & GHZ-Mermin
|
|
45
|
+
nonlocality, and BB84 QKD — each verified against its known outcome.
|
|
46
|
+
- **VQE** ground-state solver converges to machine precision on larger chains
|
|
47
|
+
(BFGS optimizer).
|
|
48
|
+
|
|
49
|
+
### In development (0.8.0-dev)
|
|
50
|
+
- **Density-matrix simulator** (`DensityMatrix`) — open quantum systems with Kraus
|
|
51
|
+
channels, Lindblad master-equation evolution, and channel metrics (process /
|
|
52
|
+
average gate fidelity, Choi matrix, CPTP checks).
|
|
53
|
+
- **QEC under continuous noise** — a code run against an independent bit-/phase-flip
|
|
54
|
+
channel on every qubit, exactly, with CPTP syndrome recovery.
|
|
55
|
+
- **Quantum multiplier** and a **ripple-carry subtractor**.
|
|
56
|
+
|
|
57
|
+
See [CHANGELOG.md](CHANGELOG.md) for the full list.
|
|
58
|
+
|
|
35
59
|
## What's New in v0.6.1
|
|
36
60
|
|
|
37
61
|
Correctness, performance, and "make the advertised features real" release:
|
|
@@ -343,8 +367,8 @@ pytest tests/ --cov=quantum_debugger --cov-report=html
|
|
|
343
367
|
|
|
344
368
|
See [FINAL_TEST_SUMMARY.md](tests/FINAL_TEST_SUMMARY.md) for detailed test information.
|
|
345
369
|
|
|
346
|
-
**Test Statistics (v0.
|
|
347
|
-
- ~
|
|
370
|
+
**Test Statistics (v0.7.0):**
|
|
371
|
+
- ~1400 tests passing (`pytest tests/ -m "not aws"`)
|
|
348
372
|
- GPU-hardware tests require a working CUDA + CuPy install; they skip otherwise
|
|
349
373
|
- A few tests are performance/timing based and may vary by machine
|
|
350
374
|
|
|
@@ -391,5 +415,5 @@ If you use quantum-debugger in your research, please cite:
|
|
|
391
415
|
|
|
392
416
|
---
|
|
393
417
|
|
|
394
|
-
**Version:** 0.
|
|
418
|
+
**Version:** 0.7.1 (on PyPI) · 0.8.0-dev (in development)
|
|
395
419
|
**Last Updated:** July 2026
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quantum-debugger
|
|
3
|
-
Version: 0.7.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.7.1
|
|
4
|
+
Summary: A quantum simulation and debugging toolkit: state-vector and Clifford/stabilizer simulation engines, a broad verified algorithm library (Shor, Grover, QPE, HHL, QEC, VQE, QAOA), quantum machine learning, GPU acceleration, and multi-framework support (Qiskit, PennyLane, Cirq, TensorFlow, PyTorch).
|
|
5
5
|
Home-page: https://github.com/Raunakg2005/quantum-debugger
|
|
6
6
|
Author: Raunak Kumar Gupta
|
|
7
7
|
Author-email: raunak.gupta@somaiya.edu
|
|
@@ -107,6 +107,30 @@ every routine verified against its known outcome:
|
|
|
107
107
|
|
|
108
108
|
See [CHANGELOG.md](CHANGELOG.md) for the full list.
|
|
109
109
|
|
|
110
|
+
## What's New in v0.7.0
|
|
111
|
+
|
|
112
|
+
A **second simulation engine** plus a large, verified quantum-algorithms library:
|
|
113
|
+
- **Clifford / stabilizer simulator** (`StabilizerSimulator`) — the
|
|
114
|
+
Aaronson-Gottesman tableau: GHZ, graph/cluster states, and randomized
|
|
115
|
+
benchmarking on **hundreds of qubits** instantly, far past the state-vector wall.
|
|
116
|
+
- **Big algorithms library** — Shor factoring, Simon, quantum error correction
|
|
117
|
+
(bit-flip / phase-flip / the 9-qubit Shor code), Trotter Hamiltonian simulation,
|
|
118
|
+
gate decomposition (ZYZ/KAK), quantum arithmetic (Fourier + ripple-carry adders),
|
|
119
|
+
teleportation / superdense / entanglement swapping, Bell-CHSH & GHZ-Mermin
|
|
120
|
+
nonlocality, and BB84 QKD — each verified against its known outcome.
|
|
121
|
+
- **VQE** ground-state solver converges to machine precision on larger chains
|
|
122
|
+
(BFGS optimizer).
|
|
123
|
+
|
|
124
|
+
### In development (0.8.0-dev)
|
|
125
|
+
- **Density-matrix simulator** (`DensityMatrix`) — open quantum systems with Kraus
|
|
126
|
+
channels, Lindblad master-equation evolution, and channel metrics (process /
|
|
127
|
+
average gate fidelity, Choi matrix, CPTP checks).
|
|
128
|
+
- **QEC under continuous noise** — a code run against an independent bit-/phase-flip
|
|
129
|
+
channel on every qubit, exactly, with CPTP syndrome recovery.
|
|
130
|
+
- **Quantum multiplier** and a **ripple-carry subtractor**.
|
|
131
|
+
|
|
132
|
+
See [CHANGELOG.md](CHANGELOG.md) for the full list.
|
|
133
|
+
|
|
110
134
|
## What's New in v0.6.1
|
|
111
135
|
|
|
112
136
|
Correctness, performance, and "make the advertised features real" release:
|
|
@@ -418,8 +442,8 @@ pytest tests/ --cov=quantum_debugger --cov-report=html
|
|
|
418
442
|
|
|
419
443
|
See [FINAL_TEST_SUMMARY.md](tests/FINAL_TEST_SUMMARY.md) for detailed test information.
|
|
420
444
|
|
|
421
|
-
**Test Statistics (v0.
|
|
422
|
-
- ~
|
|
445
|
+
**Test Statistics (v0.7.0):**
|
|
446
|
+
- ~1400 tests passing (`pytest tests/ -m "not aws"`)
|
|
423
447
|
- GPU-hardware tests require a working CUDA + CuPy install; they skip otherwise
|
|
424
448
|
- A few tests are performance/timing based and may vary by machine
|
|
425
449
|
|
|
@@ -466,5 +490,5 @@ If you use quantum-debugger in your research, please cite:
|
|
|
466
490
|
|
|
467
491
|
---
|
|
468
492
|
|
|
469
|
-
**Version:** 0.
|
|
493
|
+
**Version:** 0.7.1 (on PyPI) · 0.8.0-dev (in development)
|
|
470
494
|
**Last Updated:** July 2026
|
|
@@ -22,7 +22,7 @@ setup(
|
|
|
22
22
|
version=_read_version(),
|
|
23
23
|
author="Raunak Kumar Gupta",
|
|
24
24
|
author_email="raunak.gupta@somaiya.edu",
|
|
25
|
-
description="
|
|
25
|
+
description="A quantum simulation and debugging toolkit: state-vector and Clifford/stabilizer simulation engines, a broad verified algorithm library (Shor, Grover, QPE, HHL, QEC, VQE, QAOA), quantum machine learning, GPU acceleration, and multi-framework support (Qiskit, PennyLane, Cirq, TensorFlow, PyTorch).",
|
|
26
26
|
long_description=long_description,
|
|
27
27
|
long_description_content_type="text/markdown",
|
|
28
28
|
url="https://github.com/Raunakg2005/quantum-debugger",
|
|
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
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/decomposition.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/error_correction.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/grover_optimize.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/multicontrol.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/phase_estimation.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/qec_threshold.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/quantum_counting.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/quantum_walk.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/spectroscopy.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/algorithms/state_preparation.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
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/backends/numba_backend.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/backends/numpy_backend.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/backends/sparse_backend.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/benchmarks/qml_benchmarks.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/benchmarks/report_generator.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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/integrations/cirq_adapter.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/integrations/cirq_bridge.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/integrations/pennylane_bridge.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/integrations/qiskit_adapter.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/integrations/qiskit_bridge.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/mitigation/core/__init__.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/mitigation/core/extrapolator.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/mitigation/core/folder.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/noise/hardware_profiles.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/noise/stochastic_sampler.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/optimization/circuit_compiler.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/optimization/gate_reduction.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/optimization/transpiler.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
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/advanced/ansatz_analysis.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/advanced/autoencoder.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/advanced/data_reuploading.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/algorithms/__init__.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/algorithms/actor_critic.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/algorithms/policy_gradient.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
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/ansatz/real_amplitudes.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/ansatz/strongly_entangling.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/automl/ansatz_selector.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/automl/architecture_search.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/error_mitigation/__init__.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/error_mitigation/zne.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/gates/parameterized.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/hamiltonians/__init__.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/hamiltonians/molecular.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/hybrid/pytorch_integration.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/kernels/quantum_kernel.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/mitigation/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/mitigation/noise_models.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/optimizers/__init__.py
RENAMED
|
File without changes
|
{quantum_debugger-0.7.0 → quantum_debugger-0.7.1}/quantum_debugger/qml/optimizers/advanced.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|