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

Misaligned two-qubit gate diagrams for deep circuits #5719

Open
andbe91 opened this issue Jul 11, 2022 · 5 comments
Open

Misaligned two-qubit gate diagrams for deep circuits #5719

andbe91 opened this issue Jul 11, 2022 · 5 comments
Labels
area/colab good first issue This issue can be resolved by someone who is not familiar with the codebase. A good starting issue. kind/bug-report Something doesn't seem to work. triage/accepted A consensus emerged that this bug report, feature request, or other action should be worked on

Comments

@andbe91
Copy link
Collaborator

andbe91 commented Jul 11, 2022

Description of the issue
Lines connecting two qubits get gradually misaligned for deep circuits in Google colab (with a supposedly monospaced font).
image

How to reproduce the issue

import cirq
q0, q1 = cirq.LineQubit.range(2)
circuit = cirq.Circuit([cirq.CZ(q0, q1)] * 200)
print(circuit)

Cirq version
0.15.0

@andbe91 andbe91 added the kind/bug-report Something doesn't seem to work. label Jul 11, 2022
@maffoo
Copy link
Contributor

maffoo commented Jul 11, 2022

I think this is a font issue, but we could look at the actual strings and check whether they are aligned to be sure.

@andbe91
Copy link
Collaborator Author

andbe91 commented Jul 11, 2022

@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

@MichaelBroughton MichaelBroughton added time/after-1.0 area/colab triage/accepted A consensus emerged that this bug report, feature request, or other action should be worked on and removed time/after-1.0 labels Jul 13, 2022
@Batmaev
Copy link

Batmaev commented Aug 3, 2022

Actual strings are aligned.

The problem occurs because the output is inside the <pre> HTML element. By default, it has the property font-family: monospace. Which monospace font will be used depends on the browser and OS.

On macOS, Chromium-based browsers seem to select the old Courier font, which lacks box-drawing characters and . These characters get displayed in Menlo, which is also monospaced but has a different character width.

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.

@Batmaev
Copy link

Batmaev commented Aug 3, 2022

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.__str__() must return plain text. We can only contact Colab or Chrome developers and ask them to change the font.

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:

def _repr_html_(self) -> str:
"""Print ASCII diagram in Jupyter notebook without wrapping lines."""
return (
'<pre style="overflow: auto; white-space: pre;">'
+ html.escape(self.to_text_diagram())
+ '</pre>'
)

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.
Most non-Mac users don't have this font. For them, the browser-default monospace font will be used, as before.

This will fix the problem in the second scenario.

@dstrain115 dstrain115 added the good first issue This issue can be resolved by someone who is not familiar with the codebase. A good starting issue. label Feb 13, 2024
@dstrain115
Copy link
Collaborator

This seems like a good first issue for anyone with a mac device that can test.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/colab good first issue This issue can be resolved by someone who is not familiar with the codebase. A good starting issue. kind/bug-report Something doesn't seem to work. triage/accepted A consensus emerged that this bug report, feature request, or other action should be worked on
Projects
Status: No status
Development

No branches or pull requests

6 participants