visualizers for qulacs
Project description
qulacs-visualizer
qulacs-visualizer is a quantum circuit drawing library for qulacs. This library only supports Python. Not available in C/C++.
qulacs-visualizer supports the following methods.
- Text-Based Drawing
- Matplotlib Drawing
- using matplotlib
- LaTeX Drawing
- using LaTeX and the qcircuit package
Quick Install
Install using pip
from PyPI:
pip install qulacsvis
Example
For more information, see the documentation. The documentation describes the other options available.
Text-Based Drawing
In text-based mode, draws the circuit as ASCII art. This mode is the default behavior.
from qulacs import QuantumCircuit
from qulacsvis import circuit_drawer
# Build a quantum circuit
circuit = QuantumCircuit(3)
circuit.add_X_gate(0)
circuit.add_Y_gate(1)
circuit.add_Z_gate(2)
circuit.add_dense_matrix_gate(
[0, 1], [[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 0, 1], [0, 0, 1, 0]]
)
circuit.add_CNOT_gate(2, 0)
circuit.add_X_gate(2)
# Draw a quantum circuit
circuit_drawer(circuit)
___ ___ ___
| X | |DeM| |CX |
--| |---| |---| |----------
|___| | | |___|
___ | | |
| Y | | | |
--| |---| |-----|------------
|___| |___| |
___ | ___
| Z | | | X |
--| |-------------●-----| |--
|___| |___|
Matplotlib Drawing
To use another drawing method, you can specify it by setting a value to the output_method
argument of the circuit_drawer()
function. For matplotlib drawing, set output_method="mpl"
.
circuit_drawer(circuit, "mpl")
LaTeX Drawing
For LaTeX drawing, set output_method="latex"
.
circuit_drawer(circuit, "latex")
If you want to output LaTeX code, set output_method="latex_source"
.
print(circuit_drawer(circuit, "latex_source"))
\documentclass[border={-2pt 5pt 5pt -7pt}]{standalone}
\usepackage[braket, qm]{qcircuit}
\usepackage{graphicx}
\begin{document}
\Qcircuit @C=1.0em @R=0.7em @!R{ \\
\nghost{ q_{0} : } & \lstick{ q_{0} : } & \gate{X} & \multigate{1}{DeM} & \targ & \qw & \qw\\
\nghost{ q_{1} : } & \lstick{ q_{1} : } & \gate{Y} & \ghost{DeM} & \qw & \qw & \qw\\
\nghost{ q_{2} : } & \lstick{ q_{2} : } & \gate{Z} & \qw & \ctrl{-2} & \gate{X} & \qw\\
}
\end{document}
Requirement
If you want to use LaTeX Drawing, you need to have a local environment where you can run LaTeX (pdflatex). You will also need the qcircuit package. TeX Live and MiKTeX have the qcircuit package installed by default.
License
Contributors
We use qqcd for text-based drawing, a drawing library developed by @mf-22. Thank you.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file qulacsvis-0.5.0.tar.gz
.
File metadata
- Download URL: qulacsvis-0.5.0.tar.gz
- Upload date:
- Size: 22.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.8.15 Linux/5.15.0-1024-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27ffb28f505819199529e84396c6c6aa1f860b35385de2c26315776f7918282a |
|
MD5 | 0de2318ffec610c52ffb16c21f19c875 |
|
BLAKE2b-256 | f181bfcb566f61b17647aa50d8483cfef8305e0f7fcae21eaf5c3c4e70bb467b |
File details
Details for the file qulacsvis-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: qulacsvis-0.5.0-py3-none-any.whl
- Upload date:
- Size: 23.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.8.15 Linux/5.15.0-1024-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a565222ac5e71d651804f3190a0424fec49daff9b31d1c564aa379b14917a41 |
|
MD5 | 586dab6d16103876ce5b8cc6541c43d9 |
|
BLAKE2b-256 | 8ce3df5a7a4b931c191dddc8afb229b88f4335281cb54473ab53b39b400f0c61 |