Pitt-JonesLab / mirror-gates

mirror-decomposition integrated routing for algorithm gate efficiency

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MIRAGE

Quantum Circuit Decomposition and Routing Collaborative Design using Mirror Gates

ecosystem Tests Format Check DOI Open In Colab

πŸ“Œ Project Overview

  • Objective: Optimize quantum transpilation by unifying the layout and routing stages with gate decomposition.
  • Strategy: Employ the mirror gate of $\texttt{U}$, represented as $\texttt{U} \cdot \texttt{SWAP}$, to achieve more cost-efficient routing without altering decomposition costs. In certain cases, it can even reduce decomposition expenses.

🌟 Key Features

  • Mirage Algorithm: Defined in src/mirror_gates/mirage.py

image

πŸ“Š Results & Comparisons

  • Experiments: Detailed in src/notebooks/results
  • Findings: Our methodology considerably reduces circuit depth and swap count when compared with conventional techniques across multiple topologies.

image

πŸš€ Getting Started

To use as a standalone transpiler plugin, install using

pip install -e git+https://github.com/Pitt-JonesLab/mirror-gates#egg=mirror-gates[core]

Then get started by exploring the main demo located at src/mirror_gates/notebooks/bench.ipynb.

πŸ’»πŸ’ Usage

from qiskit.transpiler import CouplingMap
coupling_map = CouplingMap.from_grid(6, 6)

1. Use as a Qiskit-Plugin

Integrate MIRAGE into your existing transpilation pipeline:

from qiskit import transpile
mirage_qc = transpile(
              qc, # input circuit
              optimization_level = 3, # default: Qiskit's highest level
              coupling_map=coupling_map,
              basis_gates= ["u", "xx_plus_yy", "id"],
              routing_method="mirage",
              layout_method="sabre_layout_v2",
)

2. Use Mirage as a complete pass manager.

Handles all pre-, post-processing stages described in our paper:

from mirror_gates.pass_managers import Mirage
mirage = Mirage(
            coupling_map, # coupling map
            name="Mirage-$\sqrt{\texttt{iSWAP}}$", # transpile_benchy and figure labels)
            parallel=True, # run trials in parallel or serial
            cx_basis=False, # turning on sets CNOT as the basis gate,
            # (can take arbitrary basis but parameters are not configured that way yet)
            cost_function="depth", # switch to "basic" for counting SWAPs
            fixed_aggression=None, # force aggression level on all iterations
            layout_trials=None, # how many independent layout trials to run (20)
            fb_iters=None, # how many forward-backward iterations to run (4)
            swap_trials=None, # how many independent routing trials to run (20)
            no_vf2=False, # keep False to use VF2 for finding complete layouts
            logger=None, # from logging moduel
)
mirage_qc = mirage.run(circuit=qc)

[!WARNING] [!WARNING] In the current version of Qiskit, there's no direct support for ( \sqrt{iSWAP} ) as a basis gate. As a workaround, I've been using XX+YY, which provides a partial solution but isn't fully optimized.

However, there's an ongoing pull request in Qiskit that introduces a new gate, SiSwapGate, which represents ( \sqrt{iSWAP} ). This PR also brings in optimized decomposition methods for the gate. I've previously implemented a similar logic, but the PR suggests there might have been some inaccuracies in the paper I referenced.

To benefit from the advancements in the PR, I'm temporarily using a fork of the PR in this project. By leveraging the fork, when you use the SiSwapGate, you'll notice a more efficient decomposition compared to the XX+YY workaround.

Please note that this is a provisional solution. I'll transition back to the main Qiskit repository once the PR is merged and the SiSwapGate with its decomposition methods becomes officially available.

πŸ“‹ Prerequisites

  • Monodromy Dependency: This needs lrs. To install:

    • sudo apt install lrslib
  • Package Dependencies: By default, two other packages are dependencies:

  • ⚠️ Setup: Running make init sets up the required environment and tools. It also clones required repositories.

    • Optional: If you want to leverage the additional features from transpile_benchy, especially its submodules for circuit benchmarking, run make dev-init. This will clone and set up transpile_benchy with its complete functionalities.

Dive Deeper into the Code πŸ’»πŸ’

  • Please report any issues. (Currently the most unstable part is related to the parallel processing. 😺)
  • The main logic of the MIRAGE pass is in src/mirror_gates/mirage.py which includes ParallelMirage, and the class Mirage, a subclass of qiskit.transpiler.passes.SabreSwap to handle serial passes.
  • The main pass manager is defined in src/mirror_gates/pass_managers.py.
  • Circuit benchmarks are defined as .txt files in src/mirror_gates/circuits/. These are loaded into a transpile_benchy.Library object.
  • For more details, see code documentation or contact me.

Additional utility commands available in the Makefile:

  • make format: Formats the codebase.
  • make clean: Cleans up temporary and unnecessary files.
  • make test: Runs tests to ensure code functionality.
  • For more information about the repository structure, visit my python-template.

πŸ“š Reference

@article{McKinney_MIRAGE_Quantum_Circuit_2023,
    author = {McKinney, Evan and Hatridge, Michael and Jones, Alex K},
    doi = {10.48550/arXiv.2308.03874},
    journal = {arXiv preprint arXiv:2308.03874},
    title = {{MIRAGE: Quantum Circuit Decomposition and Routing Collaborative Design using Mirror Gates}},
    year = {2023}
}

About

mirror-decomposition integrated routing for algorithm gate efficiency

License:MIT License


Languages

Language:Jupyter Notebook 98.7%Language:Python 1.3%Language:Makefile 0.0%Language:OpenQASM 0.0%