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

Add LookaheadSwap condition to prevent hangs #4112

Merged
merged 4 commits into from
Apr 9, 2020
Merged
Show file tree
Hide file tree
Changes from all 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
60 changes: 54 additions & 6 deletions qiskit/transpiler/passes/routing/lookahead_swap.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

"""Map input circuit onto a backend topology via insertion of SWAPs."""

import logging
from copy import deepcopy

from qiskit.circuit.quantumregister import QuantumRegister
Expand All @@ -24,6 +25,8 @@
from qiskit.transpiler.layout import Layout
from qiskit.dagcircuit import DAGNode

logger = logging.getLogger()


class LookaheadSwap(TransformationPass):
"""Map input circuit onto a backend topology via insertion of SWAPs.
Expand Down Expand Up @@ -102,12 +105,22 @@ def run(self, dag):
gates_remaining = ordered_virtual_gates.copy()

while gates_remaining:
logger.debug('Top-level routing step: %d gates remaining.',
len(gates_remaining))

best_step = _search_forward_n_swaps(current_layout,
gates_remaining,
self.coupling_map,
self.search_depth,
self.search_width)

if best_step is None:
raise TranspilerError('Lookahead failed to find a swap which mapped '
'gates or improved layout score.')

logger.debug('Found best step: mapped %d gates. Added swaps: %s.',
len(best_step['gates_mapped']), best_step['swaps_added'])

current_layout = best_step['layout']
gates_mapped = best_step['gates_mapped']
gates_remaining = best_step['gates_remaining']
Expand All @@ -133,23 +146,28 @@ def _search_forward_n_swaps(layout, gates, coupling_map, depth, width):
depth (int): Number of SWAP layers to search before choosing a result.
width (int): Number of SWAPs to consider at each layer.
Returns:
dict: Describes solution step found.
optional(dict): Describes solution step found. If None, no swaps leading
to an improvement were found. Keys:
layout (Layout): Virtual to physical qubit map after SWAPs.
swaps_added (list): List of qargs of swap gates introduced.
gates_remaining (list): Gates that could not be mapped.
gates_mapped (list): Gates that were mapped, including added SWAPs.

"""
gates_mapped, gates_remaining = _map_free_gates(layout, gates, coupling_map)

base_step = {'layout': layout,
'swaps_added': 0,
'swaps_added': [],
'gates_mapped': gates_mapped,
'gates_remaining': gates_remaining}

if not gates_remaining or depth == 0:
return base_step

possible_swaps = coupling_map.get_edges()
# Include symmetric 2q gates (e.g coupling maps with both [0,1] and [1,0])
# as one available swap.
possible_swaps = set(tuple(sorted(edge))
for edge in coupling_map.get_edges())

def _score_swap(swap):
"""Calculate the relative score for a given SWAP."""
Expand All @@ -158,22 +176,52 @@ def _score_swap(swap):
return _calc_layout_distance(gates, coupling_map, trial_layout)

ranked_swaps = sorted(possible_swaps, key=_score_swap)
logger.debug('At depth %d, ranked candidate swaps: %s...',
depth, [(swap, _score_swap(swap)) for swap in ranked_swaps[:width*2]])

best_swap, best_step = None, None
for swap in ranked_swaps[:width]:
for rank, swap in enumerate(ranked_swaps):
trial_layout = layout.copy()
trial_layout.swap(*swap)
next_step = _search_forward_n_swaps(trial_layout, gates_remaining,
coupling_map, depth - 1, width)

if next_step is None:
continue

# ranked_swaps already sorted by distance, so distance is the tie-breaker.
if best_swap is None or _score_step(next_step) > _score_step(best_step):
logger.debug('At depth %d, updating best step: %s (score: %f).',
depth, [swap] + next_step['swaps_added'], _score_step(next_step))
best_swap, best_step = swap, next_step

if (
rank >= min(width, len(ranked_swaps)-1)
and best_step is not None
and (
len(best_step['gates_mapped']) > depth
or len(best_step['gates_remaining']) < len(gates_remaining)
or (_calc_layout_distance(best_step['gates_remaining'],
coupling_map,
best_step['layout'])
< _calc_layout_distance(gates_remaining,
coupling_map,
layout)))):
# Once we've examined either $WIDTH swaps, or all available swaps,
# return the best-scoring swap provided it leads to an improvement
# in either the number of gates mapped, number of gates left to be
# mapped, or in the score of the ending layout.
break
else:
return None

logger.debug('At depth %d, best_swap set: %s.',
depth, [best_swap] + best_step['swaps_added'])

best_swap_gate = _swap_ops_from_edge(best_swap, layout)
return {
'layout': best_step['layout'],
'swaps_added': 1 + best_step['swaps_added'],
'swaps_added': [best_swap] + best_step['swaps_added'],
'gates_remaining': best_step['gates_remaining'],
'gates_mapped': gates_mapped + best_swap_gate + best_step['gates_mapped'],
}
Expand Down Expand Up @@ -248,7 +296,7 @@ def _score_step(step):
"""Count the mapped two-qubit gates, less the number of added SWAPs."""
# Each added swap will add 3 ops to gates_mapped, so subtract 3.
return len([g for g in step['gates_mapped']
if len(g.qargs) == 2]) - 3 * step['swaps_added']
if len(g.qargs) == 2]) - 3 * len(step['swaps_added'])


def _copy_circuit_metadata(source_dag, coupling_map):
Expand Down
46 changes: 46 additions & 0 deletions test/python/transpiler/test_lookahead_swap.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@
"""Test the LookaheadSwap pass"""

import unittest
from qiskit.dagcircuit import DAGCircuit
from qiskit.transpiler.passes import LookaheadSwap
from qiskit.transpiler import CouplingMap
from qiskit.converters import circuit_to_dag
from qiskit import ClassicalRegister, QuantumRegister, QuantumCircuit
from qiskit.test import QiskitTestCase
from qiskit.test.mock import FakeMelbourne


class TestLookaheadSwap(QiskitTestCase):
Expand Down Expand Up @@ -188,6 +190,50 @@ def test_lookahead_swap_higher_depth_width_is_better(self):

self.assertLessEqual(num_swaps_2, num_swaps_1)

def test_lookahead_swap_hang_in_min_case(self):
"""Verify LookaheadSwap does not stall in minimal case."""
# ref: https://github.com/Qiskit/qiskit-terra/issues/2171

qr = QuantumRegister(14, 'q')
qc = QuantumCircuit(qr)
qc.cx(qr[0], qr[13])
qc.cx(qr[1], qr[13])
qc.cx(qr[1], qr[0])
qc.cx(qr[13], qr[1])
dag = circuit_to_dag(qc)

cmap = CouplingMap(FakeMelbourne().configuration().coupling_map)

out = LookaheadSwap(cmap, search_depth=4, search_width=4).run(dag)

self.assertIsInstance(out, DAGCircuit)

def test_lookahead_swap_hang_full_case(self):
"""Verify LookaheadSwap does not stall in reported case."""
# ref: https://github.com/Qiskit/qiskit-terra/issues/2171

qr = QuantumRegister(14, 'q')
qc = QuantumCircuit(qr)
qc.cx(qr[0], qr[13])
qc.cx(qr[1], qr[13])
qc.cx(qr[1], qr[0])
qc.cx(qr[13], qr[1])
qc.cx(qr[6], qr[7])
qc.cx(qr[8], qr[7])
qc.cx(qr[8], qr[6])
qc.cx(qr[7], qr[8])
qc.cx(qr[0], qr[13])
qc.cx(qr[1], qr[0])
qc.cx(qr[13], qr[1])
qc.cx(qr[0], qr[1])
dag = circuit_to_dag(qc)

cmap = CouplingMap(FakeMelbourne().configuration().coupling_map)

out = LookaheadSwap(cmap, search_depth=4, search_width=4).run(dag)

self.assertIsInstance(out, DAGCircuit)


if __name__ == '__main__':
unittest.main()