Japanese
言語
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.circuit.library.standard_gates.ms のソースコード

# This code is part of Qiskit.
#
# (C) Copyright IBM 2017, 2019.
#
# 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.

"""Global Mølmer–Sørensen gate."""

import warnings
from qiskit.circuit.gate import Gate
from qiskit.circuit.quantumregister import QuantumRegister


[ドキュメント]class MSGate(Gate): """MSGate has been deprecated. Please use ``GMS`` in ``qiskit.circuit.generalized_gates`` instead. Global Mølmer–Sørensen gate. The Mølmer–Sørensen gate is native to ion-trap systems. The global MS can be applied to multiple ions to entangle multiple qubits simultaneously. In the two-qubit case, this is equivalent to an XX(theta) interaction, and is thus reduced to the RXXGate. """
[ドキュメント] def __init__(self, num_qubits, theta, label=None): """Create new MS gate.""" warnings.warn('The qiskit.circuit.library.standard_gates.ms import ' 'is deprecated as of 0.16.0. You should import MSGate ' 'using qiskit.circuit.library.generalized_gates ' 'instead.', DeprecationWarning, stacklevel=2) super().__init__('ms', num_qubits, [theta], label=label)
def _define(self): # pylint: disable=cyclic-import from qiskit.circuit.quantumcircuit import QuantumCircuit from .rxx import RXXGate theta = self.params[0] q = QuantumRegister(self.num_qubits, 'q') qc = QuantumCircuit(q, name=self.name) for i in range(self.num_qubits): for j in range(i + 1, self.num_qubits): qc._append(RXXGate(theta), [q[i], q[j]], []) self.definition = qc

© Copyright 2020, Qiskit Development Team. 最終更新: 2021/06/04

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