Skip to content

Remove documentation references to optimized_for_sycamore #7329

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion docs/google/concepts.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
"source": [
"### Quantum Programs\n",
"\n",
"In Cirq, one creates a `Circuit` in Python. If one then wants to run it using Quantum Engine, one must then upload this Circuit to the Quantum Engine API. The uploaded version of the Circuit is called a Program. Programs are not the Python code itself, but a representation of the Circuit suitable for running on hardware. The `Engine` class and its corresponding `sampler` will translate the circuit into the format needed by the API for you. You will need to make sure that your circuit uses only gates and qubits compatible with the hardware (see `cirq_google.optimized_for_sycamore()` to help with this).\n",
"In Cirq, one creates a `Circuit` in Python. If one then wants to run it using Quantum Engine, one must then upload this Circuit to the Quantum Engine API. The uploaded version of the Circuit is called a Program. Programs are not the Python code itself, but a representation of the Circuit suitable for running on hardware. The `Engine` class and its corresponding `sampler` will translate the circuit into the format needed by the API for you. You will need to make sure that your circuit uses only gates and qubits compatible with the hardware.\n",
"\n",
"![Quantum Program Conceptual Diagram](https://github.com/quantumlib/Cirq/blob/main/docs/images/engine_program.png?raw=1)\n",
"\n",
Expand Down
5 changes: 2 additions & 3 deletions docs/google/devices.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,10 +295,9 @@ It can be accessed by using `cirq_google.Sycamore`. This device has two possible
two-qubits gates that can be used.

* Square root of ISWAP. The gate `cirq.ISWAP ** 0.5` or `cirq.ISWAP ** -0.5` can be
used on `cirq_google.optimized_for_sycamore` with optimizer type `sqrt_iswap`
used on this device.
* Sycamore gate. This gate, equivalent to FSimGate(π/2, π/6) can be used as `cirq_google.SYC`
or by using `cirq.FsimGate(numpy.pi/2,numpy.pi/6)`. Circuits can be compiled to use this gate
by using `cirq_google.optimized_for_sycamore` with optimizer type `sycamore`
or by using `cirq.FsimGate(numpy.pi/2,numpy.pi/6)`.


### Sycamore23
Expand Down
9 changes: 0 additions & 9 deletions docs/tutorials/google/spin_echoes.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,6 @@
"4. Inserting spin echoes to reduce leakage & cross-talk."
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "S0OPIhmnv5AO"
},
"source": [
"Note: The function `cirq_google.optimized_for_sycamore` implements some of the optimizations shown here. This tutorial provides more detail for finer control."
]
},
{
"cell_type": "markdown",
"metadata": {
Expand Down