REVIEW 3 major objections 4 minor 1 cited by
TIGER: Topology-aware Assignment using Ising machines Application to Classical Algorithm Tasks and Quantum Circuit Gates
T0 review · 3 major / 4 minor · reviewed 2026-08-27 · deepseek-v4-flash
Pith's one-line read TIGER claims that topology-aware assignment in both classical and quantum computing can be solved as a QUBO problem on an Ising machine, and that a quantum annealer beats the classical qbsolv solver by up to 15% while cutting…
desk verdict Useful tool-flow paper with a real partitioning idea; the quantum-gate cost model and on-test-set tuning make the headline numbers optimistic, but the work deserves a serious referee. 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 carrying mechanism is the QUBO encoding of the assignment problem, with the quadratic form $E = \sum_i h_i q_i + \sum_{i<j} J_{ij} q_i q_j$; TIGER translates a task-communication graph or quantum circuit graph together with an architecture graph into the coefficients $h_i$ and $J_{ij}$, then reads the binary solution back as a placement. Around that core sit two supporting mechanisms: a dependency-level partitioner that splits the graph into sub-QUBOs and injects virtual qubits encoding previous placements, and the weight-optimization algorithm that scans a preference coefficient to trade off, for quantum circuits, mapping fidelity against the number of SWAPs through $fidelity_{total} = fidelity_{mapping} \cdot fidelity_{swap}^{N_{swaps}}$.
What would settle it
For a small circuit such as 4mod5-v0_18 on the QX2 topology, compute TIGER's placement and then compile that exact placement with an independent routing-aware compiler; if the compiler inserts more SWAPs than graph distance predicts, the distance-only movement model, and with it the 68% claim, is falsified.
Extended reading notes
Core claim
TIGER's central claim is that both flavors of topology-aware assignment can be solved by the same QUBO construction: binary variables represent placing a task or gate on a resource, computation or fidelity costs become qubit weights, communication or SWAP costs become coupler strengths, and assignment constraints become penalty couplings. To fit the limited size and connectivity of current annealers, the task-communication graph is split along dependency levels, with virtual qubits carrying the placement of already-solved predecessor levels into the next sub-QUBO; a separate weight-optimization loop searches a preference coefficient that scales the relative weight of movement versus mapping fidelity. The paper reports that on its classical workloads, the quantum annealer outperforms the classical TABU-search solver by up to 8% on computation cost, up to 25% on communication cost, and up to 15% on total cost. For 48 small IBM benchmark circuits, the SWAP count is reduced by 68% on average relative to the IBM QX optimizer, with zero-SWAP solutions found in 16.7% of circuits on the QX2 topology.
Load-bearing premise
The load-bearing premise is that each two-qubit gate needs exactly as many SWAP operations as the graph distance between the physical qubits its logical endpoints land on, with no extra moves for routing; if other qubits using the same paths force additional SWAPs, the reported savings are too optimistic.
Editorial extensions
If this is right
- Topology-aware assignment in both classical parallel computing and quantum circuit compilation can be expressed in one QUBO format and solved by the same hardware, without a new solver per application domain.
- Dependency-level partitioning plus a classical decomposer lets problems that exceed annealer capacity still be solved, with the quantum annealer delivering better cost than pure classical tabu search on the tested workloads.
- The weight-optimization algorithm provides an automatic way to move a solution along the computation-communication or fidelity-SWAP trade-off curve, which matters when hardware topologies change.
- On the denser IBM QX2 topology, the advantage over the classical IBM QX optimizer is larger than on the sparser Vigo topology, suggesting the hybrid approach pays off most when the assignment search space is complex.
Reading between the lines
- TIGER's distance-only SWAP estimate ignores routing contention, so the reported 68% saving is best read as an upper bound until a routing-aware back-end confirms it.
- The paper itself notes that output edges of each partitioned sub-graph are excluded from the QUBO; on communication-dominated graphs this omitted cost could offset the speed gains from partitioning.
- Because QUBO minimizes a sum of placement costs, the authors' own formulation does not guarantee minimized parallel execution time when makespan is the metric; users should treat reported cost improvements as data-movement improvements unless delay is explicitly modeled.
- The same QUBO-generation and weight-scanning machinery is likely portable to other Ising-style hardware, since the paper presents its results in terms of virtual QUBOs rather than hardware-specific instructions.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces TIGER, a tool that formulates topology-aware task and quantum-gate assignment problems as QUBO instances and solves them with Ising machines (a D-Wave annealer) as well as with the classical qbsolv/TABU solver. The main contributions are a QUBO mapping for task-communication graphs and quantum circuit graphs, a dependency-level partitioning scheme that generates sub-QUBOs with virtual qubits for already-fixed neighbor placements, and a weight optimization algorithm (WOA) that searches a preference coefficient to trade off mapping fidelity and SWAP count. The paper evaluates the tool on three COSMIC workloads for classical task assignment and on 48 reduced 5-qubit IBM benchmark circuits for quantum gate assignment. It reports up to 15% total cost improvement over a classical TABU-based solver for task assignment and a 68% average data-movement reduction compared to the IBM QX optimizer for quantum circuit assignment.
Significance. If the central claims hold, the paper makes a useful engineering contribution: it provides a concrete, open-source tool flow that converts two NP-hard assignment problems into QUBO form, integrates with the D-Wave stack, and demonstrates scalable partitioning that reduces the time-to-solution of the decomposer-solver phase. The QUBO construction is described with enough detail to be reproduced, and the TIGER implementation is publicly available, which are strengths. The paper also proposes a practical weight-tuning loop (WOA) that is relevant beyond the specific QUBO formulation. However, the headline quantum results rest on a simplified SWAP-cost model and on an in-sample evaluation of the weight tuner; these issues need to be resolved before the quantitative claims can be accepted.
major comments (3)
- [Section 4.2, Eq. (2); Section 6.4.2] The quantum objective assumes that the number of SWAPs needed to realize a two-qubit gate equals the graph distance between the physical qubits assigned to its two endpoint tasks. This neglects routing contention: intermediate physical qubits may be occupied by other logical qubits, and extra SWAPs are needed to free or reroute them. The reported final SWAP counts in Figure 10 are therefore estimates under the same model, not necessarily actual SWAP counts after a full routing pass. If TIGER's counts and the IBM QX optimizer's counts are not produced by the same routing procedure, the comparison in Section 6.4.2 is not apples-to-apples. The authors should validate the assignments with a complete routing pass (for example, a standard compiler with explicit SWAP insertion) and report the resulting SWAP counts, or clearly restrict the claims to the distance-based model.
- [Section 6.4.1 and Figure 9] The WOA evaluation is in-sample: for each benchmark circuit, the preference coefficient pref is optimized to maximize fidelity_total on the same circuit for which the improvement is then reported. This guarantees that the reported final fidelity is at least as good as the initial value on that specific circuit, so the reported average improvements (39% for Vigo, 107% for QX2) are a measure of in-sample training performance, not of the algorithm's ability to find a good coefficient for unseen circuits. The paper should evaluate WOA with a held-out procedure (for example, tuning pref on a subset of circuits and evaluating on the rest), or at minimum report the distribution of pref values selected and the sensitivity of the results to the fixed initial value prefbest=0.05.
- [Section 6.2-6.4 and Algorithm 1] Several free parameters are load-bearing for the reported gains but are fixed without sensitivity analysis: the QUBO penalty J is only specified as J >> |h|, the WOA parameters sSpr=2 and sRed=0.9 are hard-coded, and the initial preference coefficient is 0.05, which the paper itself identifies as the boundary of the region producing valid solutions. Because WOA's improvement is one of the central claims, the authors should show how solution quality varies with these parameters and, where possible, justify the chosen values from data rather than by inspection.
minor comments (4)
- [Section 3.5] The sentence 'For other metrics, such as data movement, power consumption, energy, the proposed method provides an optimal solution' is too strong: the method is a heuristic QUBO solver combined with a dependency-level partition that explicitly excludes some edges. Please rephrase to state that the method provides an optimal solution to each sub-QUBO or a locally optimized solution to the overall problem.
- [Abstract and Section 6.4.2] The 68% average data-movement reduction is dominated by the QX2 topology, where TIGER wins in 87.5% of cases, while on Vigo IBM QX actually outperforms TIGER in 41.7% of cases. The abstract should report the per-topology numbers and the variance rather than a single global average.
- [Algorithm 1] The WOA search visits prefleft = pref/sSpr = 0.025 on the first iteration, which is below the 0.05 threshold that the paper states is needed to avoid invalid solutions. This should be either justified as an intentional exploration of the invalid region or prevented by a lower bound.
- [Throughout] There are several typos and formatting issues, including 'restuls' in the abstract, 'different form' in Section 2, and 'the the U.S.' in the acknowledgements. Also, Figure 10 lists the circuit name 4gt11_83 twice.
Circularity Check
Only the WOA self-evaluation reduces to its own search objective; the central TIGER-vs-baseline claims are external and non-circular.
-
fitted input called prediction
[Section 4.3 (Algorithm 1); Section 6.4.1 (Figure 9)]
"To arrive at the optimal solutions either in terms of the resulting number of SWAP gates inserted or gate fidelity, we propose an optimization algorithm. It searches for the coefficient value that maximizes fidelity total. ... In average, WOA improves total fidelity by 39% for IBM Vigo topology. ... In average, WOA improves total fidelity by 107% for IBM QX2 topology."
Algorithm 1 defines fidelitybest as the running maximum of fidelitytotal over the sampled preference coefficients: it is initialized to tiger(pref) and overwritten only when fidelityleft or fidelityright is larger. Section 6.4.1 then reports the difference between this selected best and the initial value as the WOA improvement. Since the search objective is exactly the reported metric, computed on the same circuits, the reported 39% and 107% gains are a restatement of the selection rule rather than an independent validation. The evaluation certifies that hill-climbing on fidelitytotal finds a coefficient with higher fidelitytotal; it does not provide an out-of-sample or externally anchored check of the weight optimization algorithm.
full rationale
The main claimed results are external and non-circular. Section 6.2 compares D-Wave versus classical solver delays, Section 6.3 compares TIGER-generated assignments against TABU-search/qbsolv on the same TCG inputs, and Section 6.4.2 compares final SWAP counts against the IBM QX optimizer; none of these fits a parameter to the reported metric. The 68% data-movement reduction is a direct cost comparison of final SWAP counts, and the SWAP-distance model in Eq. (2) is a modeling simplification, not a circular input. The only self-referential element is the WOA evaluation in Section 6.4.1, where the preference coefficient is chosen by maximizing fidelitytotal and the same fidelitytotal is then reported as improved; that is a fitted-parameter-renamed-as-improvement pattern. Because this sub-evaluation is auxiliary and the central benchmark claims stand independently, the overall circularity score is moderate rather than severe.
Assumptions & free parameters
free parameters (4)
- preference coefficient pref (priority coefficient) =
varies; initial 0.05, WOA search range scaled by sSpr
- search spread sSpr and reduction sRed =
sSpr = 2, sRed = 0.9
- QUBO penalty J for one-task one-PU and one-PU one-task constraints =
not specified, stated only as J >> |h|
- dependency-level cut when tasks exceed PUs =
task ID increment order
assumptions (4)
- domain assumption A task-communication graph is a DAG whose tasks can be partitioned into independent dependency levels, each solved as a separate linear assignment problem.
- domain assumption The objective is additive over tasks and edges, so QUBO sum-minimization is an appropriate proxy; for makespan or delay objectives this is not true.
- ad hoc to paper The SWAP count needed to execute a two-qubit gate equals the graph distance between the physical qubits assigned to its two endpoint gate-tasks, independent of other logical qubit states moving concurrently.
- domain assumption D-Wave 2X plus qbsolv returns low-energy solutions whose quality is representative enough for comparative evaluation.
invented entities (1)
-
virtual qubits in sub-QUBOs
Cite this review
Pith. "Pith review of TIGER: Topology-aware Assignment using Ising machines Application to Classical Algorithm Tasks and Quantum Circuit Gates." pith.science (2026). https://pith.science/paper/CTJF34SB
@misc{pith2026200910151,
author = {Pith},
title = {Pith review of: TIGER: Topology-aware Assignment using Ising machines Application to Classical Algorithm Tasks and Quantum Circuit Gates},
year = {2026},
howpublished = {\url{https://pith.science/paper/CTJF34SB}},
note = {Machine review of arXiv:2009.10151}
}
read the original abstract
Optimally mapping a parallel application to compute and communication resources is increasingly important as both system size and heterogeneity increase. A similar mapping problem exists in gate-based quantum computing where the objective is to map tasks to gates in a topology-aware fashion. This is an NP-complete graph isomorphism problem, and existing task assignment approaches are either heuristic or based on physical optimization algorithms, providing different speed and solution quality trade-offs. Ising machines such as quantum and digital annealers have recently become available and offer an alternative hardware solution to solve this type of optimization problems. In this paper, we propose an algorithm that allows solving the topology-aware assignment problem using Ising machines. We demonstrate the algorithm on two use cases, i.e. classical task scheduling and quantum circuit gate scheduling. TIGER---topology-aware task/gate assignment mapper tool---implements our proposed algorithms and automatically integrates them into the quantum software environment. To address the limitations of physical solver, we propose and implement a domain-specific partition strategy that allows solving larger-scale problems and a weight optimization algorithm that allows tuning Ising model parameters to achieve better restuls. We use D-Wave's quantum annealer to demonstrate our algorithm and evaluate the proposed tool flow in terms of performance, partition efficiency, and solution quality. Results show significant speed-up compared to classical solutions, better scalability, and higher solution quality when using TIGER together with the proposed partition method. It reduces the data movement cost by 68\% in average for quantum circuit assignment compared to the IBM QX optimizer.
Figures
Figures from the paper (7 more)
Forward citations
Cited by 1 Pith paper
-
Quantum Computing Technology Roadmaps and Capability Assessment for Scientific Computing -- An analysis of use cases from the NERSC workload
A NERSC analysis finds that more than 50% of its workload could ultimately benefit from quantum computing and that vendor roadmaps and quantum application requirements are projected to overlap in the next 5 to 10 years.
Reference graph
Works this paper leans on
-
[1]
IEEE Trans- actions on Computers C-30(3), 207–214 (1981)
Bokhari, S.H.: On the mapping problem. IEEE Trans- actions on Computers C-30(3), 207–214 (1981). DOI 10.1109/TC.1981.1675756
-
[2]
Booth, M., Reinhardt, S.P., Roy, A.: Partitioning opti- mization problems for hybrid classical/quantum execu- tion. Tech. rep. (2017)
work page 2017
-
[3]
Society for Industrial and Applied Mathemat- ics, PA, USA (2009)
Burkard, R., Dell’Amico, M., Martello, S.: Assignment Problems. Society for Industrial and Applied Mathemat- ics, PA, USA (2009)
work page 2009
-
[4]
In: 2016 First Interna- tional Workshop on Communication Optimizations in HPC (COMHPC), pp
Chan, C.P., Bachan, J.D., Kenny, J.P., Wilke, J.J., Beck- ner, V.E., Almgren, A.S., Bell, J.B.: Topology-aware per- formance optimization and modeling of adaptive mesh refinement codes for exascale. In: 2016 First Interna- tional Workshop on Communication Optimizations in HPC (COMHPC), pp. 17–28 (2016)
work page 2016
-
[5]
IEEE Transactions on Information Theory pp
Daskalakis, C., Dikkala, N., Kamath, G.: Testing ising models. IEEE Transactions on Information Theory pp. 1–1 (2019). DOI 10.1109/TIT.2019.2932255
-
[6]
Denchev, V.S., Boixo, S., Isakov, S.V., Ding, N., Bab- bush, R., Smelyanskiy, V., Martinis, J., Neven, H.: What is the computational value of finite-range tunneling? Phys. Rev. X 6, 031015 (2016). URL https://link.aps. org/doi/10.1103/PhysRevX.6.031015
-
[7]
developers, N.: Networkx. software for complex networks. https://networkx.github.io
-
[8]
Optimization of Circuits for IBM's five-qubit Quantum Computers
Dueck, G.W., Pathak, A., Mazder Rahman, M., Shukla, A., Banerjee, A.: Optimization of Circuits for IBM’s five-qubit Quantum Computers. arXiv e-prints arXiv:1810.00129 (2018) TIGER: Topology-aware Assignment using Ising machines 15
work page Pith review arXiv 2018
Show all 39 references
-
[9]
http://www.fujitsu.com/global/digitalannealer/ (2019)
Fujitsu: Digital annealer. http://www.fujitsu.com/global/digitalannealer/ (2019)
2019
-
[10]
Quantum Science and Tech- nology 3(4), 045003 (2018)
Giacomo Guerreschi, G., Park, J.: Two-step approach to scheduling quantum circuits. Quantum Science and Tech- nology 3(4), 045003 (2018). DOI 10.1088/2058-9565/ aacf0b
2018 doi
-
[11]
Kluwer Academic Publishers, Norwell, MA, USA (1997)
Glover, F., Laguna, M.: Tabu Search. Kluwer Academic Publishers, Norwell, MA, USA (1997)
1997
-
[12]
ArXiv abs/1811.11538 (2018)
Glover, F.W., Kochenberger, G.A.: A tutorial on formu- lating qubo models. ArXiv abs/1811.11538 (2018)
2018 arXiv
-
[13]
In: Proceedings of the International Conference on Supercomputing, ICS ’11, pp
Hoefler, T., Snir, M.: Generic topology mapping strate- gies for large-scale parallel architectures. In: Proceedings of the International Conference on Supercomputing, ICS ’11, pp. 75–84. ACM, New York, NY, USA (2011). URL http://doi.acm.org/10.1145/1995896.1995909
2011
-
[14]
Hwang, F.K.: The hamiltonian property of linear func- tions. Oper. Res. Lett. 6(3), 125–127 (1987). DOI 10. 1016/0167-6377(87)90024-1. URL http://dx.doi.org/ 10.1016/0167-6377(87)90024-1
1987 doi
-
[15]
https://www.ibm.com/quantum- computing/technology/systems/
IBM: Ibm q systems. https://www.ibm.com/quantum- computing/technology/systems/
-
[16]
the quantum computing company
Inc., D.W.S.: D-wave. the quantum computing company. https://www.dwavesys.com
-
[17]
tech- nology overview
Inc., D.W.S.: The d-wave 2x quantum computer. tech- nology overview. Tech. rep. (2015)
2015
-
[18]
Kadowaki, T., Nishimori, H.: Quantum annealing in the transverse ising model. Phys. Rev. E p. 5355 (1998)
1998
-
[19]
ArXiv e-prints (2017)
King, J., Yarkoni, S., Raymond, J., Ozfidan, I., King, A.D., Nevisi, M.M., Hilton, J.P., McGeoch, C.C.: Quan- tum Annealing amid Local Ruggedness and Global Frus- tration. ArXiv e-prints (2017)
2017
-
[20]
IEEE Transactions on Computers C- 36(4), 433–442 (1987)
Lee, S.Y., Aggarwal, J.K.: A mapping strategy for par- allel processing. IEEE Transactions on Computers C- 36(4), 433–442 (1987)
1987
-
[21]
arXiv e-prints arXiv:1809.02573 (2018)
Li, G., Ding, Y., Xie, Y.: Tackling the Qubit Mapping Problem for NISQ-Era Quantum Devices. arXiv e-prints arXiv:1809.02573 (2018)
2018 arXiv
-
[22]
ArXiv e-prints 94(2), 022337 (2016)
Mandr` a, S., Zhu, Z., Wang, W., Perdomo-Ortiz, A., Katz- graber, H.G.: Strengths and weaknesses of weak-strong cluster problems: A detailed overview of state-of-the-art classical heuristics versus quantum approaches. ArXiv e-prints 94(2), 022337 (2016)
2016
-
[23]
arXiv e-prints arXiv:1807.10749 (2018)
Markov, I.L., Fatima, A., Isakov, S.V., Boixo, S.: Quan- tum Supremacy Is Both Closer and Farther than It Ap- pears. arXiv e-prints arXiv:1807.10749 (2018)
2018 arXiv
-
[24]
Cambridge University Press, New York, NY, USA (2011)
Nielsen, M.A., Chuang, I.L.: Quantum Computation and Quantum Information: 10th Anniversary Edition, 10th edn. Cambridge University Press, New York, NY, USA (2011)
2011
-
[25]
In: Proceedings International Conference on Parallel Processing Workshops, pp
Orduna, J.M., Silla, F., Duato, J.: A new task mapping technique for communication-aware scheduling strate- gies. In: Proceedings International Conference on Parallel Processing Workshops, pp. 349–354 (2001)
2001
-
[26]
In: 2016 IEEE High Performance Extreme Computing Conference (HPEC), pp
Pakin, S.: A quantum macro assembler. In: 2016 IEEE High Performance Extreme Computing Conference (HPEC), pp. 1–8 (2016)
2016
-
[27]
Pakin, S., Reinhardt, S.P.: A survey of programming tools for d-wave quantum-annealing processors. In: R. Yokota, M. Weiland, D. Keyes, C. Trinitis (eds.) High Performance Computing, pp. 103–122. Springer Interna- tional Publishing, Cham (2018)
2018
-
[28]
Foundations of Physics 1(1), 23–33 (1970)
Park, J.L.: The concept of transition in quantum mechan- ics. Foundations of Physics 1(1), 23–33 (1970). DOI 10.1007/BF00708652. URL https://doi.org/10.1007/ BF00708652
1970 doi
-
[29]
In: 2012 2nd IEEE International Conference on Parallel, Distributed and Grid Computing (2012)
Salimi, R., Motameni, H., Omranpour, H.: Task schedul- ing with load balancing for computational grid using nsga ii with fuzzy mutation. In: 2012 2nd IEEE International Conference on Parallel, Distributed and Grid Computing (2012)
2012
-
[30]
Schaeffer, S.E.: Survey: Graph clustering. Comput. Sci. Rev. (2007)
2007
-
[31]
In: Proceedings 9th Heterogeneous Computing Workshop (HCW 2000) (Cat
Taura, K., Chien, A.: A heuristic algorithm for map- ping communicating tasks on heterogeneous resources. In: Proceedings 9th Heterogeneous Computing Workshop (HCW 2000) (Cat. No.PR00556), pp. 102–115 (2000)
2000
-
[32]
In: Ninth Annual Symposium on Combinatorial Search (2016)
Tran, T.T., Do, M., Rieffel, E.G., Frank, J., Wang, Z., O’Gorman, B., Venturelli, D., Beck, J.C.: A hybrid quantum-classical approach to solving scheduling prob- lems. In: Ninth Annual Symposium on Combinatorial Search (2016)
2016
-
[33]
In: 2014 IEEE Computer Society Annual Symposium on VLSI, pp
Wang, Z., Liu, W., Xu, J., Li, B., Iyer, R., Illikkal, R., Wu, X., Mow, W.H., Ye, W.: A case study on the commu- nication and computation behaviors of real applications in noc-based mpsocs. In: 2014 IEEE Computer Society Annual Symposium on VLSI, pp. 480–485 (2014)
2014
-
[34]
In: ICPP, vol
Wayne Bollinger, S., Midkiff, S.: Processor and link as- signment in multicomputers using simulated annealing. In: ICPP, vol. 1, pp. 1–7 (1988)
1988
-
[35]
arXiv e-prints arXiv:1907.02026 (2019)
Wille, R., Burgholzer, L., Zulehner, A.: Mapping Quan- tum Circuits to IBM QX Architectures Using the Mini- mal Number of SWAP and H Operations. arXiv e-prints arXiv:1907.02026 (2019)
2019 arXiv
-
[36]
Nature 299(5886), 802–803 (1982)
Wootters, W.K., Zurek, W.H.: A single quantum cannot be cloned. Nature 299(5886), 802–803 (1982). DOI 10.1038/299802a0. URL http://dx.doi.org/10.1038/ 299802a0
1982 doi
-
[37]
npj Quantum Information 3(1), 49 (2017)
Yamamoto, Y., Aihara, K., Leleu, T., Kawarabayashi, K.i., Kako, S., Fejer, M., Inoue, K., Takesue, H.: Co- herent ising machines—optical neural networks operat- ing at the quantum limit. npj Quantum Information 3(1), 49 (2017). DOI 10.1038/s41534-017-0048-9. URL https://doi.or...
2017 doi
-
[38]
Scientific Reports 5, 11168 EP – (2015)
Zick, K.M., Shehab, O., French, M.: Experimental quan- tum annealing: case study involving the graph isomor- phism problem. Scientific Reports 5, 11168 EP – (2015). URL http://dx.doi.org/10.1038/srep11168
2015 doi
-
[39]
IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems (2018)
Zulehner, A., Paler, A., Wille, R.: An efficient methodol- ogy for mapping quantum circuits to the IBM QX archi- tectures. IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems (2018)
2018
Reviewed August 27, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.