Could you provide me with a concrete example/tutorial for the usage of prog.circuit_drawer()? I also donβt know how to properly install the πΏπ΄ππΈπ Qcircuit package and use it. I would like to use both to draw my photonic quantum circuits in Strawberry fields.
There are three relevent links I found from Strawberry fields website, but none of them can help me to tackle the issue. By the way, I really love qml.draw_mpl() function in Pennylane.
Hi @HYW , itβs great to hear you love the qml.draw_mpl() feature in PennyLane
Unfortunately we donβt have a Strawberry Fields equivalent. As you correctly identified youβll need to use prog.draw_circuit() to generate some LaTeX code that you will then need to compile using Overleaf or some other tool to actually see your circuit. Below is an example of how you can do this. For this example I chose to install texlive-pictures, which includes qcircuit and other packages (see details here). However you can install qcircuit directly if you prefer.
# create a 3-mode quantum program
import strawberryfields as sf
from strawberryfields import ops
prog = sf.Program(3)
# Note that some measurements and gates aren't supported
with prog.context as q:
ops.Sgate(0.54) | q[0]
ops.Sgate(0.54) | q[1]
ops.Sgate(0.54) | q[2]
ops.BSgate(0.43, 0.1) | (q[1], q[2])
# Generate the LaTeX code needed to draw the circuit
prog.draw_circuit()
This will create a file (by default in the circuit_tex folder) which contains some LaTeX code. You will then need to run this code using a tool such as Overleaf in order to see the rendered image.