REVIEW 5 major objections 6 minor 1 cited by
HAQA: A Hardware-Guided and Fidelity-Aware Strategy for Efficient Qubit Mapping Optimization
T0 review · 5 major / 6 minor · reviewed 2026-08-16 · deepseek-v4-flash
Pith's one-line read Most quantum circuits never need the whole chip: pruning the coupling graph to a small high-fidelity region makes optimal qubit-mapping solvers up to 632x faster while preserving solution quality.
desk verdict HAQA is a real, useful engineering contribution for solver-based qubit mapping, but its quality guarantee is only verified on the easy circuits, not the hard ones where the speedups are largest. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the final mapping graph $C_f = (P_f, E_f)$ chosen by two steps: Recursive Community Fusion, an agglomerative merging of coupling-graph nodes scored by $F = Q + \omega E$, where $Q$ is modularity and $E$ is the average two-qubit gate fidelity of the merged community, and Community Expansion, which adds $k$ rings of adjacent physical qubits to supply ancillas for swaps. This graph replaces the whole chip in the solver call. Its role is to convert the solver's complexity dependence on chip size $n_P, n_E$ into a dependence on circuit size $n_q$ and maximum degree $d_{\max}$; equations (26)-(29) express the pruned variable, clause, and constraint counts in terms of qubit and edge pruning ratios, and this substitution is the mechanism behind the claimed polynomial acceleration.
What would settle it
Take a circuit and a device where the only high-fidelity route between two frequently interacting logical qubits runs through qubits outside the $k=1$ expanded community, and lower the reported fidelity of all region edges to force that situation. If HAQA's pruned solver then returns a mapping with strictly more swaps, larger depth, or lower Hellinger fidelity than the unpruned solver would find within the same time budget, the paper's claim that pruning preserves solution quality fails.
Extended reading notes
Core claim
HAQA's central claim is that global optimal layout synthesis can be replaced by region-guided synthesis without losing solution quality. Recursive community fusion uses a modularity-plus-fidelity reward $F = Q + \omega E$ to build a hierarchy of connected subgraphs; community expansion then adds one ring of neighbor qubits ($k=1$). The resulting final mapping graph has $n_P \le n_q d_{\max} + 1$ qubits in the worst case and $n_P = n_q + 1$ in the best case, so the solver's hardware-dependent terms drop from $O(n_P)$/$O(n_E)$ to polynomial in $n_q$. On 25 benchmark circuits run against two baseline solvers on 127- and 133-qubit devices, the wrapper reports average speedups above 57x and peak speedups of 632.76x and 286.87x, with circuit depth and swap counts essentially unchanged and Hellinger fidelity up 52.69% and 238.28% in the best cases. The paper also gives a transferable complexity framework: substituting the pruned graph's vertex and edge counts into the solvers' variable and clause formulas predicts the polynomial reduction that the runtime data exhibits.
Load-bearing premise
The central assumption is that a small region of the chip around the circuit's logical qubits, the logical count plus one layer of neighboring qubits, always contains enough high-fidelity routing paths that the optimal global solution loses nothing.
Editorial extensions
If this is right
- Solver-based qubit mapping, previously limited to roughly 50 two-qubit gates before timing out, can be applied to deep circuits on 100+ qubit processors.
- Fidelity information enters the mapping process without changing the solver's discrete formulation, because region selection does the fidelity work before solving begins.
- The acceleration is predicted by complexity analysis: variable and clause counts for Qsynth-v2 drop by up to quadratic polynomial order, and for TB-OLSQ2 by linear polynomial order.
- HAQA is solver-agnostic, so wrapping other SAT or SMT mappers with the same region-pruning procedure should transfer the speedup.
- Mapping quality is preserved in depth and swap count, so users do not trade optimality for speed.
Reading between the lines
- Editorial: The $k=1$ expansion rule tunes a trade-off that likely depends on circuit structure; circuits whose interaction graph is denser than the device's local community may need a larger ring, and the paper's own Table 5 already hints that $k=2$ can hurt. A testable extension is to set $k$ per circuit from the ratio of logical-graph edges to region edges.
- Editorial: Because region selection is guided by an average edge-fidelity score, the method's fidelity gains rely on the accuracy of the device's reported two-qubit error rates; if those drift, the chosen region's advantage may shrink. Re-running HAQA with shuffled or outdated fidelity maps would quantify this sensitivity.
- Editorial: The complexity-transfer argument suggests a broader recipe: any solver-based optimization whose variables scale with the hardware graph can be wrapped by a topology-aware region selector. Applying the same pruning ratios to routing or gate-scheduling problems is a natural next test.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes HAQA, a wrapper around solver-based qubit mappers (Qsynth-v2 and TB-OLSQ2) that first identifies a small region of the hardware coupling graph using a community-detection procedure guided by both topology and two-qubit-gate fidelity, then expands the region by one layer of neighboring qubits, and finally runs the baseline solver only on the induced subgraph. The claimed results are large speedups (up to 632.76x for Qsynth-v2 and 286.87x for TB-OLSQ2), improved Hellinger fidelity on average (up to 52.69% and 238.28% respectively), and roughly preserved depth and swap counts. A complexity analysis argues that the number of solver variables and constraints is reduced from quantities depending on the full hardware graph to quantities depending essentially on the logical qubit count.
Significance. If the claims are fully validated, HAQA would be a practically useful and easily adoptable front-end for exact qubit mappers, and the paper has several strengths: the complexity analysis is explicit and grounded in the published variable/constraint counts of the two baselines, the code is made available, and the speedup trend is large and consistent across two modern IBM architectures. However, the current validation is incomplete: quality metrics are reported only on a subset of circuits, no fidelity-agnostic control isolates the effect of the hardware-guided selection, a central fidelity formula appears incorrect, and a key parameter of the method is not reported. These issues must be addressed before the central claims can be considered established.
major comments (5)
- [Eq. (1)] The fidelity, depth, and swap evaluation is restricted to circuits solvable by both baselines, which excludes adder_n10_transpiled, barenco_tof_5, mod_mult_55, qft_8, and the vqe_8_*_10_100 circuits. These are precisely the instances whose baseline timeouts produce the largest speedups in Tables 6-7. For these circuits no reference depth, swap count, or fidelity is reported, so the paper's claim that the acceleration is not bought by quality loss is unsupported in the very regime where HAQA is asserted to be most valuable. The reported subset also contains clear per-instance degradations, e.g., Table 10 reports -17.8% fidelity for adder_n10_transpiled and -17.02% for barenco_tof_4, Table 8 reports -1.72% for tof_5, and several rows show increased depth or swap count (barenco_tof_4, vqe_8_3_5_100, vqe_8_4_5_100). The authors should report quality metrics for all circuits on which the baseline terminates, and for the timeout instances they should either run the baselines with a larger timeout or provide a bound on the optimality gap introduced by the region pruning.
- [Eq. (1)] The Hellinger fidelity formula is incorrect as written. The standard expression is HF = (1 - (1/2) * sum_i (sqrt(p_op_i) - sqrt(p_on_i))^2)^2, not the expression with (p_op - p_on)^2 that appears in Eq. (1). If Eq. (1) was actually used in the simulations, the reported metric is not Hellinger fidelity; if instead a correct library function was used, the equation should be fixed. Either way, the central fidelity metric must be stated correctly for the results to be reproducible and interpretable.
- [Section 4.2, Eq. (6)] The reward function F = Q + ωE introduces a parameter ω, but the text immediately switches to calling it 'the weight parameter w' and never reports the chosen value or a sensitivity analysis. Since Q and E have different scales and the fidelity-aware region selection is a core claimed contribution, omitting this parameter makes the experiments irreproducible and leaves open the possibility that the results depend strongly on an arbitrary choice. Please specify the value used and provide a brief sensitivity study over ω (including ω = 0 as a connectivity-only control).
- [Section 6.2 (experimental design)] The experiments compare HAQA-wrapped solvers against global solvers, but this conflates the effect of reducing the graph size with the effect of the hardware-guided, fidelity-aware region selection. To support the claim that the community-based and fidelity-aware selection (rather than merely using a smaller graph) is responsible for the speedup and fidelity gains, the authors should add a control that runs the baseline solver on a same-size region chosen by a topology-only criterion (e.g., ω = 0) or by a random connected subgraph. A comparison with the subgraph-identification method of Guo et al. [26] would also help position the contribution.
- [Section 6.1, Table 5] The expansion factor k is tuned on the same benchmark set that is later used for the main evaluation: Table 5 reports eight vqe circuits on IBM Heron, and k = 1 is then adopted for the headline results. This is a form of test-set tuning. The authors should either select k on a separate validation set or demonstrate that the main conclusions are stable across k = 0, 1, 2 for all benchmark circuits and both architectures.
minor comments (6)
- [Section 5, Eqs. (18)-(19)] Both equations are labeled with n^b_var,tbolsq2; the second should be n^w_var,tbolsq2 for the worst case.
- [Algorithm 2] Algorithm 2 uses the variable S in the expansion loop, but S is not defined in that algorithm; it should likely refer to the current region Pr or the growing set Pf. Also, the loop iterates over the fixed edge set Er, so it is unclear how multi-hop expansion is actually implemented.
- [Section 4.2, Eq. (6)] The notation is inconsistent: Eq. (6) uses ω but the surrounding text uses w for the same weight parameter. Please unify the notation.
- [Table 4] The definitions of d_min and d^b_min/d^w_min are never used in the analysis; either use them or remove them to avoid confusion.
- [Section 2.2] There is a typo in the heading 'Sovler-based qubit mapping'; it should be 'Solver-based qubit mapping'.
- [Tables 6-7] The use of '>' in the Acc-Ratio column for timeout baselines should be explained explicitly in the caption; currently the reader has to infer that those entries are lower bounds, while the text later reports exact 'up to' values from non-timeout rows.
Circularity Check
No significant circularity; the speedup derivation follows from algebraic substitution into external solver complexity formulas, and the evaluation caveats are evidence gaps, not circular reductions.
full rationale
The derivation chain is not circular. HAQA's central mechanism is to prune the hardware coupling graph to a region of about nq qubits before invoking the external solvers Qsynth-v2 and TB-OLSQ2; the claimed acceleration is obtained by substituting the region-size bounds of Eqs. (9)-(11) and the pruning ratios of Eqs. (24)-(25) into the baseline complexity formulas of Eqs. (2)-(5), producing Eqs. (26)-(29). This is algebraic variable accounting, not a prediction that is identical to its input: the speedups in Tables 6-7 are measured runtimes, and the reduced variable/constraint counts are derived from explicit nP/nE substitutions. The paper does not rely on self-citations for its load-bearing claims: the baseline solvers are cited from independent groups, the community-detection primitive comes from Newman's classic algorithm, and fidelity is computed from IBM hardware noise data rather than from the solver output. Two evaluation weaknesses are real but are not circularity: (1) the expansion factor k=1 is selected in preliminary experiments on the same benchmark family used for evaluation, which may inflate the apparent gains but does not make any derived quantity equal to a fitted parameter by construction; and (2) Section 6.3 explicitly restricts fidelity/depth/swap comparisons to circuits solvable by both baselines, so solution quality on the timeout instances producing the headline speedups is unverified. That is a missing-evidence or correctness-risk concern, not a definitional or self-citation circularity. Accordingly, the circularity score is 0.
Assumptions & free parameters
free parameters (2)
- Reward weight omega =
not reported
- Expansion factor k =
1 (selected via Table 5)
assumptions (4)
- domain assumption The circuit can be mapped inside a small subgraph: nq <= nm <= nP, and a region of roughly nq+k physical qubits is sufficient.
- ad hoc to paper The reward F = Q + omega*E selects regions that preserve solution quality while improving fidelity.
- domain assumption Degree statistics of the selected subgraph are similar to the global graph (Eqs 12-13), and a chain-like subgraph is the worst case.
- standard math Solver complexity formulas (2)-(5) from [18] and [16] correctly characterize runtime.
Cite this review
Pith. "Pith review of HAQA: A Hardware-Guided and Fidelity-Aware Strategy for Efficient Qubit Mapping Optimization." pith.science (2026). https://pith.science/paper/5PWPLCVA
@misc{pith2026250416468,
author = {Pith},
title = {Pith review of: HAQA: A Hardware-Guided and Fidelity-Aware Strategy for Efficient Qubit Mapping Optimization},
year = {2026},
howpublished = {\url{https://pith.science/paper/5PWPLCVA}},
note = {Machine review of arXiv:2504.16468}
}
read the original abstract
Quantum algorithms rely on quantum computers for implementation, but the physical connectivity constraints of modern quantum processors impede the efficient realization of quantum algorithms. Qubit mapping, a critical technology for practical quantum computing applications, directly determines the execution efficiency and feasibility of algorithms on superconducting quantum processors. Existing mapping methods overlook intractable quantum hardware fidelity characteristics, reducing circuit execution quality. They also exhibit prolonged solving times or even failure to complete when handling large-scale quantum architectures, compromising efficiency. To address these challenges, we propose a novel qubit mapping method HAQA. HAQA first introduces a community-based iterative region identification strategy leveraging hardware connection topology, achieving effective dimensionality reduction of mapping space. This strategy avoids global search procedures, with complexity analysis demonstrating quadratic polynomial-level acceleration. Furthermore, HAQA implements a hardware-characteristic-based region evaluation mechanism, enabling quantitative selection of mapping regions based on fidelity metrics. This approach effectively integrates hardware fidelity information into the mapping process, enabling fidelity-aware qubit allocation. Experimental results demonstrate that HAQA significantly improves solving speed and fidelity while ensuring solution quality. When applied to state-of-the-art quantum mapping techniques Qsynth-v2 and TB-OLSQ2, HAQA achieves acceleration ratios of 632.76 and 286.87 respectively, while improving fidelity by up to 52.69% and 238.28%
Forward citations
Cited by 1 Pith paper
-
Optimized Qubit Routing for Commuting Gates via Integer Programming
A new exact integer-programming formulation, the Token Meeting Problem, provably minimizes swap gates when routing commuting-gate quantum circuits, with NP-hardness and asymptotic bounds.
Reference graph
Works this paper leans on
-
[26]
In: Proceedings of the 2024 International Symposium on Phys- ical Design
Guo, Z.-H., Wang, T .-C.: SMT-Based Layout Synthesis Approaches for Quan- tum Circuits. In: Proceedings of the 2024 International Symposium on Phys- ical Design. ISPD ’24, pp. 235–243. Association for Computing Machinery , New York, NY, USA (2024). https: //doi.org/10.1145/3626184.3633316. https://doi.org/10.1145/3626184.3633316
arXiv 2024
-
[1]
Nature 574(7779), 505–510 (2019)
Arute, F .,et al.: Quantum supremacy using a programmable superconducting processor. Nature 574(7779), 505–510 (2019). https: //doi.org/10.1038/ s41586-019-1666-5. Number: 7779 Publisher: Nature Publishing Group
work page 2019
-
[2]
https://www.ibm.com/ quantum/blog/127-qubit-quantum-processor-eagle
Jerry Chow, Oliver Dial, Jay Gambetta: IBM Quantum breaks the 100-qubit processor barrier | IBM Quantum Computing Blog. https://www.ibm.com/ quantum/blog/127-qubit-quantum-processor-eagle
-
[3]
Padavic-Callaghan, K.: IBM’s ’Condor’ quantum computer has more than 1000 qubits (2023). https: //www.newscientist.com/article/ 2405789-ibms-condor-quantum-computer-has-more-than-1000-qubits /
work page 2023
-
[4]
IBM Launches Its Most Advanced Quantum Comput- ers, Fueling New Scientific Value and Progress towards Quantum Advantage (2024). https: //newsroom.ibm.com/ 2024-11-13-ibm-launches-its-most-advanced-quantum-computers, -fueling-new-scientific-value-and-progress-towards-quantum-advantage
work page 2024
-
[5]
LLC, R..C.: Rigetti Announces Public Availability of Ankaa-2 System with a 2.5x Performance Improvement Compared to Previous QPUs (2024)
work page 2024
-
[6]
Khatri, S., LaRose, R., Poremba, A., Cincio, L., Sornborger, A.T ., Coles, P .J.: Quantum-assisted quantum compiling. Quantum 3, 140 (2019)
work page 2019
-
[7]
Quantum 2, Springer Nature 2021 LATEX template 24 Article Title 79 (2018)
Preskill, J.: Quantum Computing in the NISQ era and beyond. Quantum 2, Springer Nature 2021 LATEX template 24 Article Title 79 (2018). https: //doi.org/10.22331/q-2018-08-06-79. Publisher: Verein zur Förderung des Open Access Publizierens in den Quantenwissenschaften
Show all 28 references
-
[8]
In: 2020 IEEE /ACM International Conference On Computer Aided Design (ICCAD), pp
Tan, B., Cong, J.: Optimal Layout Synthesis for Quantum Computing. In: 2020 IEEE /ACM International Conference On Computer Aided Design (ICCAD), pp. 1–9 (2020). ISSN: 1558-2434. https: //ieeexplore.ieee.org/ document/9256696
2020
-
[9]
In: Proceedings of the 19th ACM International Conference on Computing Frontiers
Ferrari, D., Amoretti, M.: Noise-adaptive quantum compilation strate- gies evaluated with application-motivated benchmarks. In: Proceedings of the 19th ACM International Conference on Computing Frontiers. CF ’22, pp. 237–243. Association for Computing Machinery , New York, NY,...
2022
-
[10]
In: Proceedings of the Twenty-Fourth International Conference on Architectural Support for Programming Languages and Oper- ating Systems
Li, G., Ding, Y., Xie, Y.: Tackling the Qubit Mapping Problem for NISQ- Era Quantum Devices. In: Proceedings of the Twenty-Fourth International Conference on Architectural Support for Programming Languages and Oper- ating Systems. ASPLOS ’19, pp. 1001–1014. Association for Com...
2019
-
[11]
IEEE Transac- tions on Quantum Engineering 1, 1–14 (2020)
Niu, S., Suau, A., Staffelbach, G., Todri-Sanial, A.: A Hardware-Aware Heuristic for the Qubit Mapping Problem in the NISQ Era. IEEE Transac- tions on Quantum Engineering 1, 1–14 (2020). https: //doi.org/10.1109/ TQE.2020.3026544. arXiv:2010.03397 [quant-ph]
2020
-
[12]
Quantum Science and Technology 6(1), 014003 (2020)
Sivarajah, S., Dilkes, S., Cowtan, A., Simmons, W ., Edgington, A., Duncan, R.: t|ket〉: a retargetable compiler for NISQ devices. Quantum Science and Technology 6(1), 014003 (2020). https: //doi.org/10.1088/2058-9565/ ab8e92. Publisher: IOP Publishing
2020 doi
-
[13]
In: 2014 19th Asia and South Pacific Design Automation Conference (ASP-DAC), pp
Wille, R., Lye, A., Drechsler, R.: Optimal SWAP gate insertion for nearest neighbor quantum circuits. In: 2014 19th Asia and South Pacific Design Automation Conference (ASP-DAC), pp. 489–494 (2014). https: //doi.org/ 10.1109/ASPDAC.2014.6742939. ISSN: 2153-697X. https: //ieeex...
2014
-
[14]
In: 2019 56th ACM /IEEE Design Automation Conference (DAC), pp
Wille, R., Burgholzer, L., Zulehner, A.: Mapping Quantum Circuits to IBM QX Architectures Using the Minimal Number of SWAP and H Operations. In: 2019 56th ACM /IEEE Design Automation Conference (DAC), pp. 1–6 (2019). ISSN: 0738-100X. https://ieeexplore.ieee.org/document/8807099
2019
-
[15]
In: 2021 IEEE /ACM International Conference On Computer Aided Design (ICCAD), pp
Tan, B., Cong, J.: Optimal qubit mapping with simultaneous gate absorp- tion. In: 2021 IEEE /ACM International Conference On Computer Aided Design (ICCAD), pp. 1–8 (2021). https: //doi.org/10.1109/ICCAD51958. 2021.9643554. ISSN: 1558-2434. https: //ieeexplore.ieee.org/document...
2021
-
[16]
In: 2023 60th ACM /IEEE Design Automation Conference (DAC), pp
Lin, W .-H., Kimko, J., Tan, B., Bjørner, N., Cong, J.: Scalable Optimal Lay- out Synthesis for NISQ Quantum Processors. In: 2023 60th ACM /IEEE Design Automation Conference (DAC), pp. 1–6 (2023). https://doi.org/10. 1109/DAC56929.2023.10247760. https: //ieeexplore.ieee.org/do...
2023
-
[17]
In: 2023 IEEE /ACM International Conference on Com- puter Aided Design (ICCAD), pp
Shaik, I., van de Pol, J.: Optimal Layout Synthesis for Quantum Circuits as Classical Planning. In: 2023 IEEE /ACM International Conference on Com- puter Aided Design (ICCAD), pp. 1–9 (2023). https: //doi.org/10.1109/ ICCAD57390.2023.10323924. ISSN: 1558-2434. https: //ieeexpl...
2023
-
[18]
In: DROPS-IDN/v2/document/10.4230/LIPIcs.SAT.2024.26 (2024)
Shaik, I., van de Pol, J.: Optimal Layout Synthesis for Deep Quantum Circuits on NISQ Processors with 100 + Qubits. In: DROPS-IDN/v2/document/10.4230/LIPIcs.SAT.2024.26 (2024). https://doi.org/10.4230/LIPIcs.SAT .2024.26. https: //drops.dagstuhl.de/ entities/document/10.4230/L...
2024 doi
-
[19]
Physical Review Letters125(24), 240503 (2020)
Xu, Y., Chu, J., Yuan, J., Qiu, J., Zhou, Y., Zhang, L., Tan, X., Yu, Y., Liu, S., Li, J., Yan, F ., Yu, D.: High-Fidelity, High-Scalability Two-Qubit Gate Scheme for Superconducting Qubits. Physical Review Letters125(24), 240503 (2020). https: //doi.org/10.1103/PhysRevLett.12...
2020 doi
-
[20]
Physical Review Letters 111(20), 200401 (2013)
Reich, D.M., Gualdi, G., Koch, C.P .: Optimal Strategies for Estimating the Average Fidelity of Quantum Gates. Physical Review Letters 111(20), 200401 (2013). https: //doi.org/10.1103/PhysRevLett.111.200401. Pub- lisher: American Physical Society
2013 doi
-
[21]
IEEE Transactions on Computers 70(9), 1363–1373 (2021)
Tan, B., Cong, J.: Optimality Study of Existing Quantum Computing Lay- out Synthesis Tools. IEEE Transactions on Computers 70(9), 1363–1373 (2021). https: //doi.org/10.1109/TC.2020.3009140. Conference Name: IEEE Transactions on Computers
2021
-
[22]
Nature 569(7757), 532–536 (2019)
Huang, W ., Yang, C.H., Chan, K.W ., Tanttu, T ., Hensen, B., Leon, R.C.C., Fogarty , M.A., Hwang, J.C.C., Hudson, F .E., Itoh, K.M., Morello, A., Laucht, A., Dzurak, A.S.: Fidelity benchmarks for two-qubit gates in silicon. Nature 569(7757), 532–536 (2019). https: //doi.org/1...
2019
-
[23]
In: 2020 IEEE International Symposium on Workload Characterization (IISWC), pp
Liu, J., Zhou, H.: Reliability Modeling of NISQ- Era Quantum Comput- ers. In: 2020 IEEE International Symposium on Workload Characterization (IISWC), pp. 94–105 (2020). https: //doi.org/10.1109/IISWC50251.2020. 00018. https://ieeexplore.ieee.org/abstract/document/9251243 Sprin...
2020
-
[24]
IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems 42(5), 1477– 1489 (2023)
Saravanan, V ., Saeed, S.M.: Data-Driven Reliability Models of Quantum Cir- cuit: From Traditional ML to Graph Neural Network. IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems 42(5), 1477– 1489 (2023). https: //doi.org/10.1109/TCAD.2022.3202430. Co...
2023
-
[25]
ACM Trans
Sundermann, C., Raab, H., Heß, T ., Thüm, T ., Schaefer, I.: Reusing d-DNNFs for Efficient Feature-Model Counting. ACM Trans. Softw. Eng. Methodol. 33(8), 208–120832 (2024). https://doi.org/10.1145/3680465
2024 doi
-
[27]
Physical Review E 69(6) (2004)
Newman, M.E.J.: Fast algorithm for detecting community structure in networks. Physical Review E 69(6) (2004). https: //doi.org/10.1103/ PhysRevE.69.066133
2004
-
[28]
https://www.ibm.com/quantum/qiskit Springer Nature 2021 LATEX template Article Title 27 Appendix A Coupling Graphs (a) IBM Eagle
Qiskit | IBM Quantum Computing. https://www.ibm.com/quantum/qiskit Springer Nature 2021 LATEX template Article Title 27 Appendix A Coupling Graphs (a) IBM Eagle. (b) IBM Heron. Fig. A1: The coupling graphs used in the experiment, where the circles represent physical qubits and...
2021
Reviewed August 16, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.