XY gate
See original GitHub issueWhat is the expected enhancement?
It would be useful if the XY
gate could be added to the existing circuit library https://qiskit.org/documentation/apidoc/circuit_library.html
The use case is for a basis gate for the qiskit transpiler.
Issue Analytics
- State:
- Created 2 years ago
- Comments:17 (12 by maintainers)
Top Results From Across the Web
XY — pyQuil 2.28.0 documentation - Rigetti Computing
pyquil.gates. XY (angle, q1, q2)[source]¶. Produces a parameterized ISWAP gate: XY(phi) = [[1, 0, 0, 0], [0, cos(phi/2), 1j * sin(phi/2), 0], [0, ......
Read more >A new strategy to implement XY entangling gates in ...
Researchers at Rigetti Computing recently demonstrated the potential of using XY entangling gates to improve the performance of a ...
Read more >Quantum logic gate - Wikipedia
In quantum computing and specifically the quantum circuit model of computation, a quantum logic gate (or simply quantum gate) is a basic quantum...
Read more >Implementation of XY entangling gates with a single calibrated ...
One approach to minimize the circuit depth is the use of a more expressive gate set. The XY two-qubit gate set can offer...
Read more >Single Qubit Gates - Qiskit
In this section we will cover gates, the operations that change a qubit between ... 1.2 The Y & Z-Gates; Digression: The X,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It should be defined with the minus sign, so option 2 😄 I’ll assign you @epelaaez!
The implementation should be pretty similar to the RZX gate (in
qiskit/circuit/library/standard_gates/rzx.py
) if you want to have a look.Sorry for the delay, but I’ve created a draft pull request adding the gate, feel free to leave any comments.
@Cryoris I am not sure about the way I implemented the default value for beta in
QuantumCircuit.xy
and inXYGate
, could you check that out and tell me if I should make any changes? Also, what tests should I create/modify for the new gate?