quantum-debugger 0.9.0__tar.gz → 0.9.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.9.0 → quantum_debugger-0.9.1}/CHANGELOG.md +15 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/PKG-INFO +11 -2
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/README.md +10 -1
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/__init__.py +1 -1
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/noise/noise_models.py +18 -5
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger.egg-info/PKG-INFO +11 -2
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_noise.py +88 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/AUTHORS.md +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/LICENSE +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/MANIFEST.in +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/examples/bell_state_debug.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/examples/benchmarks.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/examples/grover_profiling.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/examples/interactive_demo.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/examples/qaoa_maxcut_example.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/examples/qiskit_integration_demo.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/examples/qml_basic_example.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/examples/vqe_h2_example.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/adiabatic.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/amplitude_amplification.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/amplitude_estimation.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/arithmetic.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/bb84.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/bell_test.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/channel_capacity.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/classical_shadows.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/cloning.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/contextuality.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/decoherence_free.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/decomposition.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/discrimination.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/distillation.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/dynamical_decoupling.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/entanglement_growth.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/entanglement_negativity.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/error_correction.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/error_detection.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/geometric_phase.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/grover.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/grover_optimize.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/hamiltonian_simulation.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/hhl.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/holevo.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/hubbard.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/imaginary_time.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/jordan_wigner.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/kitaev_chain.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/krylov.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/level_statistics.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/loschmidt.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/loss_robustness.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/magic_measures.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/magic_state.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/many_body_correlations.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/maxcut.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/mbqc.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/metrology.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/multicontrol.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/nonlocality.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/oracles.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/otoc.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/perfect_code.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/petz.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/phase_estimation.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/protocols.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/qec_noise.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/qec_threshold.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/qft.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/quantum_counting.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/quantum_phase_transition.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/quantum_walk.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/randomized_benchmarking.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/sat_solver.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/schmidt.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/shor.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/simon.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/spectroscopy.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/spin_squeezing.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/ssh_model.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/state_preparation.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/steane_code.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/swap_test.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/thermal.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/uncertainty.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/vqe_solver.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/weak_values.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/zeno.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/backends/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/backends/_cuda_dll.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/backends/aws_backend.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/backends/base.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/backends/base_backend.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/backends/cupy_backend.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/backends/gpu_backend.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/backends/ibm_backend.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/backends/numba_backend.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/backends/numpy_backend.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/backends/sparse_backend.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/benchmarks/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/benchmarks/optimization_benchmarks.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/benchmarks/qml_benchmarks.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/benchmarks/report_generator.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/benchmarks/scalability_benchmarks.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/core/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/core/circuit.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/core/gates.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/core/quantum_state.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/debugger/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/debugger/breakpoints.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/debugger/debugger.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/debugger/inspector.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/density_matrix.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/gpu/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/gpu/memory.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/gpu/mixed_precision.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/gpu/multi_gpu.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/integrations/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/integrations/cirq_adapter.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/integrations/cirq_bridge.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/integrations/pennylane_bridge.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/integrations/qiskit_adapter.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/integrations/qiskit_bridge.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/mitigation/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/mitigation/core/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/mitigation/core/extrapolator.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/mitigation/core/folder.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/mitigation/zne.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/noise/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/noise/composite_noise.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/noise/hardware_profiles.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/noise/noise_helpers.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/noise/stochastic_sampler.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/optimization/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/optimization/circuit_compiler.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/optimization/gate_reduction.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/optimization/optimization_passes.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/optimization/transpiler.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/parallel/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/parallel/executor.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/profiler/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/profiler/metrics.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/profiler/profiler.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/advanced/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/advanced/ansatz_analysis.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/advanced/autoencoder.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/advanced/data_reuploading.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/advanced/qcnn.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/advanced/vqc.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/algorithms/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/algorithms/actor_critic.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/algorithms/dqn.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/algorithms/policy_gradient.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/algorithms/qaoa.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/algorithms/qgan.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/algorithms/qrl.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/algorithms/vqd.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/algorithms/vqe.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/ansatz/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/ansatz/excitation_preserving.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/ansatz/real_amplitudes.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/ansatz/strongly_entangling.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/ansatz/two_local.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/automl/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/automl/ansatz_selector.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/automl/architecture_search.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/automl/auto_qnn.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/automl/hyperparameter_tuner.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/data/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/data/dataset.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/data/feature_maps.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/error_mitigation/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/error_mitigation/zne.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/gates/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/gates/parameterized.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/hamiltonians/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/hamiltonians/molecular.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/hybrid/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/hybrid/layers.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/hybrid/pytorch_integration.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/hybrid/tensorflow_integration.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/kernels/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/kernels/alignment.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/kernels/qsvm.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/kernels/quantum_kernel.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/mitigation/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/mitigation/cdr.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/mitigation/error_characterization.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/mitigation/noise_models.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/mitigation/pec.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/optimizers/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/optimizers/advanced.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/optimizers/basics.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/optimizers/spsa.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/qnn/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/qnn/base.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/qnn/encoding.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/qnn/losses.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/qnn/network.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/qnn/variational.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/training/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/transfer/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/transfer/fine_tuning.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/transfer/model_zoo.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/transfer/pretrained.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/transfer/serialization.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/utils/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/qml/utils/gradients.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/stabilizer.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/tomography.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/visualization/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/visualization/bloch_sphere.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/visualization/state_viz.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger.egg-info/SOURCES.txt +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger.egg-info/dependency_links.txt +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger.egg-info/requires.txt +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger.egg-info/top_level.txt +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/requirements.txt +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/setup.cfg +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/setup.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/cirq/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/cirq/test_cirq_advanced.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/cirq/test_cirq_edge_cases.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/cirq/test_cirq_integration.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/conftest.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/integration/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/integration/test_integration.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/integration/test_qiskit_integration.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_actor_critic.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_advanced_algorithms.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_advanced_optimizers.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_advanced_qml.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_ansatz_library.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_automl.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_dataset.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_dqn.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_edge_cases.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_hamiltonians.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_hybrid.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_kernels.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_mitigation.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_policy_gradient.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_qaoa.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_qml_parameterized_gates.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_qnn.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_spsa.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_transfer.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_transfer_extended.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_vqd.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_vqe.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/qml/test_zne.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_adiabatic.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_algorithms.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_arithmetic.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_backends.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_bb84.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_bell_test.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_benchmarks.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_channel_capacity.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_classical_shadows.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_cloning.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_contextuality.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_decoherence_free.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_decomposition.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_density_matrix.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_discrimination.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_distillation.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_dynamical_decoupling.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_entanglement_growth.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_error_correction.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_error_detection.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_geometric_phase.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_grover_optimize.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_hamiltonian_simulation.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_holevo.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_hubbard.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_imaginary_time.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_integrations.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_jordan_wigner.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_kitaev_chain.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_krylov.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_level_statistics.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_loschmidt.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_loss_robustness.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_magic_measures.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_magic_state.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_many_body_extra.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_maxcut.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_mbqc.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_metrology.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_multicontrol.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_nonlocality.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_optimization.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_otoc.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_pauli_decompose.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_perfect_code.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_petz.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_protocols_shor.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_qec_noise.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_qec_threshold.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_randomized_benchmarking.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_sat_solver.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_schmidt.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_simon.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_spectroscopy.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_spin_squeezing.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_stabilizer.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_state_preparation.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_steane_code.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_thermal.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_tomography.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_trotter_scaling.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_uncertainty.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_vqe_solver.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_weak_values.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/test_zeno.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/CONVERSION_TRACKER.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/__init__.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_advanced.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_backend_comprehensive.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_backend_integration.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_backends.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_backends_advanced.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_backends_comprehensive.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_backends_fast.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_circuit_noise.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_circuit_noise_advanced.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_circuit_noise_unique.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_compatibility.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_comprehensive.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_distribution.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_docstrings.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_error_handling.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_extreme.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_gpu_quick.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_hardware_profiles_extended.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_hardware_profiles_phase3.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_mitigation_comprehensive.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_mitigation_final.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_mitigation_observables.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_mitigation_zne.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_noise_advanced.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_noise_extreme.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_noise_final.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_noise_performance.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_noise_quantum_info.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_noise_ultimate.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_parallel.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_performance.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_production.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_qiskit_complex.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_qiskit_extreme.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_qiskit_ultra.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_qml_advanced.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_qml_comprehensive.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_qml_memory.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_qml_threading.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_qml_tricky.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_quickstart.py +0 -0
- {quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/tests/unit/test_validation.py +0 -0
|
@@ -5,6 +5,21 @@ 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.9.1]
|
|
9
|
+
|
|
10
|
+
Theme: correctness patch for the depolarizing noise channel.
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- **`DepolarizingNoise.get_kraus_operators()`** now implements the same channel as
|
|
14
|
+
`DepolarizingNoise.apply()` and the class docstring — the Pauli-error convention
|
|
15
|
+
`ρ → (1−p)ρ + (p/3)(XρX + YρY + ZρZ)`, giving `K₀ = √(1−p)·I` and `K₁₋₃ = √(p/3)·{X, Y, Z}`.
|
|
16
|
+
It previously used a `√(p/4)` weighting (the uniform `ρ → (1−p)ρ + pI/2` convention), which
|
|
17
|
+
agrees with `apply()` only under the substitution `p → 4p/3`. Because
|
|
18
|
+
`StochasticNoiseSampler` consumes the Kraus path, Monte-Carlo–sampled depolarizing noise was
|
|
19
|
+
silently `4/3×` too strong for a given `p`. The operators remain trace-preserving
|
|
20
|
+
(`Σ Kᵢ†Kᵢ = I`). Added channel-equivalence, trace-preservation, edge-case, and sampler
|
|
21
|
+
regression tests. (Present in 0.8.0 and 0.9.0; fixed here.)
|
|
22
|
+
|
|
8
23
|
## [0.9.0]
|
|
9
24
|
|
|
10
25
|
Theme: quantum chemistry, many-body physics & advanced simulation. Fermionic systems
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quantum-debugger
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.1
|
|
4
4
|
Summary: A quantum simulation and debugging toolkit: state-vector, Clifford/stabilizer, and density-matrix (open-systems) engines, with a broad algorithm library, error correction under noise, 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
|
|
@@ -86,6 +86,15 @@ Dynamic: summary
|
|
|
86
86
|
|
|
87
87
|
A powerful Python library for quantum circuit debugging, state inspection, performance analysis, and quantum machine learning. From basic circuits to QML with one-line AutoML.
|
|
88
88
|
|
|
89
|
+
## What's New in v0.9.1
|
|
90
|
+
|
|
91
|
+
Correctness patch: **`DepolarizingNoise.get_kraus_operators()`** now implements the same
|
|
92
|
+
channel as `apply()` and the class docstring — the Pauli-error convention
|
|
93
|
+
`ρ → (1−p)ρ + (p/3)(XρX + YρY + ZρZ)` (`K₀ = √(1−p)·I`, `K₁₋₃ = √(p/3)·{X, Y, Z}`). The old
|
|
94
|
+
`√(p/4)` weighting made `StochasticNoiseSampler`'s Monte-Carlo depolarizing noise `4/3×` too
|
|
95
|
+
strong for a given `p`. Trace preservation is unchanged; channel-equivalence and sampler
|
|
96
|
+
regression tests added. See [CHANGELOG.md](CHANGELOG.md).
|
|
97
|
+
|
|
89
98
|
## What's New in v0.9.0
|
|
90
99
|
|
|
91
100
|
Quantum **chemistry, many-body physics & advanced simulation** — every routine verified
|
|
@@ -490,5 +499,5 @@ If you use quantum-debugger in your research, please cite:
|
|
|
490
499
|
|
|
491
500
|
---
|
|
492
501
|
|
|
493
|
-
**Version:** 0.9.
|
|
502
|
+
**Version:** 0.9.1 (latest on PyPI) · 0.9.0, 0.8.0 (previous)
|
|
494
503
|
**Last Updated:** August 2026
|
|
@@ -11,6 +11,15 @@
|
|
|
11
11
|
|
|
12
12
|
A powerful Python library for quantum circuit debugging, state inspection, performance analysis, and quantum machine learning. From basic circuits to QML with one-line AutoML.
|
|
13
13
|
|
|
14
|
+
## What's New in v0.9.1
|
|
15
|
+
|
|
16
|
+
Correctness patch: **`DepolarizingNoise.get_kraus_operators()`** now implements the same
|
|
17
|
+
channel as `apply()` and the class docstring — the Pauli-error convention
|
|
18
|
+
`ρ → (1−p)ρ + (p/3)(XρX + YρY + ZρZ)` (`K₀ = √(1−p)·I`, `K₁₋₃ = √(p/3)·{X, Y, Z}`). The old
|
|
19
|
+
`√(p/4)` weighting made `StochasticNoiseSampler`'s Monte-Carlo depolarizing noise `4/3×` too
|
|
20
|
+
strong for a given `p`. Trace preservation is unchanged; channel-equivalence and sampler
|
|
21
|
+
regression tests added. See [CHANGELOG.md](CHANGELOG.md).
|
|
22
|
+
|
|
14
23
|
## What's New in v0.9.0
|
|
15
24
|
|
|
16
25
|
Quantum **chemistry, many-body physics & advanced simulation** — every routine verified
|
|
@@ -415,5 +424,5 @@ If you use quantum-debugger in your research, please cite:
|
|
|
415
424
|
|
|
416
425
|
---
|
|
417
426
|
|
|
418
|
-
**Version:** 0.9.
|
|
427
|
+
**Version:** 0.9.1 (latest on PyPI) · 0.9.0, 0.8.0 (previous)
|
|
419
428
|
**Last Updated:** August 2026
|
|
@@ -114,16 +114,29 @@ class DepolarizingNoise(NoiseModel):
|
|
|
114
114
|
"""
|
|
115
115
|
Get Kraus operators for stochastic sampling
|
|
116
116
|
|
|
117
|
+
These describe the same channel as apply(), which implements the
|
|
118
|
+
Pauli-error convention this class documents:
|
|
119
|
+
|
|
120
|
+
rho -> (1 - p) rho + (p/3) (X rho X + Y rho Y + Z rho Z)
|
|
121
|
+
|
|
122
|
+
so K0 = sqrt(1 - p) I and K1..K3 = sqrt(p/3) {X, Y, Z}.
|
|
123
|
+
|
|
124
|
+
The previous sqrt(p/4) form implemented a different convention,
|
|
125
|
+
rho -> (1 - p) rho + p I/2, which coincides with the above only at
|
|
126
|
+
4p/3. StochasticNoiseSampler consumes this method, so the mismatch
|
|
127
|
+
made sampled noise 4/3 stronger than apply() produced for the same p.
|
|
128
|
+
|
|
117
129
|
Returns:
|
|
118
130
|
List of Kraus operators [K0, K1, K2, K3] for depolarizing channel
|
|
119
131
|
"""
|
|
120
132
|
p = self.probability
|
|
121
133
|
|
|
122
|
-
#
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
134
|
+
# K0 = √(1-p)I, K1 = √(p/3)X, K2 = √(p/3)Y, K3 = √(p/3)Z
|
|
135
|
+
# Completeness: (1-p)I + (p/3)(X² + Y² + Z²) = (1-p)I + pI = I
|
|
136
|
+
K0 = np.sqrt(1 - p) * np.eye(2, dtype=complex)
|
|
137
|
+
K1 = np.sqrt(p / 3) * np.array([[0, 1], [1, 0]], dtype=complex) # X
|
|
138
|
+
K2 = np.sqrt(p / 3) * np.array([[0, -1j], [1j, 0]], dtype=complex) # Y
|
|
139
|
+
K3 = np.sqrt(p / 3) * np.array([[1, 0], [0, -1]], dtype=complex) # Z
|
|
127
140
|
|
|
128
141
|
return [K0, K1, K2, K3]
|
|
129
142
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quantum-debugger
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.1
|
|
4
4
|
Summary: A quantum simulation and debugging toolkit: state-vector, Clifford/stabilizer, and density-matrix (open-systems) engines, with a broad algorithm library, error correction under noise, 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
|
|
@@ -86,6 +86,15 @@ Dynamic: summary
|
|
|
86
86
|
|
|
87
87
|
A powerful Python library for quantum circuit debugging, state inspection, performance analysis, and quantum machine learning. From basic circuits to QML with one-line AutoML.
|
|
88
88
|
|
|
89
|
+
## What's New in v0.9.1
|
|
90
|
+
|
|
91
|
+
Correctness patch: **`DepolarizingNoise.get_kraus_operators()`** now implements the same
|
|
92
|
+
channel as `apply()` and the class docstring — the Pauli-error convention
|
|
93
|
+
`ρ → (1−p)ρ + (p/3)(XρX + YρY + ZρZ)` (`K₀ = √(1−p)·I`, `K₁₋₃ = √(p/3)·{X, Y, Z}`). The old
|
|
94
|
+
`√(p/4)` weighting made `StochasticNoiseSampler`'s Monte-Carlo depolarizing noise `4/3×` too
|
|
95
|
+
strong for a given `p`. Trace preservation is unchanged; channel-equivalence and sampler
|
|
96
|
+
regression tests added. See [CHANGELOG.md](CHANGELOG.md).
|
|
97
|
+
|
|
89
98
|
## What's New in v0.9.0
|
|
90
99
|
|
|
91
100
|
Quantum **chemistry, many-body physics & advanced simulation** — every routine verified
|
|
@@ -490,5 +499,5 @@ If you use quantum-debugger in your research, please cite:
|
|
|
490
499
|
|
|
491
500
|
---
|
|
492
501
|
|
|
493
|
-
**Version:** 0.9.
|
|
502
|
+
**Version:** 0.9.1 (latest on PyPI) · 0.9.0, 0.8.0 (previous)
|
|
494
503
|
**Last Updated:** August 2026
|
|
@@ -124,3 +124,91 @@ def test_depolarizing_noise_bell_state():
|
|
|
124
124
|
# Trace should be 1
|
|
125
125
|
trace = np.trace(rho).real
|
|
126
126
|
assert np.isclose(trace, 1.0)
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
def _depolarizing_via_apply(p, psi):
|
|
130
|
+
"""Channel output from DepolarizingNoise.apply()."""
|
|
131
|
+
state = QuantumState(1, state_vector=psi.copy(), use_density_matrix=True)
|
|
132
|
+
DepolarizingNoise(p).apply(state, [0])
|
|
133
|
+
return np.asarray(state.density_matrix)
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
def _depolarizing_via_kraus(p, psi):
|
|
137
|
+
"""Channel output from DepolarizingNoise.get_kraus_operators()."""
|
|
138
|
+
rho = np.outer(psi, psi.conj())
|
|
139
|
+
return sum(K @ rho @ K.conj().T for K in DepolarizingNoise(p).get_kraus_operators())
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
def _probe_states():
|
|
143
|
+
rng = np.random.default_rng(0)
|
|
144
|
+
states = [
|
|
145
|
+
np.array([1, 0], complex),
|
|
146
|
+
np.array([0, 1], complex),
|
|
147
|
+
np.array([1, 1], complex) / np.sqrt(2),
|
|
148
|
+
np.array([1, -1], complex) / np.sqrt(2),
|
|
149
|
+
np.array([1, 1j], complex) / np.sqrt(2),
|
|
150
|
+
np.array([1, -1j], complex) / np.sqrt(2),
|
|
151
|
+
]
|
|
152
|
+
for _ in range(3):
|
|
153
|
+
v = rng.normal(size=2) + 1j * rng.normal(size=2)
|
|
154
|
+
states.append(v / np.linalg.norm(v))
|
|
155
|
+
return states
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
@pytest.mark.parametrize("p", [0.0, 0.05, 0.2, 1 / 3, 0.5, 0.9, 1.0])
|
|
159
|
+
def test_depolarizing_kraus_matches_apply(p):
|
|
160
|
+
"""get_kraus_operators() must describe the same channel as apply().
|
|
161
|
+
|
|
162
|
+
Both are public API. They previously used different conventions --
|
|
163
|
+
apply() the Pauli-error form and the Kraus operators the uniform form --
|
|
164
|
+
which agree only under p -> 4p/3.
|
|
165
|
+
"""
|
|
166
|
+
for psi in _probe_states():
|
|
167
|
+
assert np.allclose(
|
|
168
|
+
_depolarizing_via_apply(p, psi), _depolarizing_via_kraus(p, psi), atol=1e-12
|
|
169
|
+
)
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
@pytest.mark.parametrize("p", [0.0, 0.05, 1 / 3, 0.6, 1.0])
|
|
173
|
+
def test_depolarizing_kraus_is_trace_preserving(p):
|
|
174
|
+
"""Completeness: (1-p)I + (p/3)(X^2 + Y^2 + Z^2) = I"""
|
|
175
|
+
kraus = DepolarizingNoise(p).get_kraus_operators()
|
|
176
|
+
total = sum(K.conj().T @ K for K in kraus)
|
|
177
|
+
assert np.allclose(total, np.eye(2), atol=1e-12)
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
def test_depolarizing_kraus_edge_cases():
|
|
181
|
+
"""p=0 leaves the state alone; p=1 is the full Pauli twirl."""
|
|
182
|
+
psi = np.array([1, 0], complex)
|
|
183
|
+
rho = np.outer(psi, psi.conj())
|
|
184
|
+
assert np.allclose(_depolarizing_via_kraus(0.0, psi), rho, atol=1e-12)
|
|
185
|
+
|
|
186
|
+
paulis = [
|
|
187
|
+
np.array([[0, 1], [1, 0]], complex),
|
|
188
|
+
np.array([[0, -1j], [1j, 0]], complex),
|
|
189
|
+
np.array([[1, 0], [0, -1]], complex),
|
|
190
|
+
]
|
|
191
|
+
twirl = sum(P @ rho @ P.conj().T for P in paulis) / 3
|
|
192
|
+
assert np.allclose(_depolarizing_via_kraus(1.0, psi), twirl, atol=1e-12)
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
def test_stochastic_sampler_matches_apply():
|
|
196
|
+
"""Sampling Kraus operators must converge to the deterministic channel."""
|
|
197
|
+
from quantum_debugger.core.quantum_state import QuantumState as PureState
|
|
198
|
+
from quantum_debugger.noise.stochastic_sampler import StochasticNoiseSampler
|
|
199
|
+
|
|
200
|
+
np.random.seed(0)
|
|
201
|
+
p, shots = 0.3, 20000
|
|
202
|
+
psi = np.array([1, 0], complex)
|
|
203
|
+
target = _depolarizing_via_apply(p, psi)
|
|
204
|
+
|
|
205
|
+
sampler = StochasticNoiseSampler(DepolarizingNoise(p))
|
|
206
|
+
accumulated = np.zeros((2, 2), complex)
|
|
207
|
+
for _ in range(shots):
|
|
208
|
+
state = PureState(1, state_vector=psi.copy())
|
|
209
|
+
sampler.apply_stochastic_noise(state, None)
|
|
210
|
+
v = np.asarray(state.state_vector).reshape(-1)
|
|
211
|
+
accumulated += np.outer(v, v.conj())
|
|
212
|
+
|
|
213
|
+
# 3 sigma over 20k shots is about 0.01
|
|
214
|
+
assert np.abs(target - accumulated / shots).max() < 0.015
|
|
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
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/channel_capacity.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/classical_shadows.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/contextuality.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/decoherence_free.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/decomposition.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/discrimination.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/distillation.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/entanglement_growth.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/error_correction.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/error_detection.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/geometric_phase.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.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.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/imaginary_time.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/jordan_wigner.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/kitaev_chain.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/level_statistics.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/loss_robustness.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/magic_measures.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/magic_state.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/multicontrol.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/nonlocality.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/perfect_code.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/phase_estimation.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/qec_threshold.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/quantum_counting.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/quantum_walk.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/spectroscopy.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/spin_squeezing.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/state_preparation.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/steane_code.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/uncertainty.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/algorithms/weak_values.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.9.0 → quantum_debugger-0.9.1}/quantum_debugger/backends/numba_backend.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/backends/numpy_backend.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/backends/sparse_backend.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/benchmarks/qml_benchmarks.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.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
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/integrations/cirq_adapter.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/integrations/cirq_bridge.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/integrations/pennylane_bridge.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/integrations/qiskit_adapter.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/integrations/qiskit_bridge.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/mitigation/core/__init__.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/mitigation/core/extrapolator.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/mitigation/core/folder.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/noise/hardware_profiles.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/noise/stochastic_sampler.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/optimization/circuit_compiler.py
RENAMED
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.1}/quantum_debugger/optimization/gate_reduction.py
RENAMED
|
File without changes
|
|
File without changes
|
{quantum_debugger-0.9.0 → quantum_debugger-0.9.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
|