Skip to main content

A Qiskit transpiler plugin for BIPMapping

Project description

Qiskit BIPMapping Plugin

This repository contains a standalone routing stage to use the BIPMapping routing pass. The BIP mapping pass solves the routing and layout problems as a binary integer programming (BIP) problem. The algorithm used in this pass is described in:

G. Nannicini et al. "Optimal qubit assignment and routing via integer programming." arXiv:2106.06446

This plugin depends on CPLEX to solve the BIP problem. While a no-cost version of CPLEX is available (and published on PyPI) this has limits set on the size of the problems it can solve which prevents it from being used except for very small quantum circuits. If you would like to use this transpiler pass for larger circuits a CPLEX license will be required.

Install and Use plugin

To use the unitary synthesis plugin first install qiskit terra with the pull request:

pip install qiskit-bip-mapper

To install the plugin package. As part of the install process pip will install the no-cost version of CPLEX from PyPI automatically. However, if you're going to use the qiskit-bip-mapper plugin for running transpile() on circuits more than a couple qubits or with more than handful of 2 qubit gates you will likely need to install the commercial version of CPLEX.

Using BIPMapping pass

Once you have the plugin package installed you can use the plugin via the routing_method="bip" argument on Qiskit's transpile() function. For example, if you wanted to use the BIPMapping method to compile a 15 qubit quantum volume circuit for a backend you would do something like:

from qiskit import transpile
from qiskit.circuit.library import QuantumVolume
from qiskit.providers.fake_provider import FakePrague

qc = QuantumVolume(15)
qc.measure_all()
backend = FakePrague()

transpile(qc, backend, routing_method="bip")

Authors and Citation

The qiskit-bip-mapper is the work of many people who contribute to the project at different levels. Additionally, the plugin was originally developed as part of the Qiskit project itself and you can see the development history for it here:

If you use qiskit-bip-mapper in your research, please cite our paper as per the included BibTeX file file.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qiskit-bip-mapper-0.1.0.tar.gz (22.1 kB view hashes)

Uploaded Source

Built Distribution

qiskit_bip_mapper-0.1.0-py3-none-any.whl (23.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page