Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No longer support create_calibration_program and create_batch_program #6442

Merged
merged 33 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from 31 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
eb10318
Created using Colaboratory
senecameeks Nov 27, 2023
21f6d1c
Merge branch 'quantumlib:master' into master
senecameeks Nov 27, 2023
630c363
Merge branch 'quantumlib:main' into master
senecameeks Jan 17, 2024
a68afb4
throw notimplement error for run_calibration and run_batch_program
senecameeks Feb 5, 2024
8e4a3ed
lint
senecameeks Feb 5, 2024
a991441
build protos
senecameeks Feb 5, 2024
f711c0b
coverage
senecameeks Feb 5, 2024
00d7d71
rm unused proto files
senecameeks Feb 5, 2024
2194693
Merge branch 'main' into u/smeeks/rm_unused_job_types
senecameeks Feb 5, 2024
7765f11
Merge branch 'u/smeeks/rm_unused_job_types' of github.com:senecameeks…
senecameeks Feb 5, 2024
0c4a9f8
rm proto files
senecameeks Feb 8, 2024
b63a6c9
rm deps
senecameeks Feb 8, 2024
5f8a7a0
all tests pass
senecameeks Feb 8, 2024
b592da1
lint
senecameeks Feb 8, 2024
e4d4611
generate protos
senecameeks Feb 8, 2024
8aee900
lint
senecameeks Feb 9, 2024
7a12d20
rm even more files
senecameeks Feb 12, 2024
2ca03de
passing checks
senecameeks Feb 12, 2024
13805dd
ubuntu tests pass
senecameeks Feb 12, 2024
a1fbdae
lint
senecameeks Feb 12, 2024
02da8a4
coverage pass
senecameeks Feb 15, 2024
22554c8
save
senecameeks Feb 15, 2024
bdb55b3
rm CalibrationResult test data
senecameeks Feb 15, 2024
578e01e
address all comments
senecameeks Feb 16, 2024
f764bee
Merge branch 'main' into u/smeeks/rm_unused_job_types
senecameeks Feb 16, 2024
f34957a
lint
senecameeks Feb 16, 2024
8ed9749
Merge remote-tracking branch 'upstream/main'
senecameeks Feb 16, 2024
7d08706
Merge branch 'master' into u/smeeks/rm_unused_job_types
senecameeks Feb 16, 2024
022bc10
Merge branch 'main' into u/smeeks/rm_unused_job_types
senecameeks Feb 16, 2024
c1dfc4f
Merge branch 'u/smeeks/rm_unused_job_types' of github.com:senecameeks…
senecameeks Feb 16, 2024
21ebf35
add todo
senecameeks Feb 16, 2024
a2f8c74
add tracking bug
senecameeks Feb 21, 2024
e440b57
Merge branch 'main' into u/smeeks/rm_unused_job_types
senecameeks Feb 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 0 additions & 35 deletions cirq-google/cirq_google/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,41 +20,6 @@

from cirq_google._version import __version__

from cirq_google.calibration import (
ALL_ANGLES_FLOQUET_PHASED_FSIM_CHARACTERIZATION,
CircuitWithCalibration,
FloquetPhasedFSimCalibrationOptions,
FloquetPhasedFSimCalibrationRequest,
FSimPhaseCorrections,
PhasedFSimCalibrationError,
PhasedFSimCalibrationOptions,
PhasedFSimCalibrationRequest,
PhasedFSimCalibrationResult,
PhasedFSimCharacterization,
PhasedFSimEngineSimulator,
XEBPhasedFSimCalibrationOptions,
XEBPhasedFSimCalibrationRequest,
LocalXEBPhasedFSimCalibrationOptions,
LocalXEBPhasedFSimCalibrationRequest,
SQRT_ISWAP_INV_PARAMETERS,
THETA_ZETA_GAMMA_FLOQUET_PHASED_FSIM_CHARACTERIZATION,
make_zeta_chi_gamma_compensation_for_moments,
make_zeta_chi_gamma_compensation_for_operations,
merge_matching_results,
prepare_characterization_for_circuits_moments,
prepare_floquet_characterization_for_moments,
prepare_characterization_for_moments,
prepare_floquet_characterization_for_moment,
prepare_characterization_for_moment,
prepare_floquet_characterization_for_operations,
prepare_characterization_for_operations,
run_calibrations,
run_floquet_characterization_for_moments,
run_zeta_chi_gamma_compensation_for_moments,
try_convert_sqrt_iswap_to_fsim,
WITHOUT_CHI_FLOQUET_PHASED_FSIM_CHARACTERIZATION,
)

from cirq_google.devices import (
GoogleNoiseProperties,
GridDevice,
Expand Down
17 changes: 2 additions & 15 deletions cirq-google/cirq_google/api/v2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,7 @@
# limitations under the License.
"""Data format v2 for google api."""

from cirq_google.api.v2 import (
batch_pb2,
calibration_pb2,
device_pb2,
metrics_pb2,
program_pb2,
result_pb2,
run_context_pb2,
)
from cirq_google.api.v2 import device_pb2, metrics_pb2, program_pb2, result_pb2, run_context_pb2

from cirq_google.api.v2.program import (
grid_qubit_from_proto_id,
Expand All @@ -40,9 +32,4 @@
results_to_proto,
)

from cirq_google.api.v2.sweeps import (
batch_run_context_to_proto,
run_context_to_proto,
sweep_from_proto,
sweep_to_proto,
)
from cirq_google.api.v2.sweeps import run_context_to_proto, sweep_from_proto, sweep_to_proto
58 changes: 0 additions & 58 deletions cirq-google/cirq_google/api/v2/batch.proto
senecameeks marked this conversation as resolved.
Outdated
Show resolved Hide resolved

This file was deleted.

34 changes: 0 additions & 34 deletions cirq-google/cirq_google/api/v2/batch_pb2.py

This file was deleted.

105 changes: 0 additions & 105 deletions cirq-google/cirq_google/api/v2/batch_pb2.pyi

This file was deleted.

107 changes: 0 additions & 107 deletions cirq-google/cirq_google/api/v2/calibration.proto
senecameeks marked this conversation as resolved.
Outdated
Show resolved Hide resolved

This file was deleted.

Loading