Source code for qiskit.transpiler.passes.utils.check_map
# This code is part of Qiskit.
#
# (C) Copyright IBM 2017, 2018.
#
# 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.
"""Check if a DAG circuit is already mapped to a coupling map."""
from qiskit.transpiler.basepasses import AnalysisPass
[docs]class CheckMap(AnalysisPass):
"""Check if a DAG circuit is already mapped to a coupling map.
Check if a DAGCircuit is mapped to `coupling_map` by checking that all
2-qubit interactions are laid out to be physically close, setting the
property ``is_swap_mapped`` to ``True`` or ``False`` accordingly.
"""
def __init__(self, coupling_map):
"""CheckMap initializer.
Args:
coupling_map (CouplingMap): Directed graph representing a coupling map.
"""
super().__init__()
self.coupling_map = coupling_map
[docs] def run(self, dag):
"""Run the CheckMap pass on `dag`.
If `dag` is mapped to `coupling_map`, the property
`is_swap_mapped` is set to True (or to False otherwise).
Args:
dag (DAGCircuit): DAG to map.
"""
self.property_set["is_swap_mapped"] = True
if self.coupling_map is None:
return
qubit_indices = {bit: index for index, bit in enumerate(dag.qubits)}
for gate in dag.two_qubit_ops():
if dag.has_calibration_for(gate):
continue
physical_q0 = qubit_indices[gate.qargs[0]]
physical_q1 = qubit_indices[gate.qargs[1]]
if self.coupling_map.distance(physical_q0, physical_q1) != 1:
self.property_set["check_map_msg"] = "{}({}, {}) failed".format(
gate.name,
physical_q0,
physical_q1,
)
self.property_set["is_swap_mapped"] = False
return