Skip to content

Version 0.1.13 released

Latest
Compare
Choose a tag to compare
@tiago939 tiago939 released this 07 Nov 17:57
· 3 commits to main since this release

This version fixes a problem when specifying manually the angle parameters of the rotation gates. Now these gates receives explicitly the number of qudits (wires) of the circuit.

Additionally, we have implemented a experimental gate called "Universal Gate", that parameterize the entire Hilbert space, allowing building highly expressive circuits. You can use it stand alone as:

U = qf.U(dim=dim, wires=wires)

or inside a circuit, for instance:

circuit = qf.Circuit(dim=2, wires=3)
circuit.U()
state = qf.State('0-0-0')
circuit(state)