.gitignore
CHANGELOG.md
CONTRIBUTING.md
LICENSE
MANIFEST.in
README.md
VERSION.txt
pyproject.toml
requirements.txt
.github/SECURITY.md
.github/workflows/deploy_docs.yml
.github/workflows/pr_review.yml
.github/workflows/publish_to_pypi.yml
docs/Makefile
docs/conf.py
docs/index.rst
docs/make.bat
docs/mocks.py
docs/api/modules.rst
docs/api/topqad_sdk.compiler.rst
docs/api/topqad_sdk.library.rst
docs/api/topqad_sdk.models.rst
docs/api/topqad_sdk.noiseprofiler.libnoise.rst
docs/api/topqad_sdk.noiseprofiler.libprotocols.models.rst
docs/api/topqad_sdk.noiseprofiler.libprotocols.rst
docs/api/topqad_sdk.noiseprofiler.qre_noiseprofile.rst
docs/api/topqad_sdk.noiseprofiler.rst
docs/api/topqad_sdk.quantum_resource_estimator.rst
docs/api/topqad_sdk.rst
notebooks/Circuit_Library_Demo.ipynb
notebooks/Noise_Profiler_Demo.ipynb
notebooks/Noise_Profiler_lattice_surgery.ipynb
notebooks/Noise_Profiler_magic_state_preparation_hook_injection.ipynb
notebooks/Noise_Profiler_magic_state_preparation_rep_code.ipynb
notebooks/Noise_Profiler_stability.ipynb
notebooks/QRE_Demo.ipynb
notebooks/QRE_Lite_Demo.ipynb
notebooks/custom_qre_1_create_a_noise_profile.ipynb
notebooks/custom_qre_2_generate_resource_estimates.ipynb
notebooks/demo_circuit.qasm
notebooks/noise_profile_emulated.json
src/__init__.py
src/topqad_sdk/__init__.py
src/topqad_sdk/_exceptions.py
src/topqad_sdk/_utils.py
src/topqad_sdk.egg-info/PKG-INFO
src/topqad_sdk.egg-info/SOURCES.txt
src/topqad_sdk.egg-info/dependency_links.txt
src/topqad_sdk.egg-info/requires.txt
src/topqad_sdk.egg-info/top_level.txt
src/topqad_sdk/_auth/__init__.py
src/topqad_sdk/_auth/_auth_manager.py
src/topqad_sdk/_http_request/__init__.py
src/topqad_sdk/_http_request/_http_client.py
src/topqad_sdk/clients/__init__.py
src/topqad_sdk/clients/_topqad_client.py
src/topqad_sdk/clients/compiler_client.py
src/topqad_sdk/clients/noise_profiler_client.py
src/topqad_sdk/clients/qre_client.py
src/topqad_sdk/compiler/__init__.py
src/topqad_sdk/compiler/compiler.py
src/topqad_sdk/library/__init__.py
src/topqad_sdk/library/circuit_library.py
src/topqad_sdk/library/hardware_parameter_library.py
src/topqad_sdk/models/.gitkeep
src/topqad_sdk/models/__init__.py
src/topqad_sdk/models/common_types.py
src/topqad_sdk/models/enums.py
src/topqad_sdk/models/assembler/__init__.py
src/topqad_sdk/models/assembler/assembler_reports.py
src/topqad_sdk/models/assembler/responses.py
src/topqad_sdk/models/circuit_library/__init__.py
src/topqad_sdk/models/circuit_library/circuit.py
src/topqad_sdk/models/circuit_library/response.py
src/topqad_sdk/models/compiler/__init__.py
src/topqad_sdk/models/compiler/requests.py
src/topqad_sdk/models/compiler/responses.py
src/topqad_sdk/models/decomposer/__init__.py
src/topqad_sdk/models/decomposer/responses.py
src/topqad_sdk/models/noise_profiler/__init__.py
src/topqad_sdk/models/noise_profiler/requests.py
src/topqad_sdk/models/noise_profiler/responses.py
src/topqad_sdk/models/optimizer/__init__.py
src/topqad_sdk/models/optimizer/responses.py
src/topqad_sdk/models/pipeline/__init__.py
src/topqad_sdk/models/pipeline/requests.py
src/topqad_sdk/models/pipeline/responses.py
src/topqad_sdk/models/scheduler/__init__.py
src/topqad_sdk/models/scheduler/responses.py
src/topqad_sdk/noiseprofiler/__init__.py
src/topqad_sdk/noiseprofiler/fit.py
src/topqad_sdk/noiseprofiler/models.py
src/topqad_sdk/noiseprofiler/qre_noiseprofile.py
src/topqad_sdk/noiseprofiler/simtable.py
src/topqad_sdk/noiseprofiler/data/__init__.py
src/topqad_sdk/noiseprofiler/data/qre_presets/__init__.py
src/topqad_sdk/noiseprofiler/data/qre_presets/physical_depolarizing_baseline.json
src/topqad_sdk/noiseprofiler/data/qre_presets/physical_depolarizing_baseline_logical_time_matched.json
src/topqad_sdk/noiseprofiler/data/qre_presets/physical_depolarizing_baseline_throughput_matched.json
src/topqad_sdk/noiseprofiler/data/qre_presets/physical_depolarizing_desired.json
src/topqad_sdk/noiseprofiler/data/qre_presets/physical_depolarizing_desired_logical_time_matched.json
src/topqad_sdk/noiseprofiler/data/qre_presets/physical_depolarizing_desired_throughput_matched.json
src/topqad_sdk/noiseprofiler/data/qre_presets/physical_depolarizing_target.json
src/topqad_sdk/noiseprofiler/data/qre_presets/physical_depolarizing_target_logical_time_matched.json
src/topqad_sdk/noiseprofiler/data/qre_presets/physical_depolarizing_target_throughput_matched.json
src/topqad_sdk/noiseprofiler/libnoise/__init__.py
src/topqad_sdk/noiseprofiler/libnoise/models.py
src/topqad_sdk/noiseprofiler/libnoise/noisemodel.py
src/topqad_sdk/noiseprofiler/libnoise/physical_depolarizing.py
src/topqad_sdk/noiseprofiler/libnoise/uniform_depolarizing.py
src/topqad_sdk/noiseprofiler/libprotocols/__init__.py
src/topqad_sdk/noiseprofiler/libprotocols/lattice_surgery.py
src/topqad_sdk/noiseprofiler/libprotocols/magic_state_preparation_hook_injection.py
src/topqad_sdk/noiseprofiler/libprotocols/magic_state_preparation_rep_code.py
src/topqad_sdk/noiseprofiler/libprotocols/memory.py
src/topqad_sdk/noiseprofiler/libprotocols/models.py
src/topqad_sdk/noiseprofiler/libprotocols/protocol_handler.py
src/topqad_sdk/noiseprofiler/libprotocols/stability.py
src/topqad_sdk/quantum_resource_estimator/__init__.py
src/topqad_sdk/quantum_resource_estimator/qre.py
src/topqad_sdk/quantum_resource_estimator/qre_output.py
src/topqad_sdk/quantum_resource_estimator/report.py
tests/.gitkeep
tests/__init__.py
tests/test_auth.py
tests/test_helpers.py
tests/test_utils.py
tests/clients/__init__.py
tests/clients/test_auth_manager.py
tests/clients/test_compiler_client.py
tests/clients/test_noise_profiler_client.py
tests/clients/test_qre_client.py
tests/clients/test_topqad_client.py
tests/compiler/test_compiler.py
tests/data/assembler_report.json
tests/data/test_circuit.qasm
tests/data/test_ftqc_request.json
tests/data/test_ftqc_request_invalid.json
tests/data/test_protocol_params.json
tests/http_requests/__init__.py
tests/http_requests/test_http_client.py
tests/library/__init__.py
tests/library/test_circuit_library.py
tests/library/test_hardware_parameters.py
tests/models/__init__.py
tests/models/test_noise_profiler_models.py
tests/models/test_qre_models.py
tests/noiseprofiler/test_protocol_handler.py
tests/quantum_resource_estimator/test_qre.py
tests/quantum_resource_estimator/test_qre_output.py