-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Misaligned two-qubit gate diagrams for deep circuits #5719
Comments
I think this is a font issue, but we could look at the actual strings and check whether they are aligned to be sure. |
@maffoo yeah I agree. Seems to be a macOs and/or Colab issue since I only see this is on my MacBook and not on my linux desktop. So can probably close this issue |
Actual strings are aligned. The problem occurs because the output is inside the On macOS, Chromium-based browsers seem to select the old Courier font, which lacks box-drawing characters The solution is to change the font to one that supports box drawing. Menlo, which is the default monospace font in Firefox for macOS, might be a good option. |
The problem occurs in two scenarios: circuit = cirq.Circuit([cirq.CZ(q0, q1)] * 200)
print(circuit) # calls circuit.__str__
# <misaligned output> In the first scenario, we can't do anything since circuit = cirq.Circuit([cirq.CZ(q0, q1)] * 200)
circuit # calls circuit._repr_html_
# <misaligned output> The second scenario produces misaligned output not only in Colab on Chrome but also in Safari and VS Code on macOS. Fortunately, here we have control over font. For example, instead of this: Cirq/cirq-core/cirq/circuits/circuit.py Lines 290 to 296 in 65ebb4a
we can write this: def _repr_html_(self) -> str:
"""Print ASCII diagram in Jupyter notebook without wrapping lines."""
return (
'<pre style="overflow: auto; white-space: pre; font-family: Menlo, monospace;">'
+ html.escape(self.to_text_diagram())
+ '</pre>'
) Almost all Mac users have the Menlo font preinstalled and it will be used for them. This will fix the problem in the second scenario. |
This seems like a good first issue for anyone with a mac device that can test. |
Description of the issue

Lines connecting two qubits get gradually misaligned for deep circuits in Google colab (with a supposedly monospaced font).
How to reproduce the issue
Cirq version
0.15.0
The text was updated successfully, but these errors were encountered: