Korean
언어
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.circuit.library.standard_gates.ryy의 소스 코드

# This code is part of Qiskit.
#
# (C) Copyright IBM 2017, 2020.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.

"""Two-qubit YY-rotation gate."""

import numpy as np
from qiskit.circuit.gate import Gate
from qiskit.circuit.quantumregister import QuantumRegister


[문서]class RYYGate(Gate): r"""A parameteric 2-qubit :math:`Y \otimes Y` interaction (rotation about YY). This gate is symmetric, and is maximally entangling at :math:`\theta = \pi/2`. **Circuit Symbol:** .. parsed-literal:: ┌─────────┐ q_0: ┤1 ├ │ Ryy(ϴ) │ q_1: ┤0 ├ └─────────┘ **Matrix Representation:** .. math:: \newcommand{\th}{\frac{\theta}{2}} R_{YY}(\theta) = exp(-i \th Y{\otimes}Y) = \begin{pmatrix} \cos(\th) & 0 & 0 & i\sin(\th) \\ 0 & \cos(\th) & -i\sin(\th) & 0 \\ 0 & -i\sin(\th) & \cos(\th) & 0 \\ i\sin(\th) & 0 & 0 & \cos(\th) \end{pmatrix} **Examples:** .. math:: R_{YY}(\theta = 0) = I .. math:: R_{YY}(\theta = \pi) = i Y \otimes Y .. math:: R_{YY}(\theta = \frac{\pi}{2}) = \frac{1}{\sqrt{2}} \begin{pmatrix} 1 & 0 & 0 & i \\ 0 & 1 & -i & 0 \\ 0 & -i & 1 & 0 \\ i & 0 & 0 & 1 \end{pmatrix} """
[문서] def __init__(self, theta): """Create new RYY gate.""" super().__init__('ryy', 2, [theta])
def _define(self): """Calculate a subcircuit that implements this unitary.""" # pylint: disable=cyclic-import from qiskit.circuit.quantumcircuit import QuantumCircuit from .x import CXGate from .rx import RXGate from .rz import RZGate q = QuantumRegister(2, 'q') theta = self.params[0] qc = QuantumCircuit(q, name=self.name) rules = [ (RXGate(np.pi / 2), [q[0]], []), (RXGate(np.pi / 2), [q[1]], []), (CXGate(), [q[0], q[1]], []), (RZGate(theta), [q[1]], []), (CXGate(), [q[0], q[1]], []), (RXGate(-np.pi / 2), [q[0]], []), (RXGate(-np.pi / 2), [q[1]], []), ] for instr, qargs, cargs in rules: qc._append(instr, qargs, cargs) self.definition = qc
[문서] def inverse(self): """Return inverse RYY gate (i.e. with the negative rotation angle).""" return RYYGate(-self.params[0])
[문서] def to_matrix(self): """Return a numpy.array for the RYY gate.""" theta = float(self.params[0]) cos = np.cos(theta / 2) isin = 1j * np.sin(theta / 2) return np.array([ [cos, 0, 0, isin], [0, cos, -isin, 0], [0, -isin, cos, 0], [isin, 0, 0, cos] ], dtype=complex)

© Copyright 2020, Qiskit Development Team. 최종 업데이트: 2021/06/04

Built with Sphinx using a theme provided by Read the Docs.