Define `cirq.ISWAP_INV`, similar to `cirq.SQRT_ISWAP_INV` and replace usages.
See original GitHub issueDescription of the issue
Similar to cirq.SQRT_ISWAP_INV
, define a global constant for cirq.ISWAP_INV
and replace usages of cirq.ISWAP ** -1
with cirq.ISWAP_INV
.
Cirq version 0.14.0
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
Cirq basics | Google Quantum AI
This tutorial will teach the basics of how to use Cirq. It will walk through how to use qubits, gates, and operations to...
Read more >Find and replace gate - cirq
where I have tried to represent two different entanglement gates. Is there an efficient way to do this using some cirq function (other...
Read more >Optimizer that decomposes two qubit operations into sqrt ...
If you want a decomposition into a different gate set, the best (automated) way of doing it is to first decompose into CZ's,...
Read more >How to create custom gates in Cirq - YouTube
In our previous episode, we learned how to construct quantum circuits out of moments, with each moment containing operations on qubits.
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 Free
Top 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
@unaiic I’ve assigned it to you.
Yes, it’s mostly about consistency. Since we have
SQRT_ISWAP_INV
, we should also haveISWAP_INV
just to be consistent.