|
13 | 13 | # limitations under the License.
|
14 | 14 | """Experiments and tools for characterizing quantum operations."""
|
15 | 15 |
|
16 |
| -from cirq.experiments.google_v2_supremacy_circuit import ( |
17 |
| - generate_boixo_2018_supremacy_circuits_v2, |
18 |
| - generate_boixo_2018_supremacy_circuits_v2_bristlecone, |
19 |
| - generate_boixo_2018_supremacy_circuits_v2_grid, |
20 |
| -) |
21 |
| - |
22 | 16 | from cirq.experiments.qubit_characterizations import (
|
23 | 17 | RandomizedBenchMarkResult,
|
24 | 18 | single_qubit_randomized_benchmarking,
|
|
28 | 22 | two_qubit_state_tomography,
|
29 | 23 | )
|
30 | 24 |
|
31 |
| -from cirq.experiments.cross_entropy_benchmarking import ( |
32 |
| - build_entangling_layers, |
33 |
| - cross_entropy_benchmarking, |
34 |
| - CrossEntropyResult, |
35 |
| - CrossEntropyResultDict, |
36 |
| -) |
| 25 | +from cirq.experiments.cross_entropy_benchmarking import CrossEntropyResult, CrossEntropyResultDict |
37 | 26 |
|
38 | 27 | from cirq.experiments.fidelity_estimation import (
|
39 | 28 | hog_score_xeb_fidelity_from_probabilities,
|
40 |
| - least_squares_xeb_fidelity_from_expectations, |
41 |
| - least_squares_xeb_fidelity_from_probabilities, |
42 |
| - linear_xeb_fidelity, |
43 | 29 | linear_xeb_fidelity_from_probabilities,
|
| 30 | + linear_xeb_fidelity, |
44 | 31 | log_xeb_fidelity,
|
45 | 32 | log_xeb_fidelity_from_probabilities,
|
46 | 33 | xeb_fidelity,
|
47 | 34 | )
|
48 | 35 |
|
49 |
| -from cirq.experiments.grid_parallel_two_qubit_xeb import ( |
50 |
| - collect_grid_parallel_two_qubit_xeb_data, |
51 |
| - compute_grid_parallel_two_qubit_xeb_results, |
52 |
| -) |
53 |
| - |
54 | 36 | from cirq.experiments.purity_estimation import purity_from_probabilities
|
55 | 37 |
|
56 | 38 | from cirq.experiments.random_quantum_circuit_generation import (
|
|
0 commit comments