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

Compability with other Frameworks #4

Open
daehiff opened this issue May 2, 2023 · 2 comments
Open

Compability with other Frameworks #4

daehiff opened this issue May 2, 2023 · 2 comments

Comments

@daehiff
Copy link
Collaborator

daehiff commented May 2, 2023

To my knowledge, tket has the PauliExpBox Class, which defines a phase gadget (See: https://cqcl.github.io/tket/pytket/api/circuit.html#pytket.circuit.PauliExpBox)
Which looks something like this:

num_qubits = 4
circuit = pytket.Circuit(num_qubits)
circuit.add_pauliexpbox(PauliExpBox([Pauli.I, Pauli.Z, Pauli.Y, Pauli.X], np.pi /2.0), list(range(num_qubits)))

On the qiskit side, the Pauli class exists combined with the operator flow (see: https://qiskit.org/documentation/tutorials/operators/01_operator_flow.html). One can also produce a Pauli Polynomial.
The definition looks something like this:

>>> from qiskit.opflow import I, X, Y, Z
>>> print(1.1 * ((1.2 * X)^(Y + (1.3 * Z))))
# 1.2 * (
#  1.1 * XY
# + 1.4300000000000002 * XZ
# )

It would be interesting to provide compatibility of those definitions with PauliOpt.

@y-richie-y
Copy link
Collaborator

Do you mean compatibility of syntax, or being able to convert to other libraries?

@daehiff
Copy link
Collaborator Author

daehiff commented May 7, 2023

Being able to convert to the libraries from my point of view.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants