Skip to content

Commit

Permalink
Remove references to cirq_google.Foxtail (#6126)
Browse files Browse the repository at this point in the history
Does not exist anymore.  Replace with cirq_google.Sycamore.
  • Loading branch information
carthick committed Jun 7, 2023
1 parent 3ac3c30 commit ebc52d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
4 changes: 2 additions & 2 deletions docs/dev/development.md
Expand Up @@ -287,7 +287,7 @@ def some_method(a: int, b: str) -> float:
Notice that this docstring is an r-string, since the latex has backslashes.
We can also include example code:
print(cirq_google.Foxtail)
print(cirq_google.Sycamore)
You can also do inline latex like $y = x^2$ and inline code like
`cirq.unitary(cirq.X)`.
Expand Down Expand Up @@ -415,6 +415,6 @@ python dev_tools/requirements/reqs.py dev_tools/requirements/dev.env.txt

```bash
python -m pip install cirq
python -c "import cirq; print(cirq_google.Foxtail)"
python -c "import cirq; print(cirq_google.Sycamore)"
python -c "import cirq; print(cirq.__version__)"
```
11 changes: 0 additions & 11 deletions docs/google/devices.md
Expand Up @@ -333,14 +333,3 @@ It can be accessing by using `cirq_google.Bristlecone`. Circuits can be compiled
`cirq_google.optimized_for_xmon` or by using `cirq_google.optimized_for_sycamore` with
optimizer_type `xmon`.

### Foxtail

The Foxtail device is a 2 by 11 XMON device arranged in a bilinear array,
addressable by using grid qubits `({0,1}, {0-11})`. It was one of the first
super-conducting quantum devices announced by Google. Due to the small number of qubits
and limited connectivity, it is still interesting for exploring the space of constrained
algorithms on NISQ devices.

It can be accessing by using `cirq_google.Foxtail`. Circuits can be compiled to it by using
`cirq_google.optimized_for_xmon` or by using `cirq_google.optimized_for_sycamore` with
optimizer_type `xmon`.

0 comments on commit ebc52d5

Please sign in to comment.