We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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:
Pauli
>>> 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.
The text was updated successfully, but these errors were encountered:
Do you mean compatibility of syntax, or being able to convert to other libraries?
Sorry, something went wrong.
Being able to convert to the libraries from my point of view.
No branches or pull requests
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:
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:
It would be interesting to provide compatibility of those definitions with PauliOpt.
The text was updated successfully, but these errors were encountered: