qcs-sdk-python-grpc-web 0.19.3__tar.gz → 0.20.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.
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/Cargo.lock +59 -29
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/Cargo.toml +7 -7
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/PKG-INFO +18 -1
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/CHANGELOG.md +38 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/Cargo.toml +2 -2
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/compiler/quilc.rs +4 -7
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/executable.rs +7 -7
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qpu/api.rs +72 -16
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qvm/execution.rs +3 -3
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/CHANGELOG.md +38 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/Cargo.toml +6 -1
- qcs_sdk_python_grpc_web-0.20.1/crates/python/Makefile.toml +110 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/_tracing_subscriber/layers/__init__.py +0 -1
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1/crates/python}/qcs_sdk/_tracing_subscriber/layers/__init__.pyi +8 -8
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1/crates/python}/qcs_sdk/_tracing_subscriber/layers/file/__init__.py +0 -2
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1/crates/python}/qcs_sdk/_tracing_subscriber/layers/file/__init__.pyi +0 -1
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1/crates/python}/qcs_sdk/_tracing_subscriber/layers/otel_otlp/__init__.py +0 -1
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1/crates/python}/qcs_sdk/_tracing_subscriber/layers/otel_otlp/__init__.pyi +2 -4
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/_tracing_subscriber/layers/otel_otlp_file/__init__.py +0 -1
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/_tracing_subscriber/layers/otel_otlp_file/__init__.pyi +0 -1
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/_tracing_subscriber/subscriber/__init__.py +0 -1
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/_tracing_subscriber/subscriber/__init__.pyi +0 -1
- qcs_sdk_python_grpc_web-0.20.1/crates/python/qcs_sdk/client.pyi +155 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1/crates/python}/qcs_sdk/qpu/api.pyi +11 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/qpu/isa.pyi +19 -6
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1/crates/python}/qcs_sdk/qpu/translation.pyi +4 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/client.rs +30 -83
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/compiler/quilc.rs +2 -3
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/executable.rs +1 -2
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/lib.rs +2 -3
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/qpu/api.rs +24 -5
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/qpu/isa.rs +9 -7
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/qpu/mod.rs +3 -2
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/qpu/translation.rs +17 -5
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/qvm/api.rs +3 -2
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/qvm/mod.rs +3 -2
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/compiler/__snapshots__/test_quilc.ambr +1 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/test_client.py +9 -13
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/pyproject.toml +5 -29
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/_tracing_subscriber/layers/__init__.py +0 -1
- {qcs_sdk_python_grpc_web-0.19.3/crates/python → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/_tracing_subscriber/layers/__init__.pyi +8 -8
- {qcs_sdk_python_grpc_web-0.19.3/crates/python → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/_tracing_subscriber/layers/file/__init__.py +0 -2
- {qcs_sdk_python_grpc_web-0.19.3/crates/python → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/_tracing_subscriber/layers/file/__init__.pyi +0 -1
- {qcs_sdk_python_grpc_web-0.19.3/crates/python → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/_tracing_subscriber/layers/otel_otlp/__init__.py +0 -1
- {qcs_sdk_python_grpc_web-0.19.3/crates/python → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/_tracing_subscriber/layers/otel_otlp/__init__.pyi +2 -4
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/_tracing_subscriber/layers/otel_otlp_file/__init__.py +0 -1
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/_tracing_subscriber/layers/otel_otlp_file/__init__.pyi +0 -1
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/_tracing_subscriber/subscriber/__init__.py +0 -1
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/_tracing_subscriber/subscriber/__init__.pyi +0 -1
- qcs_sdk_python_grpc_web-0.20.1/qcs_sdk/client.pyi +155 -0
- {qcs_sdk_python_grpc_web-0.19.3/crates/python → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/qpu/api.pyi +11 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/qpu/isa.pyi +19 -6
- {qcs_sdk_python_grpc_web-0.19.3/crates/python → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/qpu/translation.pyi +4 -0
- qcs_sdk_python_grpc_web-0.19.3/crates/python/Makefile.toml +0 -79
- qcs_sdk_python_grpc_web-0.19.3/crates/python/qcs_sdk/client.pyi +0 -116
- qcs_sdk_python_grpc_web-0.19.3/crates/python/src/py_sync.rs +0 -133
- qcs_sdk_python_grpc_web-0.19.3/qcs_sdk/client.pyi +0 -116
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/README.md +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/Makefile.toml +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/README.md +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/build.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/examples/delayed_job_retrieval.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/examples/execute.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/examples/libquil.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/examples/local.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/examples/parametric_compilation.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/examples/quil_t.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/bin/diagnostics.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/client.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/compiler/isa/edge.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/compiler/isa/mod.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/compiler/isa/operator.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/compiler/isa/qubit.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/compiler/libquil.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/compiler/mod.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/compiler/rpcq.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/diagnostics.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/execution_data.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/lib.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qpu/execution.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qpu/mod.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qpu/result_data.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_allocates_for_multiple_expressions-2.snap +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_allocates_for_multiple_expressions.snap +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_frequency_expressions-2.snap +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_frequency_expressions.snap +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_phases.snap +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_set_scale_units.snap +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_substitutes_and_reuses_gate_expressions.snap +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_substitutes_gate_parameters.snap +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qpu/translation.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qvm/http.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qvm/libquil.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qvm/mod.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/qvm/snapshots/qcs__qvm__test__apply_valid_parameters_to_program.snap +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/register_data.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/tests/aspen_9_isa.json +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/tests/basic_qvm.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/tests/bell_state_response_data.hex +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/tests/compiler-isa-Aspen-8.json +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/tests/mocked_qpu.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/tests/parametric_compilation.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/tests/qcs-isa-Aspen-8.json +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/tests/qvm_api.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/tests/qvm_isa.json +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/tests/secrets.toml +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/tests/settings.toml +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/.flake8 +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/.stubtest-allowlist +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/README.md +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/build.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/poetry.lock +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/_tracing_subscriber/.stubtest-allowlist +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/_tracing_subscriber/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/_tracing_subscriber/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/client.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/compiler/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/compiler/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/compiler/quilc.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/diagnostics.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/py.typed +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/qpu/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/qpu/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/qvm/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/qvm/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/qcs_sdk/qvm/api.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/scripts/patch_grpc_web.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/compiler/mod.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/execution_data.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/from_py.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/grpc/mod.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/grpc/models/controller.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/grpc/models/mod.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/qpu/result_data.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/src/register_data.rs +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/_fixtures/aspen-m-3.json +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/_fixtures/device-2q.json +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/_qcs_config/secrets.toml +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/_qcs_config/settings.toml +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/compiler/test_quilc.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/conftest.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/execution_data/test_execution_data.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/qpu/test_api.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/qpu/test_isa.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/qpu/test_qpu.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/qpu/test_translation.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/qvm/test_qvm.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/test_diagnostics.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/test_executable.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/test_logging.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/python/tests/test_tracing_subscriber.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/_tracing_subscriber/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/_tracing_subscriber/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/client.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/compiler/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/compiler/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/compiler/quilc.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/diagnostics.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/py.typed +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/qpu/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/qpu/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/qvm/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/qvm/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/qcs_sdk/qvm/api.pyi +0 -0
|
@@ -1561,18 +1561,18 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
|
1561
1561
|
|
|
1562
1562
|
[[package]]
|
|
1563
1563
|
name = "lexical"
|
|
1564
|
-
version = "
|
|
1564
|
+
version = "7.0.1"
|
|
1565
1565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
-
checksum = "
|
|
1566
|
+
checksum = "8ecd3381ac77c22d4e2607284ac71e44b21c21bd3785ee807d21976d54ee16f9"
|
|
1567
1567
|
dependencies = [
|
|
1568
1568
|
"lexical-core",
|
|
1569
1569
|
]
|
|
1570
1570
|
|
|
1571
1571
|
[[package]]
|
|
1572
1572
|
name = "lexical-core"
|
|
1573
|
-
version = "0.
|
|
1573
|
+
version = "1.0.1"
|
|
1574
1574
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1575
|
-
checksum = "
|
|
1575
|
+
checksum = "0885f6cdfe75c96e45bbf1c4e49511f128201391ce3b56e60e29f5a1fadbc1c1"
|
|
1576
1576
|
dependencies = [
|
|
1577
1577
|
"lexical-parse-float",
|
|
1578
1578
|
"lexical-parse-integer",
|
|
@@ -1583,9 +1583,9 @@ dependencies = [
|
|
|
1583
1583
|
|
|
1584
1584
|
[[package]]
|
|
1585
1585
|
name = "lexical-parse-float"
|
|
1586
|
-
version = "0.
|
|
1586
|
+
version = "1.0.1"
|
|
1587
1587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
-
checksum = "
|
|
1588
|
+
checksum = "924f7ec090cd4f60bd873f160b0fb69a0c80bb3a98f2e778a1893ae0e5c4b0b9"
|
|
1589
1589
|
dependencies = [
|
|
1590
1590
|
"lexical-parse-integer",
|
|
1591
1591
|
"lexical-util",
|
|
@@ -1594,9 +1594,9 @@ dependencies = [
|
|
|
1594
1594
|
|
|
1595
1595
|
[[package]]
|
|
1596
1596
|
name = "lexical-parse-integer"
|
|
1597
|
-
version = "0.
|
|
1597
|
+
version = "1.0.1"
|
|
1598
1598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
-
checksum = "
|
|
1599
|
+
checksum = "8feab1da84a2ab0ddbbad2fb1830b755f71a9a8d996c7a1f2a553faf72aa3686"
|
|
1600
1600
|
dependencies = [
|
|
1601
1601
|
"lexical-util",
|
|
1602
1602
|
"static_assertions",
|
|
@@ -1604,18 +1604,18 @@ dependencies = [
|
|
|
1604
1604
|
|
|
1605
1605
|
[[package]]
|
|
1606
1606
|
name = "lexical-util"
|
|
1607
|
-
version = "0.
|
|
1607
|
+
version = "1.0.2"
|
|
1608
1608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
-
checksum = "
|
|
1609
|
+
checksum = "591ce1a12ecd3b26d4121ab360a6a4483a67f05a5372add6acbfd0b65c9285d9"
|
|
1610
1610
|
dependencies = [
|
|
1611
1611
|
"static_assertions",
|
|
1612
1612
|
]
|
|
1613
1613
|
|
|
1614
1614
|
[[package]]
|
|
1615
1615
|
name = "lexical-write-float"
|
|
1616
|
-
version = "0.
|
|
1616
|
+
version = "1.0.1"
|
|
1617
1617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1618
|
-
checksum = "
|
|
1618
|
+
checksum = "05b0f3f9ddada5942b54e97654d535df37c9340ad66c24b50360a90619779f41"
|
|
1619
1619
|
dependencies = [
|
|
1620
1620
|
"lexical-util",
|
|
1621
1621
|
"lexical-write-integer",
|
|
@@ -1624,9 +1624,9 @@ dependencies = [
|
|
|
1624
1624
|
|
|
1625
1625
|
[[package]]
|
|
1626
1626
|
name = "lexical-write-integer"
|
|
1627
|
-
version = "0.
|
|
1627
|
+
version = "1.0.1"
|
|
1628
1628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
-
checksum = "
|
|
1629
|
+
checksum = "48c6d47254ddb292771dce7697ae2be9619f8e369d01a9ccda15ef2ff50443fc"
|
|
1630
1630
|
dependencies = [
|
|
1631
1631
|
"lexical-util",
|
|
1632
1632
|
"static_assertions",
|
|
@@ -2520,7 +2520,7 @@ dependencies = [
|
|
|
2520
2520
|
"num-complex",
|
|
2521
2521
|
"parking_lot",
|
|
2522
2522
|
"portable-atomic",
|
|
2523
|
-
"pyo3-build-config",
|
|
2523
|
+
"pyo3-build-config 0.20.3",
|
|
2524
2524
|
"pyo3-ffi",
|
|
2525
2525
|
"pyo3-macros",
|
|
2526
2526
|
"unindent",
|
|
@@ -2549,6 +2549,16 @@ dependencies = [
|
|
|
2549
2549
|
"target-lexicon",
|
|
2550
2550
|
]
|
|
2551
2551
|
|
|
2552
|
+
[[package]]
|
|
2553
|
+
name = "pyo3-build-config"
|
|
2554
|
+
version = "0.22.1"
|
|
2555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2556
|
+
checksum = "7879eb018ac754bba32cb0eec7526391c02c14a093121857ed09fbf1d1057d41"
|
|
2557
|
+
dependencies = [
|
|
2558
|
+
"once_cell",
|
|
2559
|
+
"target-lexicon",
|
|
2560
|
+
]
|
|
2561
|
+
|
|
2552
2562
|
[[package]]
|
|
2553
2563
|
name = "pyo3-ffi"
|
|
2554
2564
|
version = "0.20.3"
|
|
@@ -2556,7 +2566,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2556
2566
|
checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
|
|
2557
2567
|
dependencies = [
|
|
2558
2568
|
"libc",
|
|
2559
|
-
"pyo3-build-config",
|
|
2569
|
+
"pyo3-build-config 0.20.3",
|
|
2560
2570
|
]
|
|
2561
2571
|
|
|
2562
2572
|
[[package]]
|
|
@@ -2590,7 +2600,7 @@ checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
|
|
|
2590
2600
|
dependencies = [
|
|
2591
2601
|
"heck 0.4.1",
|
|
2592
2602
|
"proc-macro2",
|
|
2593
|
-
"pyo3-build-config",
|
|
2603
|
+
"pyo3-build-config 0.20.3",
|
|
2594
2604
|
"quote",
|
|
2595
2605
|
"syn 2.0.66",
|
|
2596
2606
|
]
|
|
@@ -2643,7 +2653,7 @@ dependencies = [
|
|
|
2643
2653
|
|
|
2644
2654
|
[[package]]
|
|
2645
2655
|
name = "qcs"
|
|
2646
|
-
version = "0.
|
|
2656
|
+
version = "0.24.1"
|
|
2647
2657
|
dependencies = [
|
|
2648
2658
|
"assert2",
|
|
2649
2659
|
"async-trait",
|
|
@@ -2705,19 +2715,25 @@ dependencies = [
|
|
|
2705
2715
|
|
|
2706
2716
|
[[package]]
|
|
2707
2717
|
name = "qcs-api-client-common"
|
|
2708
|
-
version = "0.
|
|
2718
|
+
version = "0.10.1"
|
|
2709
2719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2710
|
-
checksum = "
|
|
2720
|
+
checksum = "1cf1692d12ab36478f43f1ef493a8b2445f7f5d17164f739d8b0fd57ad59e6e6"
|
|
2711
2721
|
dependencies = [
|
|
2712
2722
|
"async-trait",
|
|
2713
2723
|
"backoff",
|
|
2724
|
+
"base64 0.22.1",
|
|
2714
2725
|
"derive_builder 0.20.0",
|
|
2715
2726
|
"figment",
|
|
2716
2727
|
"futures",
|
|
2717
2728
|
"home",
|
|
2718
2729
|
"http",
|
|
2719
2730
|
"jsonwebtoken",
|
|
2731
|
+
"paste",
|
|
2732
|
+
"pyo3",
|
|
2733
|
+
"pyo3-asyncio",
|
|
2734
|
+
"pyo3-build-config 0.22.1",
|
|
2720
2735
|
"reqwest",
|
|
2736
|
+
"rigetti-pyo3 0.3.6",
|
|
2721
2737
|
"serde",
|
|
2722
2738
|
"shellexpand",
|
|
2723
2739
|
"thiserror",
|
|
@@ -2731,9 +2747,9 @@ dependencies = [
|
|
|
2731
2747
|
|
|
2732
2748
|
[[package]]
|
|
2733
2749
|
name = "qcs-api-client-grpc"
|
|
2734
|
-
version = "0.
|
|
2750
|
+
version = "0.10.1"
|
|
2735
2751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2736
|
-
checksum = "
|
|
2752
|
+
checksum = "b6224aeaaafb92d44439a398a03b042889edacbe23a115cfb1ff1e17c80c8bf2"
|
|
2737
2753
|
dependencies = [
|
|
2738
2754
|
"backoff",
|
|
2739
2755
|
"http",
|
|
@@ -2764,9 +2780,9 @@ dependencies = [
|
|
|
2764
2780
|
|
|
2765
2781
|
[[package]]
|
|
2766
2782
|
name = "qcs-api-client-openapi"
|
|
2767
|
-
version = "0.
|
|
2783
|
+
version = "0.11.1"
|
|
2768
2784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2769
|
-
checksum = "
|
|
2785
|
+
checksum = "c5107bbd313d31d1eede8dec2bc9c69e0aa50ffc6207457bb4d8c3ab3cb32434"
|
|
2770
2786
|
dependencies = [
|
|
2771
2787
|
"anyhow",
|
|
2772
2788
|
"qcs-api-client-common",
|
|
@@ -2784,7 +2800,7 @@ dependencies = [
|
|
|
2784
2800
|
|
|
2785
2801
|
[[package]]
|
|
2786
2802
|
name = "qcs-sdk-python-grpc-web"
|
|
2787
|
-
version = "0.
|
|
2803
|
+
version = "0.20.1"
|
|
2788
2804
|
dependencies = [
|
|
2789
2805
|
"async-trait",
|
|
2790
2806
|
"numpy",
|
|
@@ -2792,9 +2808,10 @@ dependencies = [
|
|
|
2792
2808
|
"opentelemetry 0.23.0",
|
|
2793
2809
|
"opentelemetry_sdk 0.23.0",
|
|
2794
2810
|
"paste",
|
|
2811
|
+
"prost",
|
|
2795
2812
|
"pyo3",
|
|
2796
2813
|
"pyo3-asyncio",
|
|
2797
|
-
"pyo3-build-config",
|
|
2814
|
+
"pyo3-build-config 0.20.3",
|
|
2798
2815
|
"pyo3-log",
|
|
2799
2816
|
"pyo3-opentelemetry",
|
|
2800
2817
|
"pyo3-tracing-subscriber",
|
|
@@ -2804,7 +2821,7 @@ dependencies = [
|
|
|
2804
2821
|
"qcs-api-client-grpc",
|
|
2805
2822
|
"qcs-api-client-openapi",
|
|
2806
2823
|
"quil-rs",
|
|
2807
|
-
"rigetti-pyo3",
|
|
2824
|
+
"rigetti-pyo3 0.4.1",
|
|
2808
2825
|
"serde_json",
|
|
2809
2826
|
"thiserror",
|
|
2810
2827
|
"tokio",
|
|
@@ -2819,8 +2836,8 @@ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
|
2819
2836
|
|
|
2820
2837
|
[[package]]
|
|
2821
2838
|
name = "quil-rs"
|
|
2822
|
-
version = "0.
|
|
2823
|
-
source = "git+https://github.com/rigetti/quil-rs?tag=quil-py/v0.
|
|
2839
|
+
version = "0.28.1"
|
|
2840
|
+
source = "git+https://github.com/rigetti/quil-rs?tag=quil-py/v0.12.1#a0f2776893d3ce33eb9f29449f3b4b0e9ed24174"
|
|
2824
2841
|
dependencies = [
|
|
2825
2842
|
"approx",
|
|
2826
2843
|
"indexmap 2.2.6",
|
|
@@ -3068,6 +3085,19 @@ dependencies = [
|
|
|
3068
3085
|
"time",
|
|
3069
3086
|
]
|
|
3070
3087
|
|
|
3088
|
+
[[package]]
|
|
3089
|
+
name = "rigetti-pyo3"
|
|
3090
|
+
version = "0.4.1"
|
|
3091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3092
|
+
checksum = "f924032d36104a859f936762576a9e6fc0811b37a1f4a8144c0b9b25ee89607b"
|
|
3093
|
+
dependencies = [
|
|
3094
|
+
"num-complex",
|
|
3095
|
+
"num-traits",
|
|
3096
|
+
"paste",
|
|
3097
|
+
"pyo3",
|
|
3098
|
+
"time",
|
|
3099
|
+
]
|
|
3100
|
+
|
|
3071
3101
|
[[package]]
|
|
3072
3102
|
name = "ring"
|
|
3073
3103
|
version = "0.17.8"
|
|
@@ -4,9 +4,9 @@ resolver = "2"
|
|
|
4
4
|
|
|
5
5
|
[workspace.dependencies]
|
|
6
6
|
qcs-api = "0.2.1"
|
|
7
|
-
qcs-api-client-common = "0.
|
|
8
|
-
qcs-api-client-grpc = "0.
|
|
9
|
-
qcs-api-client-openapi = "0.
|
|
7
|
+
qcs-api-client-common = "0.10.1"
|
|
8
|
+
qcs-api-client-grpc = "0.10.1"
|
|
9
|
+
qcs-api-client-openapi = "0.11.1"
|
|
10
10
|
serde_json = "1.0.86"
|
|
11
11
|
thiserror = "1.0.57"
|
|
12
12
|
tokio = "1.36.0"
|
|
@@ -19,9 +19,9 @@ lto = true
|
|
|
19
19
|
codegen-units = 1
|
|
20
20
|
|
|
21
21
|
[workspace.dependencies.quil-rs]
|
|
22
|
-
version = "0.
|
|
22
|
+
version = "0.28.1"
|
|
23
23
|
git = "https://github.com/rigetti/quil-rs"
|
|
24
|
-
tag = "quil-py/v0.
|
|
24
|
+
tag = "quil-py/v0.12.1"
|
|
25
25
|
|
|
26
26
|
[workspace.dependencies.ndarray]
|
|
27
27
|
version = "0.15.6"
|
|
@@ -46,9 +46,9 @@ version = "=0.1.2-dev.1"
|
|
|
46
46
|
default-features = true
|
|
47
47
|
|
|
48
48
|
[workspace.dependencies.rigetti-pyo3]
|
|
49
|
-
version = "0.
|
|
49
|
+
version = "0.4.1"
|
|
50
50
|
default-features = false
|
|
51
|
-
features = [ "
|
|
51
|
+
features = [ "complex", "time",]
|
|
52
52
|
|
|
53
53
|
[patch.crates-io.hyper-proxy]
|
|
54
54
|
git = "https://github.com/rigetti/hyper-proxy"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: qcs-sdk-python-grpc-web
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.20.1
|
|
4
4
|
Classifier: Development Status :: 3 - Alpha
|
|
5
5
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
6
6
|
Classifier: Programming Language :: Python :: 3.8
|
|
@@ -9,6 +9,23 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.11
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Requires-Dist: quil >=0.11.2
|
|
12
|
+
Requires-Dist: qcs-api-client-common >=0.10.0
|
|
13
|
+
Requires-Dist: pyquil ==4.14.2 ; extra == 'pyquil'
|
|
14
|
+
Requires-Dist: black >=24.8.0 ; extra == 'dev'
|
|
15
|
+
Requires-Dist: opentelemetry-sdk ==1.25.0 ; extra == 'dev'
|
|
16
|
+
Requires-Dist: pytest >=8.1.1 ; extra == 'dev'
|
|
17
|
+
Requires-Dist: pytest-asyncio >=0.23.6 ; extra == 'dev'
|
|
18
|
+
Requires-Dist: pytest-mock >=3.14.0 ; extra == 'dev'
|
|
19
|
+
Requires-Dist: pytest-sugar >=1.0.0 ; extra == 'dev'
|
|
20
|
+
Requires-Dist: pytest-clarity >=1.0.1 ; extra == 'dev'
|
|
21
|
+
Requires-Dist: syrupy >=4.0.0 ; extra == 'dev'
|
|
22
|
+
Requires-Dist: maturin ==1.5.1 ; extra == 'dev'
|
|
23
|
+
Requires-Dist: numpy >=1.24.1 ; extra == 'dev'
|
|
24
|
+
Requires-Dist: pdoc >=14.6.1 ; extra == 'dev'
|
|
25
|
+
Requires-Dist: ruff >=0.3.5 ; extra == 'dev'
|
|
26
|
+
Requires-Dist: mypy >=1.4.1 ; extra == 'dev'
|
|
27
|
+
Provides-Extra: pyquil
|
|
28
|
+
Provides-Extra: dev
|
|
12
29
|
Summary: Python interface for the QCS Rust SDK
|
|
13
30
|
Keywords: pyquil,SDK,Rigetti,Quil,Quantum
|
|
14
31
|
Author-email: Rigetti Computing <softapps@rigetti.com>, Mark Skilbeck <mark.skilbeck@rigetti.com>, Marquess Valdez <mvaldez@rigetti.com>, Randall Fulton <rfulton@rigetti.com>
|
|
@@ -1,3 +1,41 @@
|
|
|
1
|
+
## 0.24.1
|
|
2
|
+
|
|
3
|
+
### Fixes
|
|
4
|
+
|
|
5
|
+
- Bump qcs-api-client-rust versions (#500)
|
|
6
|
+
|
|
7
|
+
## 0.24.1-rc.0
|
|
8
|
+
|
|
9
|
+
### Fixes
|
|
10
|
+
|
|
11
|
+
- Bump qcs-api-client-rust versions (#500)
|
|
12
|
+
|
|
13
|
+
## 0.24.0
|
|
14
|
+
|
|
15
|
+
### Breaking Changes
|
|
16
|
+
|
|
17
|
+
- Make Python bindings public (#463)
|
|
18
|
+
|
|
19
|
+
### Fixes
|
|
20
|
+
|
|
21
|
+
- ExecutionOptions::default() now respects defaults used in ExecutionOptionsBuilder::default() (#499)
|
|
22
|
+
|
|
23
|
+
## 0.24.0-rc.0
|
|
24
|
+
|
|
25
|
+
### Breaking Changes
|
|
26
|
+
|
|
27
|
+
- Make Python bindings public (#463)
|
|
28
|
+
|
|
29
|
+
### Fixes
|
|
30
|
+
|
|
31
|
+
- ExecutionOptions::default() now respects defaults used in ExecutionOptionsBuilder::default() (#499)
|
|
32
|
+
|
|
33
|
+
## 0.23.3-rc.0
|
|
34
|
+
|
|
35
|
+
### Fixes
|
|
36
|
+
|
|
37
|
+
- ExecutionOptions::default() now respects defaults used in ExecutionOptionsBuilder::default() (#499)
|
|
38
|
+
|
|
1
39
|
## 0.23.2
|
|
2
40
|
|
|
3
41
|
### Fixes
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "qcs"
|
|
3
3
|
description = "High level interface for running Quil on a QPU"
|
|
4
|
-
version = "0.
|
|
4
|
+
version = "0.24.1"
|
|
5
5
|
edition = "2018"
|
|
6
6
|
license = "Apache-2.0"
|
|
7
7
|
repository = "https://github.com/rigetti/qcs-sdk-rust"
|
|
8
8
|
keywords = ["pyquil", "SDK", "Rigetti", "Quil", "Quantum"]
|
|
9
9
|
categories = ["api-bindings", "compilers", "science", "emulators"]
|
|
10
|
-
readme = "
|
|
10
|
+
readme = "README.md"
|
|
11
11
|
|
|
12
12
|
[features]
|
|
13
13
|
manual-tests = []
|
{qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/compiler/quilc.rs
RENAMED
|
@@ -357,7 +357,7 @@ mod tests {
|
|
|
357
357
|
serde_json::from_reader(File::open("tests/qvm_isa.json").unwrap()).unwrap()
|
|
358
358
|
}
|
|
359
359
|
|
|
360
|
-
|
|
360
|
+
fn rpcq_client() -> rpcq::Client {
|
|
361
361
|
let qcs = Qcs::load();
|
|
362
362
|
let endpoint = qcs.get_config().quilc_url();
|
|
363
363
|
rpcq::Client::new(endpoint).unwrap()
|
|
@@ -366,7 +366,6 @@ mod tests {
|
|
|
366
366
|
#[tokio::test]
|
|
367
367
|
async fn compare_native_quil_to_expected_output() {
|
|
368
368
|
let output = rpcq_client()
|
|
369
|
-
.await
|
|
370
369
|
.compile_program(
|
|
371
370
|
"MEASURE 0",
|
|
372
371
|
TargetDevice::try_from(qvm_isa()).expect("Couldn't build target device from ISA"),
|
|
@@ -390,7 +389,6 @@ MEASURE 1 ro[1]
|
|
|
390
389
|
let client = Qcs::load();
|
|
391
390
|
let client = qvm::http::HttpClient::from(&client);
|
|
392
391
|
let output = rpcq_client()
|
|
393
|
-
.await
|
|
394
392
|
.compile_program(
|
|
395
393
|
BELL_STATE,
|
|
396
394
|
TargetDevice::try_from(aspen_9_isa())
|
|
@@ -426,7 +424,6 @@ MEASURE 1 ro[1]
|
|
|
426
424
|
#[tokio::test]
|
|
427
425
|
async fn test_compile_declare_only() {
|
|
428
426
|
let output = rpcq_client()
|
|
429
|
-
.await
|
|
430
427
|
.compile_program(
|
|
431
428
|
"DECLARE ro BIT[1]\n",
|
|
432
429
|
TargetDevice::try_from(aspen_9_isa())
|
|
@@ -440,7 +437,7 @@ MEASURE 1 ro[1]
|
|
|
440
437
|
|
|
441
438
|
#[tokio::test]
|
|
442
439
|
async fn get_version_info_from_quilc() {
|
|
443
|
-
let rpcq_client = rpcq_client()
|
|
440
|
+
let rpcq_client = rpcq_client();
|
|
444
441
|
let version = rpcq_client
|
|
445
442
|
.get_version_info()
|
|
446
443
|
.expect("Should get version info from quilc");
|
|
@@ -450,7 +447,7 @@ MEASURE 1 ro[1]
|
|
|
450
447
|
|
|
451
448
|
#[tokio::test]
|
|
452
449
|
async fn test_conjugate_pauli_by_clifford() {
|
|
453
|
-
let rpcq_client = rpcq_client()
|
|
450
|
+
let rpcq_client = rpcq_client();
|
|
454
451
|
let request = ConjugateByCliffordRequest {
|
|
455
452
|
pauli: PauliTerm {
|
|
456
453
|
indices: vec![0],
|
|
@@ -473,7 +470,7 @@ MEASURE 1 ro[1]
|
|
|
473
470
|
|
|
474
471
|
#[tokio::test]
|
|
475
472
|
async fn test_generate_randomized_benchmark_sequence() {
|
|
476
|
-
let rpcq_client = rpcq_client()
|
|
473
|
+
let rpcq_client = rpcq_client();
|
|
477
474
|
let request = RandomizedBenchmarkingRequest {
|
|
478
475
|
depth: 2,
|
|
479
476
|
qubits: 1,
|
{qcs_sdk_python_grpc_web-0.19.3 → qcs_sdk_python_grpc_web-0.20.1}/crates/lib/src/executable.rs
RENAMED
|
@@ -803,7 +803,7 @@ mod describe_get_config {
|
|
|
803
803
|
use crate::client::Qcs;
|
|
804
804
|
use crate::{compiler::rpcq, Executable};
|
|
805
805
|
|
|
806
|
-
|
|
806
|
+
fn quilc_client() -> rpcq::Client {
|
|
807
807
|
let qcs = Qcs::load();
|
|
808
808
|
let endpoint = qcs.get_config().quilc_url();
|
|
809
809
|
rpcq::Client::new(endpoint).unwrap()
|
|
@@ -811,7 +811,7 @@ mod describe_get_config {
|
|
|
811
811
|
|
|
812
812
|
#[tokio::test]
|
|
813
813
|
async fn it_resizes_params_dynamically() {
|
|
814
|
-
let mut exe = Executable::from_quil("").with_quilc_client(Some(quilc_client()
|
|
814
|
+
let mut exe = Executable::from_quil("").with_quilc_client(Some(quilc_client()));
|
|
815
815
|
|
|
816
816
|
exe.with_parameter("foo", 0, 0.0);
|
|
817
817
|
let params = exe.params.get("foo").unwrap().len();
|
|
@@ -834,7 +834,7 @@ mod describe_qpu_for_id {
|
|
|
834
834
|
use crate::qpu;
|
|
835
835
|
use crate::{client::Qcs, Executable};
|
|
836
836
|
|
|
837
|
-
|
|
837
|
+
fn quilc_client() -> rpcq::Client {
|
|
838
838
|
let qcs = Qcs::load();
|
|
839
839
|
let endpoint = qcs.get_config().quilc_url();
|
|
840
840
|
rpcq::Client::new(endpoint).unwrap()
|
|
@@ -845,7 +845,7 @@ mod describe_qpu_for_id {
|
|
|
845
845
|
// Default config has no auth, so it should try to refresh
|
|
846
846
|
let mut exe = Executable::from_quil("")
|
|
847
847
|
.with_qcs_client(Qcs::load())
|
|
848
|
-
.with_quilc_client(Some(quilc_client()
|
|
848
|
+
.with_quilc_client(Some(quilc_client()));
|
|
849
849
|
let result = exe.qpu_for_id("blah").await;
|
|
850
850
|
let Err(err) = result else {
|
|
851
851
|
panic!("Expected an error!");
|
|
@@ -856,7 +856,7 @@ mod describe_qpu_for_id {
|
|
|
856
856
|
|
|
857
857
|
#[tokio::test]
|
|
858
858
|
async fn it_loads_cached_version() {
|
|
859
|
-
let mut exe = Executable::from_quil("").with_quilc_client(Some(quilc_client()
|
|
859
|
+
let mut exe = Executable::from_quil("").with_quilc_client(Some(quilc_client()));
|
|
860
860
|
let shots = NonZeroU16::new(17).expect("value is non-zero");
|
|
861
861
|
exe.shots = shots;
|
|
862
862
|
exe.qpu = Some(
|
|
@@ -881,7 +881,7 @@ mod describe_qpu_for_id {
|
|
|
881
881
|
async fn it_creates_new_after_shot_change() {
|
|
882
882
|
let original_shots = NonZeroU16::new(23).expect("value is non-zero");
|
|
883
883
|
let mut exe = Executable::from_quil("")
|
|
884
|
-
.with_quilc_client(Some(quilc_client()
|
|
884
|
+
.with_quilc_client(Some(quilc_client()))
|
|
885
885
|
.with_shots(original_shots);
|
|
886
886
|
let qpu = exe.qpu_for_id("Aspen-9").await.unwrap();
|
|
887
887
|
|
|
@@ -898,7 +898,7 @@ mod describe_qpu_for_id {
|
|
|
898
898
|
|
|
899
899
|
#[tokio::test]
|
|
900
900
|
async fn it_creates_new_for_new_qpu_id() {
|
|
901
|
-
let mut exe = Executable::from_quil("").with_quilc_client(Some(quilc_client()
|
|
901
|
+
let mut exe = Executable::from_quil("").with_quilc_client(Some(quilc_client()));
|
|
902
902
|
let qpu = exe.qpu_for_id("Aspen-9").await.unwrap();
|
|
903
903
|
|
|
904
904
|
assert_eq!(qpu.quantum_processor_id, "Aspen-9");
|