mapomatic icon indicating copy to clipboard operation
mapomatic copied to clipboard

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

Results 11 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.

This ReadMe text is corrected using the latest Qiskit version.

Hi, With the new qiskit 2.0 release, an error is thrown when importing this repo. I noticed that the error comes from an old import of BackendV1 from `qiskit.providers.backend`, which...

Hi, the mm.evaluate_layouts(..) returns your scores for all mapping you found. I'd like to see your score for the the layout which Qiskit would give me, using generate_preset_pass_manager() This layout...