mapomatic icon indicating copy to clipboard operation
mapomatic copied to clipboard

Automatic mapping of compiled circuits to low-noise sub-graphs

Results 7 mapomatic issues
Sort by recently updated
recently updated
newest added

-added: detect_fc.py script as well as the necessary scripts collisioncount.py and coupling_tools.py -added part about Frequency Collision script usage to Readme

I have a simple 2-qubit 2-bit dynamic circuit with 1 conditional rotation that executed on ibmq_manila just fine. But, when I add mapomatic I get: CircuitError: "Unknown classical resource specifier:...

```python import mapomatic from qiskit import QuantumCircuit, transpile from qiskit.providers.fake_provider import FakeBelemV2 qc = QuantumCircuit(5) qc.h(0) qc.cx(0, 1) qc.cx(0, 2) qc.cx(0, 3) qc.cx(0, 4) qc.measure_all() backend = FakeBelemV2() trans_qc =...

As an example, consider a logical circuit (circuit A) with logical qubits 0, 1, and 2. Let's assume there's only one two-qubit gate between logical qubits 0 and 2. Therefore,...

Mapomatic currently iterates through a circuit over and over again for each layout. This is quite costly as it is performing a bunch of loops in Python. Instead, I think...

Things are getting too big for relying on the readme anymore.