AI-guided hardware-aware quantum circuit layout optimization for Qiskit
Project description
qcompile
qcompile is a quantum layout optimization tool for IBM heavy-hex hardware.
It helps choose better qubit placements before routing begins, so quantum circuits can be compiled with fewer SWAPs, lower depth, and less noise exposure.
What qcompile is
Quantum computers are very sensitive to layout. A circuit can be correct on paper and still perform poorly after transpilation if the qubits are placed badly on the hardware.
qcompile is designed to improve that first placement decision.
It takes a logical circuit graph and searches for a better hardware mapping before the normal compiler has to do the hard work of fixing a bad layout.
Why it helps
A poor initial layout usually causes:
- more SWAP gates
- deeper circuits
- more two-qubit gate usage
- more exposure to hardware noise
- worse execution fidelity
qcompile reduces this pressure by trying to start from a stronger layout. That means the downstream transpiler has less damage to repair.
In practice, this can help when:
- the logical circuit is dense
- the hardware connectivity is limited
- you are targeting IBM heavy-hex devices
- you care about lowering SWAP overhead
- you want better performance on noisy hardware
What makes it different
Most compilers start with a default or heuristic layout and then route from there.
qcompile tries to learn and search for a better mapping first, so the final compilation step begins from a stronger position.
It is useful when you want the compiler to do more than just “make it fit.”
Main benefits
- fewer SWAPs in many cases
- lower circuit depth
- better hardware-aware placement
- improved chance of surviving noisy execution
- more stable layout decisions across runs
- better benchmarking against standard Qiskit transpilation
How to use it
Basic usage
import networkx as nx
from qcompile import generate_optimized_layout
num_qubits = 20
edge_probability = 0.4
G = nx.erdos_renyi_graph(num_qubits, edge_probability, seed=1337)
while not nx.is_connected(G):
G = nx.erdos_renyi_graph(num_qubits, edge_probability)
logical_edges = list(G.edges())
final_layout = generate_optimized_layout(
num_qubits=num_qubits,
logical_edges=logical_edges,
backend_name="ibm_fez",
train_samples=2500,
opt_level=3,
)
print(final_layout)
Parameters
num_qubits
Number of logical qubits in the circuit.
logical_edges
The interaction graph of the logical circuit.
backend_name
The IBM backend used to fetch live hardware data.
train_samples
How many expert layouts to harvest before training.
opt_level
Controls how aggressively the final layout evaluation is done.
1→ fastest2→ balanced3→ strongest evaluation
Example stress test
import time
import networkx as nx
from qcompile import generate_optimized_layout
def run_stress_test():
num_qubits = 20
edge_probability = 0.4
print("=" * 60)
print(f"INITIATING QCOMPILE STRESS TEST: {num_qubits}-QUBIT DENSE GRAPH")
print("=" * 60)
G = nx.erdos_renyi_graph(num_qubits, edge_probability, seed=1337)
while not nx.is_connected(G):
G = nx.erdos_renyi_graph(num_qubits, edge_probability)
logical_edges = list(G.edges())
start_time = time.time()
try:
final_layout = generate_optimized_layout(
num_qubits=num_qubits,
logical_edges=logical_edges,
backend_name="ibm_fez",
train_samples=2500,
opt_level=3,
)
elapsed_minutes = (time.time() - start_time) / 60
print(f"Completed in {elapsed_minutes:.2f} minutes")
print(final_layout)
except Exception as e:
print(f"Stress test failed: {e}")
if __name__ == "__main__":
run_stress_test()
When to use it
Use qcompile when your circuit is hard to place on hardware and you want a smarter starting layout before full transpilation.
It is especially useful for:
- dense interaction graphs
- medium-sized circuits that struggle on heavy-hex topology
- benchmarking compiler quality
- comparing layout quality across transpilers
- experimenting with hardware-aware quantum compilation
Output
The function returns a final layout mapping that can be used as the starting point for compilation on IBM hardware.
You can then compare the result against standard Qiskit routing using metrics like:
- SWAP count
- circuit depth
- estimated success probability
Why this matters
On noisy quantum hardware, the first layout decision can make or break the run.
A better initial layout means the compiler spends less time fixing avoidable mistakes. That is the main idea behind qcompile.
Installation
pip install qiskit qiskit-ibm-runtime networkx numpy torch torch-geometric joblib
You also need IBM Quantum access configured:
from qiskit_ibm_runtime import QiskitRuntimeService
QiskitRuntimeService.save_account(token="YOUR_IBM_API_TOKEN", overwrite=True)
License
Add your project license here.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file qcompile-0.1.16.tar.gz.
File metadata
- Download URL: qcompile-0.1.16.tar.gz
- Upload date:
- Size: 15.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cea134aa916194510d913b092aae6dfc387adc5fac2288fc33aff9b447afd80d
|
|
| MD5 |
98ec4fe36d374172a289e70cc38307f1
|
|
| BLAKE2b-256 |
ad9593857c7e8cc9c2a48bd635e42a062fc6ba9d66dc9b76d243730575a60858
|
File details
Details for the file qcompile-0.1.16-py3-none-any.whl.
File metadata
- Download URL: qcompile-0.1.16-py3-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73a9acde32fd2b88440256ae18d3681eeb2eaefee377aebe03416e8247ec07c5
|
|
| MD5 |
bffd358d43deb727141fb1fd9ef39e1f
|
|
| BLAKE2b-256 |
485bffb492e027f860bde1ab1b8b51295c797d80a56944a4511519e744259c7f
|