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

Compensate for global phase in MatrixGate decomposition #7118

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions cirq-core/cirq/ops/controlled_gate.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
controlled_operation as cop,
diagonal_gate as dg,
global_phase_op as gp,
matrix_gates,
op_tree,
raw_types,
)
Expand Down Expand Up @@ -220,12 +219,6 @@ def _decompose_with_context_(
control_qid_shape=self.control_qid_shape,
).on(*control_qubits)
return [result, controlled_phase_op]

if isinstance(self.sub_gate, matrix_gates.MatrixGate):
# Default decompositions of 2/3 qubit `cirq.MatrixGate` ignores global phase, which is
# local phase in the controlled variant and hence cannot be ignored.
return NotImplemented

result = protocols.decompose_once_with_qubits(
self.sub_gate,
qubits[self.num_controls() :],
Expand Down
20 changes: 16 additions & 4 deletions cirq-core/cirq/ops/controlled_gate_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,10 +431,23 @@ def test_controlled_gate_is_consistent(gate: cirq.Gate, should_decompose_to_targ
@pytest.mark.parametrize(
'gate',
[
cirq.I,
cirq.GlobalPhaseGate(1),
cirq.GlobalPhaseGate(-1),
cirq.GlobalPhaseGate(1j),
cirq.GlobalPhaseGate(1j**0.7),
cirq.Z,
cirq.ZPowGate(exponent=1.2, global_shift=0.3),
cirq.CZ,
cirq.CZPowGate(exponent=1.2, global_shift=0.3),
cirq.CCZ,
cirq.CCZPowGate(exponent=1.2, global_shift=0.3),
cirq.X,
cirq.XPowGate(exponent=1.2, global_shift=0.3),
cirq.CX,
cirq.CXPowGate(exponent=1.2, global_shift=0.3),
cirq.CCX,
cirq.CCXPowGate(exponent=1.2, global_shift=0.3),
],
)
@pytest.mark.parametrize(
Expand Down Expand Up @@ -476,10 +489,9 @@ def _test_controlled_gate_is_consistent(
shape = cirq.qid_shape(cgate)
qids = cirq.LineQid.for_qid_shape(shape)
decomposed = cirq.decompose(cgate.on(*qids))
if len(decomposed) < 1000: # CCCCCZ rounding error explodes
first_op = cirq.IdentityGate(qid_shape=shape).on(*qids) # To ensure same qid order
circuit = cirq.Circuit(first_op, *decomposed)
np.testing.assert_allclose(cirq.unitary(cgate), cirq.unitary(circuit), atol=1e-1)
first_op = cirq.IdentityGate(qid_shape=shape).on(*qids) # To ensure same qid order
circuit = cirq.Circuit(first_op, *decomposed)
np.testing.assert_allclose(cirq.unitary(cgate), cirq.unitary(circuit), atol=1e-13)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can confirm the test failure in #7071 (comment) does not happen after this change.



def test_pow_inverse():
Expand Down
31 changes: 25 additions & 6 deletions cirq-core/cirq/ops/matrix_gates.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@

"""Quantum gates defined by a matrix."""

from typing import Any, Dict, Iterable, Optional, Tuple, TYPE_CHECKING
from typing import Any, Dict, Iterable, List, Optional, Tuple, TYPE_CHECKING

import numpy as np

from cirq import linalg, protocols, _import
from cirq._compat import proper_repr
from cirq.ops import raw_types, phased_x_z_gate
from cirq.ops import raw_types, phased_x_z_gate, global_phase_op as gp, identity

if TYPE_CHECKING:
import cirq
Expand Down Expand Up @@ -148,18 +148,37 @@ def _phase_by_(self, phase_turns: float, qubit_index: int) -> 'MatrixGate':
return MatrixGate(matrix=result.reshape(self._matrix.shape), qid_shape=self._qid_shape)

def _decompose_(self, qubits: Tuple['cirq.Qid', ...]) -> 'cirq.OP_TREE':
decomposed: List['cirq.Operation'] = NotImplemented
if self._qid_shape == (2,):
return [
decomposed = [
g.on(qubits[0])
for g in single_qubit_decompositions.single_qubit_matrix_to_gates(self._matrix)
]
if self._qid_shape == (2,) * 2:
return two_qubit_to_cz.two_qubit_matrix_to_cz_operations(
decomposed = two_qubit_to_cz.two_qubit_matrix_to_cz_operations(
*qubits, self._matrix, allow_partial_czs=True
)
if self._qid_shape == (2,) * 3:
return three_qubit_decomposition.three_qubit_matrix_to_operations(*qubits, self._matrix)
return NotImplemented
decomposed = three_qubit_decomposition.three_qubit_matrix_to_operations(
*qubits, self._matrix
)
if decomposed is NotImplemented:
return NotImplemented
# The above algorithms ignore phase, but phase is important to maintain if the gate is
# controlled. Here, we add it back in with a global phase op.
from cirq.circuits import Circuit

ident = identity.IdentityGate(qid_shape=self._qid_shape).on(*qubits)
u = protocols.unitary(Circuit(ident, *decomposed)).reshape(self._matrix.shape)
# All cells will have the same phase difference. Just choose the cell with the largest
# absolute value, to minimize rounding error.
max_index = np.unravel_index(np.abs(self._matrix).argmax(), self._matrix.shape)
phase_delta = self._matrix[max_index] / u[max_index]
# Phase delta is on the complex unit circle, so if real(phase_delta) >= 1, that means
# no phase delta. (>1 is rounding error).
if phase_delta.real < 1:
decomposed.append(gp.global_phase_operation(phase_delta))
return decomposed

def _has_unitary_(self) -> bool:
return True
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

def three_qubit_matrix_to_operations(
q0: ops.Qid, q1: ops.Qid, q2: ops.Qid, u: np.ndarray, atol: float = 1e-8
) -> Sequence[ops.Operation]:
) -> List[ops.Operation]:
"""Returns operations for a 3 qubit unitary.

The algorithm is described in Shende et al.:
Expand Down
1 change: 1 addition & 0 deletions cirq-ionq/cirq_ionq/ionq_gateset.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def __init__(self, *, atol: float = 1e-8):
cirq.YYPowGate,
cirq.ZZPowGate,
cirq.MeasurementGate,
cirq.GlobalPhaseGate,
unroll_circuit_op=False,
)
self.atol = atol
Expand Down