AUTHORS.md
CHANGELOG.md
LICENSE
MANIFEST.in
README.md
requirements.txt
setup.py
examples/bell_state_debug.py
examples/benchmarks.py
examples/grover_profiling.py
examples/interactive_demo.py
examples/qaoa_maxcut_example.py
examples/qiskit_integration_demo.py
examples/qml_basic_example.py
examples/vqe_h2_example.py
quantum_debugger/__init__.py
quantum_debugger.egg-info/PKG-INFO
quantum_debugger.egg-info/SOURCES.txt
quantum_debugger.egg-info/dependency_links.txt
quantum_debugger.egg-info/requires.txt
quantum_debugger.egg-info/top_level.txt
quantum_debugger/backends/__init__.py
quantum_debugger/backends/aws_backend.py
quantum_debugger/backends/base.py
quantum_debugger/backends/base_backend.py
quantum_debugger/backends/cupy_backend.py
quantum_debugger/backends/gpu_backend.py
quantum_debugger/backends/ibm_backend.py
quantum_debugger/backends/numba_backend.py
quantum_debugger/backends/numpy_backend.py
quantum_debugger/backends/sparse_backend.py
quantum_debugger/benchmarks/__init__.py
quantum_debugger/benchmarks/optimization_benchmarks.py
quantum_debugger/benchmarks/qml_benchmarks.py
quantum_debugger/benchmarks/report_generator.py
quantum_debugger/benchmarks/scalability_benchmarks.py
quantum_debugger/core/__init__.py
quantum_debugger/core/circuit.py
quantum_debugger/core/gates.py
quantum_debugger/core/quantum_state.py
quantum_debugger/debugger/__init__.py
quantum_debugger/debugger/breakpoints.py
quantum_debugger/debugger/debugger.py
quantum_debugger/debugger/inspector.py
quantum_debugger/gpu/__init__.py
quantum_debugger/gpu/memory.py
quantum_debugger/gpu/mixed_precision.py
quantum_debugger/gpu/multi_gpu.py
quantum_debugger/integrations/__init__.py
quantum_debugger/integrations/cirq_adapter.py
quantum_debugger/integrations/cirq_bridge.py
quantum_debugger/integrations/pennylane_bridge.py
quantum_debugger/integrations/qiskit_adapter.py
quantum_debugger/integrations/qiskit_bridge.py
quantum_debugger/mitigation/__init__.py
quantum_debugger/mitigation/zne.py
quantum_debugger/mitigation/core/__init__.py
quantum_debugger/mitigation/core/extrapolator.py
quantum_debugger/mitigation/core/folder.py
quantum_debugger/noise/__init__.py
quantum_debugger/noise/composite_noise.py
quantum_debugger/noise/hardware_profiles.py
quantum_debugger/noise/noise_helpers.py
quantum_debugger/noise/noise_models.py
quantum_debugger/noise/stochastic_sampler.py
quantum_debugger/optimization/__init__.py
quantum_debugger/optimization/circuit_compiler.py
quantum_debugger/optimization/gate_reduction.py
quantum_debugger/optimization/optimization_passes.py
quantum_debugger/optimization/transpiler.py
quantum_debugger/parallel/__init__.py
quantum_debugger/parallel/executor.py
quantum_debugger/profiler/__init__.py
quantum_debugger/profiler/metrics.py
quantum_debugger/profiler/profiler.py
quantum_debugger/qml/__init__.py
quantum_debugger/qml/algorithms/__init__.py
quantum_debugger/qml/algorithms/qaoa.py
quantum_debugger/qml/algorithms/qgan.py
quantum_debugger/qml/algorithms/qrl.py
quantum_debugger/qml/algorithms/vqe.py
quantum_debugger/qml/ansatz/__init__.py
quantum_debugger/qml/ansatz/excitation_preserving.py
quantum_debugger/qml/ansatz/real_amplitudes.py
quantum_debugger/qml/ansatz/strongly_entangling.py
quantum_debugger/qml/ansatz/two_local.py
quantum_debugger/qml/automl/__init__.py
quantum_debugger/qml/automl/ansatz_selector.py
quantum_debugger/qml/automl/architecture_search.py
quantum_debugger/qml/automl/auto_qnn.py
quantum_debugger/qml/automl/hyperparameter_tuner.py
quantum_debugger/qml/data/__init__.py
quantum_debugger/qml/data/dataset.py
quantum_debugger/qml/data/feature_maps.py
quantum_debugger/qml/error_mitigation/__init__.py
quantum_debugger/qml/error_mitigation/zne.py
quantum_debugger/qml/gates/__init__.py
quantum_debugger/qml/gates/parameterized.py
quantum_debugger/qml/hamiltonians/__init__.py
quantum_debugger/qml/hamiltonians/molecular.py
quantum_debugger/qml/hybrid/__init__.py
quantum_debugger/qml/hybrid/layers.py
quantum_debugger/qml/hybrid/pytorch_integration.py
quantum_debugger/qml/hybrid/tensorflow_integration.py
quantum_debugger/qml/kernels/__init__.py
quantum_debugger/qml/kernels/alignment.py
quantum_debugger/qml/kernels/qsvm.py
quantum_debugger/qml/kernels/quantum_kernel.py
quantum_debugger/qml/mitigation/__init__.py
quantum_debugger/qml/mitigation/cdr.py
quantum_debugger/qml/mitigation/error_characterization.py
quantum_debugger/qml/mitigation/noise_models.py
quantum_debugger/qml/mitigation/pec.py
quantum_debugger/qml/optimizers/__init__.py
quantum_debugger/qml/optimizers/advanced.py
quantum_debugger/qml/qnn/__init__.py
quantum_debugger/qml/qnn/base.py
quantum_debugger/qml/qnn/encoding.py
quantum_debugger/qml/qnn/losses.py
quantum_debugger/qml/qnn/network.py
quantum_debugger/qml/qnn/variational.py
quantum_debugger/qml/training/__init__.py
quantum_debugger/qml/transfer/__init__.py
quantum_debugger/qml/transfer/fine_tuning.py
quantum_debugger/qml/transfer/model_zoo.py
quantum_debugger/qml/transfer/pretrained.py
quantum_debugger/qml/transfer/serialization.py
quantum_debugger/qml/utils/__init__.py
quantum_debugger/qml/utils/gradients.py
quantum_debugger/visualization/__init__.py
quantum_debugger/visualization/bloch_sphere.py
quantum_debugger/visualization/state_viz.py
tests/__init__.py
tests/conftest.py
tests/test_backends.py
tests/test_benchmarks.py
tests/test_integrations.py
tests/test_optimization.py
tests/cirq/__init__.py
tests/cirq/test_cirq_advanced.py
tests/cirq/test_cirq_edge_cases.py
tests/cirq/test_cirq_integration.py
tests/integration/__init__.py
tests/integration/test_integration.py
tests/integration/test_qiskit_integration.py
tests/qml/__init__.py
tests/qml/test_advanced_algorithms.py
tests/qml/test_advanced_optimizers.py
tests/qml/test_ansatz_library.py
tests/qml/test_automl.py
tests/qml/test_dataset.py
tests/qml/test_edge_cases.py
tests/qml/test_hamiltonians.py
tests/qml/test_hybrid.py
tests/qml/test_kernels.py
tests/qml/test_mitigation.py
tests/qml/test_qaoa.py
tests/qml/test_qml_parameterized_gates.py
tests/qml/test_qnn.py
tests/qml/test_transfer.py
tests/qml/test_transfer_extended.py
tests/qml/test_vqe.py
tests/qml/test_zne.py
tests/unit/CONVERSION_TRACKER.py
tests/unit/__init__.py
tests/unit/test_advanced.py
tests/unit/test_backend_comprehensive.py
tests/unit/test_backend_integration.py
tests/unit/test_backends.py
tests/unit/test_backends_advanced.py
tests/unit/test_backends_comprehensive.py
tests/unit/test_backends_fast.py
tests/unit/test_circuit_noise.py
tests/unit/test_circuit_noise_advanced.py
tests/unit/test_circuit_noise_unique.py
tests/unit/test_compatibility.py
tests/unit/test_comprehensive.py
tests/unit/test_distribution.py
tests/unit/test_docstrings.py
tests/unit/test_error_handling.py
tests/unit/test_extreme.py
tests/unit/test_gpu_quick.py
tests/unit/test_hardware_profiles_extended.py
tests/unit/test_hardware_profiles_phase3.py
tests/unit/test_mitigation_comprehensive.py
tests/unit/test_mitigation_final.py
tests/unit/test_mitigation_observables.py
tests/unit/test_mitigation_zne.py
tests/unit/test_noise.py
tests/unit/test_noise_advanced.py
tests/unit/test_noise_extreme.py
tests/unit/test_noise_final.py
tests/unit/test_noise_performance.py
tests/unit/test_noise_quantum_info.py
tests/unit/test_noise_ultimate.py
tests/unit/test_parallel.py
tests/unit/test_performance.py
tests/unit/test_production.py
tests/unit/test_qiskit_complex.py
tests/unit/test_qiskit_extreme.py
tests/unit/test_qiskit_ultra.py
tests/unit/test_qml_advanced.py
tests/unit/test_qml_comprehensive.py
tests/unit/test_qml_memory.py
tests/unit/test_qml_threading.py
tests/unit/test_qml_tricky.py
tests/unit/test_quickstart.py
tests/unit/test_validation.py