ConceptioArchivearXiv CS
arXiv CSopen access

An Empirical Evaluation of Quantum-Inspired QUBO Methods for Heterogeneous HPC Workflow Mapping and Scheduling

Unknown · 2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
clouddistributedcomputingparallelcomputing
distributed computing, parallel computing, cloud

An Empirical Evaluation of Quantum-Inspired QUBO Methods for Heterogeneous HPC Workflow Mapping and Scheduling Aasish Kumar Sharma

∗ , Christian Boehme

† , Julian Kunkel

∗†

∗ Institute of Computer Science, Georg-August-Universität Göttingen, Germany † GWDG mbH, Göttingen, Germany

arXiv:2605.25350v1 [cs.DC] 25 May 2026

Email: {christian.boehme, julian.kunkel, aasish-kumar.sharma}@gwdg.de Abstract—Heterogeneous HPC workflow scheduling under multiple hard constraints poses a challenging combinatorial optimization problem. Classical exact solvers provide optimal solutions but often face scalability limitations, motivating interest in quantum-inspired Quadratic Unconstrained Binary Optimization (QUBO) formulations as alternative optimization paradigms. This work presents a systematic and reproducible empirical evaluation of QUBO-based scheduling methods against established classical baselines, including MILP, CP-SAT, GA, and HEFT. We evaluate three QUBO variants, single-run simulated annealing, multi-attempt annealing, and a layered QAOA-inspired schedule, together with hybrid enhancement strategies on both groundtruth validation workflows (3-4 tasks) and synthetic scaling instances (5-20 tasks). All solvers are assessed through a unified evaluation pipeline that explicitly tracks feasibility, makespan, and resource utilization under progressive constraint activation and controlled penalty sweeps. Results show that all approaches recover the expected optimal makespan on validation instances, confirming formulation correctness. However, feasibility degradation emerges for specific QUBO variants as constraint interactions intensify, particularly when communication costs are introduced. Penalty sensitivity analysis reveals a sharp feasibility threshold for QUBO-SA, where insufficient penalties consistently fail and moderate-to-strong penalties restore feasibility. Scaling experiments delineate the regimes in which classical solvers and heuristics remain robust across all tested sizes, while QUBO-SA loses feasibility beyond 15 tasks and the QAOA-inspired variant beyond 10 tasks. Overall, the study provides a clear empirical characterization of the reliability boundaries of quantuminspired QUBO formulations for heterogeneous HPC scheduling and identifies the regimes where classical approaches remain preferable under current formulations and solver capabilities. Index Terms—Workflow mapping and scheduling, Mixed Integer Linear Programming (MILP), QUBO formulation, simulated annealing, quantum computing, constraint programming, Heterogeneous Earliest Time First (HEFT), HPC systems

I. I NTRODUCTION Workflow mapping and scheduling in heterogeneous highperformance computing (HPC) systems requires assigning interdependent tasks to diverse compute resources while satisfying precedence, capacity, and feature constraints. This problem is inherently combinatorial and grows rapidly in To appear in: Proc. 41st Int. Conf. ISC High Performance 2026 (ISC26), Hamburg, Germany, June 22 to 26, 2026, IEEE Xplore. Published open access under Creative Commons Attribution 4.0 (CC BY 4.0). This is the authors’ camera-ready version. © 2026 The Authors.

complexity with increasing workflow size and system heterogeneity. Classical exact approaches such as mixed-integer linear programming (MILP) and constraint programming (CPSAT) can guarantee optimality but face practical scalability limits, while heuristic methods such as HEFT offer efficient but non-optimal solutions [1], [2]. Recent advances in quantum and quantum-inspired optimization have renewed interest in quadratic unconstrained binary optimization (QUBO) as an alternative formulation framework. QUBO models are theoretically universal and can encode combinatorial problems using binary variables and quadratic interactions [3]. Such formulations are compatible with quantum annealers, gate-based quantum algorithms such as QAOA, and classical solvers via simulated annealing [4], [5]. However, applying QUBO to realistic scheduling remains challenging. Hard constraints are enforced via penalty terms whose calibration becomes difficult when multiple heterogeneous constraints interact. Much of the literature evaluates QUBO or QAOA on carefully selected instances, with limited systematic comparison to state-of-the-art classical baselines or explicit characterization of feasibility and scalability limits. This work provides a rigorous empirical assessment of quantum-inspired QUBO formulations for heterogeneous HPC mapping and scheduling, focusing on feasibility, penalty sensitivity, and scalability relative to established classical methods. The motivation is not to claim QUBO superiority, but to establish clear empirical evidence on where and when penaltybased QUBO formulations succeed, fail, and what conditions govern the transition between these regimes. Such evidence is essential for the HPC community to make informed decisions about adopting quantum-inspired methods and for guiding future quantum hardware evaluation. A. Research Questions We address the following research questions: RQ1: Under which workload characteristics and constraint structures do QUBO-based methods become competitive with classical mapping and scheduling approaches? RQ2: What trade-offs arise when mapping multi-constraint HPC scheduling problems into penalty-based QUBO formu-

lations, particularly in feasibility and scalability compared to CP-SAT? RQ3: What empirical regimes characterize the reliability limits of QUBO-based solvers for production-scale HPC workflows? RQ4: Do QUBO-based approaches exhibit an operational advantage over classical baselines on this workload class under fixed computational budgets, measured by feasibility, makespan quality, and runtime? Each research question maps to specific experiments and measurable metrics: RQ1 is addressed through progressive constraint activation (Experiment 0), measuring feasibility under increasing constraint complexity. RQ2 is addressed through penalty sensitivity sweeps (Experiment 1), measuring feasibility rate and makespan gap as a function of penalty multiplier. RQ3 is addressed through scaling experiments (Experiment 3), measuring feasibility boundaries across 5 to 20 tasks. RQ4 synthesizes evidence from all experiments, comparing QUBO methods against MILP, CP-SAT, GA, and HEFT on feasibility, makespan quality, and runtime under fixed computational budgets. B. Contributions Our main contributions are: (i) A formally correct QUBO formulation for feature-aware task-node mapping in heterogeneous HPC systems. (ii) A set of enhancement strategies addressing penalty calibration and feasibility, including adaptive penalties and hybrid classical repair. (iii) A unified evaluation pipeline combining QUBO-based mapping with classical schedule derivation for makespan and utilization analysis. (iv) A systematic experimental study spanning validation benchmarks and controlled scaling experiments (5-20 tasks), benchmarking QUBO methods against MILP, CP-SAT, GA, and HEFT. II. BACKGROUND AND R ELATED W ORK A. Workflow Scheduling Fundamentals HPC workflows are commonly modeled as directed acyclic graphs (DAGs), where nodes represent tasks and edges capture precedence and data dependencies. Each task has resource and feature requirements, while compute nodes provide limited capacity and heterogeneous capabilities. Scheduling seeks to minimize makespan and maximize resource utilization subject to five hard constraints: unique assignment, capacity limits, feature compatibility, precedence, and communication costs. B. Classical Scheduling Approaches MILP formulations model scheduling with binary assignment variables and linear constraints, offering provable optimality at the cost of exponential worst-case complexity [6]. Constraint programming, particularly CP-SAT, exploits domain propagation and global constraints to solve moderately sized scheduling problems efficiently [2]. Heuristic approaches such as HEFT compute task priorities and greedily assign tasks, achieving near-optimal performance at low computational cost [1]. Population-based methods like genetic

algorithms provide broader search but incur higher runtime overhead [7]. C. Quantum-Inspired Optimization and QUBO QUBO expresses optimization problems as quadratic functions over binary variables and serves as the native input for quantum annealers and QAOA-based algorithms [3]. Simulated annealing provides a classical approximation, while quantum hardware implementations remain limited in scale and noise tolerance [8]. Penalty-based constraint encoding is central to QUBO modeling but introduces a critical challenge: penalties must be large enough to enforce feasibility without overwhelming objective optimization. Empirical studies consistently observe sharp feasibility thresholds rather than smooth trade-offs, complicating manual tuning [3]. D. QAOA, Multi-Objective Optimization, and Limitations QAOA was introduced as a variational quantum algorithm for approximate optimization [4] and later generalized to the Quantum Alternating Operator Ansatz to better handle constraints [9]. Despite extensive study, no general quantum advantage for QAOA has been established; theoretical results show fundamental limitations for constant-depth circuits [10]. Recent work reports empirical scaling advantages for QAOA on highly structured problems such as LABS under idealized assumptions [11], and extensions to multi-objective optimization have demonstrated Pareto-front approximation capabilities [12]. However, these results rely on problem structures and assumptions that differ substantially from realistic HPC mapping and scheduling, which involves multiple interacting hard constraints and heterogeneous resources. Consequently, recent survey and thesis work emphasize hybrid quantum-classical approaches, where QUBO-based mappings are combined with classical feasibility repair or scheduling decoders, as the most practical near-term pathway [13]. E. Research Gap Existing studies largely evaluate QUBO or QAOA methods in isolation, without rigorous comparison to classical exact and heuristic solvers across increasing constraint complexity. There is a lack of systematic evidence identifying when penaltybased QUBO formulations remain reliable and when classical methods dominate. This work addresses this gap through controlled benchmarking, progressive constraint activation, and scaling experiments, providing an empirical foundation for assessing the realistic role of quantum-inspired optimization in HPC scheduling. III. M ETHODOLOGY A. Problem Decomposition The heterogeneous HPC workflow scheduling problem is decomposed into two coupled subproblems: (i) a task-node mapping problem, which assigns each task to exactly one compute node under resource and feature constraints, and

(ii) a scheduling problem, which determines task start and completion times subject to precedence and communication constraints. In this work, quantum-inspired QUBO formulations are applied exclusively to the task-node mapping problem [14]. Scheduling metrics such as makespan and communicationaware execution time are computed using a classical schedule decoder applied to the resulting mappings. B. Problem Formulation

m n X X

eij xij

Expanding: Passign = λa

Pn

1 −

m X

2 xij 

(6)

j=1

1−2

P

j xij +

P

j,j ′ xij xij ′



Capacity Penalty: m  Pn X

i=1 ri xij

2

cj

j=1

(7)

Compatibility Penalty: Pcompat = λcomp

n X X

xij

(8)

i=1 j:Fi ̸⊆Gj

Dependency Penalty: X X

Pdep = λd

(ti ,tk )

eij xij

(9)

j

Communication Penalty: X X

dik xij xkj ′

(10)

(ti ,tk ) j̸=j ′

Total QUBO Energy: Etotal = Eobj +Passign +Pcapacity +Pcompat +Pdep +Pcomm (11)

∀i ∈ {1, . . . , n}

(2)

j=1

Constraint 2: Capacity Limits Node nj core usage never exceeds cj considering temporal task overlaps. Constraint 3: Feature Compatibility xij = 0



i=1

(1)

Constraint 1: Assignment Uniqueness xij = 1

i=1

Pcomm = λcomm

i=1 j=1

m X

Passign = λa

n X

Pcapacity = λc

Let T = {t1 , . . . , tn } denote tasks and N = {n1 , . . . , nm } denote compute nodes. Task ti requires ri CPU cores, feature set Fi , and executes in time eij on node nj with capacity cj cores and features Gj . Precedence constraints form DAG with edges (ti , tk ) indicating tk depends on ti . Communication time dik applies when dependent tasks execute on different nodes. Binary decision variables xij ∈ {0, 1} indicate whether task ti executes on node nj . Continuous variables si ≥ 0 denote task start times. Makespan M equals maximum task completion time. Mapping Objective: Execution Cost Minimization min

Assignment Penalty:

if Fi ̸⊆ Gj

(3)

Constraint 4: Dependency Precedence sk ≥ si + eij xij + dik (1 − δjj ′ )

∀(ti , tk )

(4)

where δ equals 1 if tasks assigned to same node. Constraint 5: Communication Overhead Communication time dik included when xij xkj ′ = 1 with j ̸= j ′ . If two dependent tasks are assigned to different nodes, a data transfer delay proportional to task data size and internode bandwidth is included. jj ′

The QUBO formulation optimizes only the constrained task-node mapping. Temporal scheduling aspects, including task precedence, communication delays, and makespan, are evaluated separately using a classical scheduling procedure. This design choice avoids introducing time-indexed binary variables, which would significantly increase QUBO problem size and complexity. Penalty Coefficient Estimation: Let emax = maxi,j eij . We estimate: λa = 3 · emax · α

(12)

λc = 3 · emax · α

(13)

λcomp = 100 · emax

(14)

λcomm = 1 · emax · α

(15)

where α is penalty multiplier (default α = 1.0). D. Algorithm Implementations Algorithm 1 to Algorithm 7 shown below:

C. QUBO Formulation for Feature-Aware Task-Node Mapping We encode the problem through binary variables xij and quadratic matrix Q where energy E(x) = xT Qx. Variable indexing maps (i, j) to position v = i · m + j in vector x. Objective Term: Eobj =

n X m X i=1 j=1

eij xij

(5)

E. Enhancement Strategies Strategy 1: Adaptive Penalty Estimation Solve instance with CP-SAT to obtain optimal makespan M ∗ . Estimate penalties as λ = 2.5 · M ∗ rather than 3 · emax . Run QUBO-SA with estimated penalties. This approach uses exact solver analysis to guide penalty calibration. Strategy 2: Hybrid QUBO with Repair Attempt QUBO-SA with weak penalties (α = 0.5) for fast optimization. If solution infeasible, repair using HEFT.

Algorithm 1 MILP Workflow Scheduling 1: Create MILP model 2: Define binary xij for compatible (ti , nj ) 3: Define continuous si , makespan M 4: Minimize M P 5: Add assignment: P j xij = 1 for each ti 6: Add capacity: i ri xij ≤ cj for each nj 7: Add precedence: sk ≥ si + eij xij for (ti , tk ) 8: Add makespan: M ≥ si + eij xij 9: Solve with branch and bound 10: return assignment, makespan, schedule Algorithm 2 CP-SAT Workflow Scheduling 1: Create CP model 2: Define Boolean variables xij for compatible (ti , nj ) pairs 3: Define IntVar starti , endi for each task ti 4: Define optional interval variables for each (ti , nj ) P 5: Add assignment constraint: j xij = 1 for each ti 6: Add cumulative capacity constraints for each node 7: Add precedence constraints: startk ≥ endi for (ti , tk ) 8: Define makespan variable M = maxi endi 9: Minimize M 10: Solve with CP-SAT solver 11: Extract assignment from solution 12: return

makespan, utilization, schedule

This combines optimization quality of QUBO with guaranteed feasibility of classical heuristics. Hybrid approach trades slight complexity for reliability. Strategy 3: Multi Attempt Annealing Execute 20 QUBO-SA runs with randomly varied initial temperatures (80 to 120) and penalty multipliers (1.5 to 3.0). Select solution with lowest energy among feasible results. This automated parameter exploration mimics quantum annealing behavior through classical sampling. Strategy 4: Progressive Penalty Strengthening Start with weak penalty multiplier α = 1.0. If solution infeasible, increase α ← 1.5 · α and retry. Repeat up to 5 iterations until feasible solution found. This iterative approach systematically explores penalty coefficient space. Strategy 5: Two Stage Optimization Stage 1 employs QUBO-SA with strong penalties (α = 3.0) focusing on constraint satisfaction. Stage 2 uses HEFT as fallback if QUBO fails. This separates constraint enforcement from objective optimization. F. Experimental Design We conduct four experiments designed to expose feasibility, robustness, and scaling behavior under increasing constraint complexity. Experiment 0: Progressive Constraint Addition

Algorithm 3 Genetic Algorithm 1: Initialize population of random task-node assignments 2: for generation = 1 to G do 3: Evaluate fitness (negative makespan if feasible) 4: Select parents via tournament selection 5: Create offspring via crossover 6: Apply mutation to offspring 7: Replace population with offspring 8: end for 9: return best individual from final population Algorithm 4 HEFT Workflow Scheduling 1: Compute upward rank ranki for each task recursively 2: Sort tasks by decreasing rank 3: for each task ti in sorted order do 4: best node ← null, best f inish ← ∞ 5: for each node nj compatible with ti do 6: Compute ready time from dependencies 7: Find earliest slot considering capacity 8: Calculate finish time 9: if finish time < best f inish then 10: Update best node, best f inish 11: end if 12: end for 13: Assign ti to best node 14: end for 15: return makespan, utilization, schedule

(Medium 6T1 ). We activate constraints incrementally to identify when feasibility breaks for each solver: (i) objective only, (ii) +assignment uniqueness, (iii) +capacity, (iv) +feature compatibility, (v) +dependencies, (vi) +communication. At each step we record feasibility, makespan, utilization, and runtime for all seven algorithms (MILP, CP-SAT, GA, HEFT, QUBO-SA, QUBO-MultiSA, QUBO-MultiSAOA). Experiment 1: Penalty Sensitivity (Medium 6T). We evaluate penalty calibration difficulty by sweeping the QUBOSA penalty multiplier over {0.05, 0.1, 0.5, 1.0, 2.0, 5.0} with three runs per setting. We report feasibility rate and, for feasible outputs, makespan and utilization. Classical solvers (MILP, CP-SAT, GA, HEFT) and the other QUBO variants are included as reference points. Experiment 2: Ground-Truth Validation (W1/W2). We validate correctness using two small workflows with known optimal makespan of 10.0 s: W1 (3-task chain) and W2 (4-task diamond DAG). All seven algorithms are evaluated to ensure they recover feasibility and the expected makespan [14]. Experiment 3: Scaling (Synthetic 5-20 tasks). We evaluate feasibility and performance at |T | ∈ {5, 10, 15, 20} with three random instances per scale. All seven algorithms are tested under the same limits and evaluation pipeline. We report 1 Medium 6T - a medium-complexity synthetic workflow (6 tasks) that simultaneously activates all five hard constraints and serves as the primary instance for progressive constraint and penalty sensitivity analysis.

Algorithm 5 QUBO Simulated Annealing 1: Construct QUBO matrix Q from objectives and penalties 2: Initialize binary vector x randomly 3: Set temperature T ← Tinit 4: Ebest ← E(x), xbest ← x 5: for iteration = 1 to max iter do 6: Select random index v 7: x′ ← x with x′v = 1 − xv 8: E ′ ← E(x′ )

if E ′ < E OR rand() < exp((E − E ′ )/T ) then x ← x′ , E ← E ′ if E < Ebest then xbest ← x, Ebest ← E end if end if 15: T ← 0.95 · T 16: end for 17: Decode xbest to assignment 18: Decode mapping to schedule using classical scheduler 19: return assignment, makespan, utilization

9: 10: 11: 12: 13: 14:

Algorithm 6 QUBO Quantum Annealing (Multi-Attempt) 1: Initialize best solution, best energy 2: for read = 1 to Nreads do 3: Randomize Tinit ∈ [80, 120] 4: Randomize α ∈ [0.5, 1.5] 5: Run QUBO-SA with randomized parameters 6: if energy ¡ best energy then 7: Update best solution 8: end if 9: end for 10: return best solution from all reads

feasibility rate, makespan (for feasible outputs), utilization, and runtime. G. System Configuration Experiments executed on Ubuntu 24.04 system with Python 3.11. Classical solvers: PuLP 2.8 with CBC, OR-Tools CPSAT 9.11. QUBO-SA parameters: 10000 iterations, initial temperature 100, cooling rate 0.95. GA parameters: population 100, generations 500. Timeout limit 300 seconds for exact solvers. For deterministic configurations (QUBO-SA, CP-SAT, MILP, HEFT), random seeds are fixed for reproducibility. For QUBO-MultiSA and QUBO-MultiSAOA, seeds are intentionally varied across runs as part of controlled stochastic sampling; the base seed is fixed so the entire ensemble is reproducible. All QUBO-based methods were implemented using a custom Python research codebase developed for this study. Simulated annealing was implemented as a classical baseline for QUBO optimization using a standard Metropolis update rule and geometric cooling schedule, with identical formulations shared across all QUBO variants. We emphasize that differences between QUBO-SA, QUBO-MultiSA,

Algorithm 7 QUBO QAOA (Layered Optimization) 1: Initialize penalty multipliers for p layers 2: [α1 , α2 , . . . , αp ] = [0.4, 0.7, 1.0, 1.3] 3: for layer = 1 to p do 4: Set Tinit = 60 + αlayer · 30 5: Run QUBO-SA with layer penalty 6: Store result 7: end for 8: Select best feasible result across layers 9: return best solution

and QUBO-MultiSAOA reflect solution strategies rather than distinct formulations; all methods operate on the same penaltybased QUBO model. IV. E XPERIMENTAL R ESULTS This section reports experimental results for four complementary experiments designed to evaluate correctness, feasibility behavior, penalty sensitivity, and scalability of quantuminspired QUBO methods relative to classical baselines. Unless stated otherwise, all reported makespan and utilization values are derived from a unified classical schedule decoder applied to solver-produced task-node mappings. Feasibility is reported explicitly; objective values are reported only for feasible solutions. a) QUBO Solver Variants.: For clarity, we define three quantum-inspired QUBO solver variants evaluated throughout the experiments, all operating on the same underlying penalty-based QUBO formulation but differing in solution strategy. QUBO-SA denotes a baseline simulated annealing solver applied to a fixed penalty-based QUBO formulation. QUBO-MultiSA extends this baseline by performing multiple independent annealing runs with varied random seeds and selecting the best feasible solution. QUBO-MultiSAOA further augments this approach using structured parameter variation inspired by alternating-operator schedules, aiming to improve robustness under interacting constraints. Unless stated otherwise, all QUBO variants operate on the same underlying formulation and differ only in solution strategy. A. Experiment 0: Progressive Constraint Addition To study feasibility degradation as constraint structure increases, we progressively activate constraints on a Medium 6T instance. Starting from an objective-only formulation, constraints are added in the following order: assignment uniqueness, capacity limits, feature compatibility, task dependencies, and finally communication costs. All solvers remain feasible through the dependency stage. When communication constraints are activated, QUBOMultiSAOA becomes infeasible on this instance, while all remaining solvers retain feasibility. This indicates that communication-aware scheduling constitutes a critical stressor for certain QUBO variants as illustrated in Figure 1. For the fully constrained instance, CP-SAT achieves a makespan of 12.5 s, GA 12.0 s, MILP and HEFT 13.0 s, and

Fig. 2. Boxplots of QUBO-SA penalty sensitivity. Left: feasibility rate by penalty multiplier. Right: makespan distribution across 3 runs per feasible penalty setting, showing moderate stochastic variation.

Fig. 1. Makespan per solver under progressive constraint activation (Experiment 0, Medium 6T instance). Constraints are added incrementally from objective-only to full communication-aware scheduling. Red-brown X marks infeasibility: QUBO-MultiSAOA fails when communication constraints are introduced. At full constraints, CP-SAT achieves 12.5 s, GA 12.0 s, MILP/HEFT 13.0 s, and QUBO-SA/MultiSA 14.5 s. TABLE I P ENALTY C OEFFICIENT S ENSITIVITY ON 6 TASK I NSTANCE

Method

Feasible

Makespan (s)

Runtime (ms)

1/1 1/1 1/1 1/1

13.0 13.0 12.0 13.0

41.2 29.6 12912.2 2.0

QUBO Penalty Sensitivity α = 0.05 0/3 α = 0.10 0/3 α = 0.50 1/3 α = 1.00 3/3 α = 2.00 3/3 α = 5.00 3/3

N/A N/A 13.0 13.3 14.0 13.2

N/A N/A 26.3 25.8 26.6 26.6

QUBO Variants QUBO-MultiSA QUBO-MultiSAOA

12.5 13.3

1058.5 48.2

Classical Baselines MILP CP-SAT GA HEFT

3/3 3/3

QUBO-SA/QUBO-MultiSA 14.5 s. QUBO-MultiSAOA produces no feasible solution and is reported as infeasible. These results demonstrate that QUBO feasibility can degrade as interacting constraints accumulate, even when classical solvers remain robust. B. Experiment 1: Penalty Sensitivity Analysis 1) Test Trail 1: Penalty Coefficient Sensitivity: Table I presents penalty sensitivity analysis demonstrating quantitative calibration requirements. Classical methods (MILP, CPSAT, GA, HEFT) achieve perfect feasibility independent of penalty considerations. QUBO-SA exhibits strong sensitivity to penalty multiplier selection. QUBO-SA exhibits a sharp feasibility transition with α: 0/3 feasible runs at α ∈ {0.05, 0.10}, 1/3 at α = 0.5, and 3/3 for α ≥ 1.0, defining a clear effective calibration regime. QUBOMultiSA and QUBO-MultiSAOA both attain 100% feasibility

through automated multi-attempt and layered parameter exploration (average makespan 12.5 s and 13.3 s respectively), showing that systematic parameter search substantially reduces reliance on manual penalty tuning. Figure 2 presents boxplots of makespan variation across the three runs per penalty setting, illustrating that stochastic variation is moderate once feasibility is achieved. For feasible runs QUBO-SA runtime remains stable at ∼26 ms with memory usage below 0.02 MB. 2) Test Trail 2: Sequential Constraints: Figure 3 visualizes the same penalty sweep, with the feasibility curve (top) and the makespan gap relative to the best feasible result (bottom), making the sharp transition between weak and moderate penalties explicit. These results confirm that penalty calibration is not optional: insufficient penalties lead to systematic infeasibility, while overly strong penalties distort optimization without improving feasibility [9]. C. Experiment 2: Ground-Truth Validation (W1, W2) 1) Validation Test 1 - Standard Sample Test [14]: Table II presents the validation benchmark results for the three baseline implementations (CP-SAT, HEFT, QUBO-SA), including QUBO-SA energy values that confirm proper penalty calibration. CP-SAT achieves perfect correctness on both W1 and W2 with the exact 10.0 s makespan in ∼12 ms, verified optimal through exhaustive state space examination. HEFT likewise reaches the same 10.0 s makespan in under 0.5 ms, demonstrating the efficiency of priority-based greedy heuristics on these carefully constructed validation benchmarks. QUBO-SA achieves 100% feasibility across all 5 runs per instance and recovers the exact 10.0 s optimum on every run, with an average runtime of 2.8 ms (slightly slower than HEFT but substantially faster than CP-SAT). Energy values ranging from −32.4 to −48.0 indicate constraint satisfaction with penalties dominating the objective, confirming proper penalty calibration. The systematic success of CP-SAT (verified optimal), HEFT (greedy upward rank), and QUBO-SA (penalty multiplier α = 1.0) across both linear and branching workflow structures confirms proper encoding of all five hard constraints. 2) Validation Test 2 - Solution Strategy Comparison: Table III compares the baseline methods and the five enhancement strategies on the W2 instance. All approaches reach the

TABLE III S OLUTION S TRATEGY C OMPARISON ON W2 I NSTANCE

Strategy

Feasible

Makespan (s)

Runtime (ms)

Baselines CP-SAT HEFT QUBO-SA

1/1 1/1 5/5

10.0 10.0 10.0

8.3 0.4 3.3

Enhancement Strategies Adaptive Penalty 5/5 Hybrid Repair 5/5 Multi Attempt 5/5 Progressive Penalty 5/5 Two Stage 5/5

10.0 10.0 10.0 10.0 10.0

3.7 2.9 3.0 2.8 2.5

TABLE IV G ROUND - TRUTH VALIDATION ON W1 AND W2 ( EXPECTED MAKESPAN : 10.0 S ).

Fig. 3. Penalty sensitivity of QUBO-SA on the Medium 6T instance (Experiment 1). Top: feasibility rate vs penalty multiplier. Bottom: makespan gap relative to the best feasible result. TABLE II BASELINE VALIDATION WITH QUBO-SA ENERGY VALUES (E XPECTED M AKESPAN : 10.0 S ).

Method

Feasible

Makespan (s)

Runtime (ms)

Energy

W1 Linear (3 tasks) CP-SAT 1/1 HEFT 1/1 QUBO-SA 5/5

10.0 10.0 10.0

15.9 0.44 2.7

N/A N/A -34.0

W2 Diamond (4 tasks) CP-SAT 1/1 HEFT 1/1 QUBO-SA 5/5

10.0 10.0 10.0

8.4 0.39 2.9

N/A N/A -46.9

optimal 10.0 s makespan with 100% feasibility, reflecting that the 4-task / 3-node workflow leaves enough solution space for multiple optimization approaches to converge. 3) Validation Test 3 - Enhancement Strategies: Among the enhancement strategies in Table III, all five (adaptive penalty estimation guided by CP-SAT, hybrid QUBO/HEFT repair, multi-attempt annealing, progressive penalty strengthening, and two-stage optimization) maintain perfect feasibility on W2

Workflow

Solver

Feasible

Makespan (s)

Runtime (ms)

W1 (3 tasks)

MILP CP-SAT GA HEFT QUBO-SA QUBO-MultiSA QUBO-MultiSAOA

1/1 1/1 3/3 3/3 5/5 3/3 2/2

10.0 10.0 10.0 10.0 10.0 10.0 10.0

27.5 8.3 9325.5 1.5 24.6 1004.7 46.2

W2 (4 tasks)

MILP CP-SAT GA HEFT QUBO-SA QUBO-MultiSA QUBO-MultiSAOA

1/1 1/1 3/3 3/3 5/5 3/3 2/2

10.0 10.0 10.0 10.0 10.0 10.0 10.0

31.4 10.9 10878.9 1.6 25.7 1096.6 47.7

with runtimes between 2.5 and 3.7 ms. The uniform success across all methods on this 4 task instance demonstrates that properly formulated QUBO approaches achieve competitive performance with classical methods. Enhancement strategies maintain reliability without significant runtime overhead. Hybrid repair and multi attempt approaches provide automatic parameter adaptation that could prove valuable on more challenging instances. 4) Overall Validation Tests Evaluation: We first validate correctness using two small workflows with analytically known optimal solutions: W1 (3-task linear chain) and W2 (4task diamond DAG). Both instances have an expected optimal makespan of 10.0 s. This experiment serves as a sanity check: failure to recover the optimal makespan indicates a formulation or implementation error rather than an algorithmic limitation. Table IV shows that all seven algorithms, MILP, CPSAT, GA, HEFT, QUBO-SA, QUBO-MultiSA, and QUBOMultiSAOA, produce feasible schedules and recover the expected 10.0 s makespan on both workflows. This confirms that all formulations and decoders are implemented correctly and that QUBO-based approaches are capable of solving small, well-structured instances. D. Experiment 3: Scaling Behavior (5-20 Tasks) Experiment 3 evaluates solver robustness and performance as problem size increases. We consider synthetic workflow

TABLE V S CALING PERFORMANCE ACROSS 5-20 TASKS (3 INSTANCES PER SCALE ). Tasks

Method

Feasible

Makespan (s)

Runtime (ms)

5

CP-SAT HEFT Hybrid Multi Attempt

3/3 3/3 9/9 9/9

9.2 9.1 10.4 10.1

15.0 0.5 3.0 3.0

10

CP-SAT HEFT Hybrid Multi Attempt

3/3 3/3 9/9 9/9

10.6 9.8 13.6 13.0

34.0 1.0 3.0 3.0

15

CP-SAT HEFT Hybrid Multi Attempt

3/3 3/3 9/9 9/9

18.2 17.8 17.8 21.9

36.0 1.0 1.0 4.0

20

CP-SAT HEFT Hybrid Multi Attempt

3/3 3/3 9/9 9/9

17.4 16.5 16.5 20.9

41.0 1.0 1.0 5.0

instances with 5, 10, 15, and 20 tasks, using three random instances per scale and identical solver limits. 1) Scaling Test 1 - Performance Trends: Table V reports aggregate performance metrics on feasibility, average makespan, and runtime i.e., for selected representative methods across all scales. CP-SAT remains feasible on all instances and provides near-optimal schedules, with average makespan increasing from 9.2 s at 5 tasks to 17.4 s at 20 tasks. Runtime grows modestly from 15 ms to 41 ms, remaining practical despite worst-case exponential complexity. HEFT also achieves perfect feasibility at all scales, with makespan closely tracking CP-SAT and consistently minimal runtimes below 1.5 ms. This confirms the strong scalability of greedy heuristics for heterogeneous workflow scheduling. The hybrid QUBO-classical repair strategy maintains perfect feasibility across all scales. Its makespan is slightly higher than CP-SAT at small sizes but converges to HEFTquality solutions at larger scales, while runtime remains below 3 ms. Multi-attempt annealing also preserves feasibility but exhibits higher makespan and increased runtime due to repeated QUBO-SA executions. 2) Scaling Test 2 - Feasibility Regimes: Figure 4 summarizes feasibility trends and solution quality gaps across all seven algorithms. CP-SAT, GA, and HEFT remain feasible at all tested scales. MILP is feasible up to 10 tasks but fails at 15 and 20 tasks, indicating a practical scalability boundary under the configured limits. QUBO-based methods exhibit intermediate behavior. QUBO-SA remains feasible through 15 tasks but fails completely at 20 tasks. QUBO-MultiSA remains feasible through 15 tasks and achieves partial feasibility at 20 tasks. QUBOMultiSAOA becomes infeasible beyond 15 tasks. Among feasible outputs, HEFT and CP-SAT achieve the lowest runtimes, while QUBO variants incur higher overhead and larger makespan gaps at increasing scale. Figure 5 provides boxplots of the makespan gap relative to CP-SAT across scales, confirming that QUBO methods exhibit

Fig. 4. Scaling behavior across 5-20 tasks. Top: feasibility rate as a function of problem size. Bottom: makespan gap relative to CP-SAT for feasible solutions only. Classical solvers remain robust across all scales, while QUBO variants exhibit feasibility degradation as problem size increases.

both lower feasibility and higher solution quality variance at larger problem sizes. Overall, these results show that quantum-inspired QUBO methods remain competitive only in small-to-moderate regimes, whereas classical solvers and heuristics dominate as constraint interactions and problem size increase. V. D ISCUSSION This section interprets the experimental findings with respect to the research questions and evaluates the practical viability of quantum-inspired QUBO approaches for heterogeneous HPC scheduling. A. Correctness and Validation Ground-truth validation on W1 and W2 confirms the correctness of all solver implementations. All seven methods recover the expected optimal makespan of 10.0 s, verifying correct handling of assignment, capacity, feature compatibility, precedence, and communication on small, structured workflows. These results serve strictly as sanity checks: they establish formulation and implementation correctness but do not imply scalability or general performance advantages.

This exposes a fundamental limitation of penalty-based QUBO formulations: constraint enforcement introduces an additional calibration dimension absent in MILP and CP-SAT. As a result, automated or adaptive penalty strategies are essential for practical use. Among the evaluated approaches, hybrid repair is particularly effective, achieving high feasibility with minimal overhead and demonstrating that classical heuristics can complement QUBO optimization without negating its value. D. Scalability and Empirical Regimes (RQ3)

Fig. 5. Scaling behavior across 5 to 20 tasks (3 instances per scale). Top: feasibility rate per solver, using consistent naming with Fig. 4 (QUBOMultiSA = multi-attempt annealing, QUBO-EnsembleSA = layered QAOAinspired). Bottom: per-instance makespan gap relative to CP-SAT for feasible solutions only, showing increasing variance for QUBO variants at larger scales.

Crucially, validation confirms that the QUBO formulation correctly encodes mapping-level constraints, while precedence and communication effects are consistently enforced during classical schedule derivation. This decomposition is essential to maintain tractable QUBO sizes and reflects standard practice in hybrid quantum-classical optimization. B. Impact of Constraint Structure (RQ1) Progressive constraint activation shows that feasibility is strongly governed by constraint structure. All solvers remain feasible through dependency constraints, indicating that precedence alone does not fundamentally challenge QUBObased mapping. In contrast, the introduction of communication constraints causes feasibility loss for specific QUBO variants, most notably QUBO-MultiSAOA on the Medium 6T instance. Communication costs introduce non-local interactions that are difficult to balance using quadratic penalties alone. While classical solvers and heuristics remain robust, QUBO feasibility becomes sensitive to both penalty calibration and constraint interaction. These results demonstrate that QUBO competitiveness is dictated by the constraint mix, not merely by problem size, with communication-heavy workloads constituting a critical stress regime. C. Penalty Calibration and Trade-offs (RQ2) Penalty sensitivity analysis identifies penalty calibration as the primary determinant of QUBO feasibility. Weak penalties systematically yield infeasible solutions, whereas sufficiently strong penalties restore feasibility at the cost of reduced objective sensitivity. The observed sharp feasibility transition indicates threshold behavior rather than a smooth trade-off.

Scaling experiments reveal distinct regimes of solver applicability. CP-SAT and HEFT remain feasible across all tested scales up to 20 tasks, while MILP encounters a practical feasibility boundary between 10 and 15 tasks. QUBO-based methods exhibit intermediate behavior: QUBO-SA remains feasible up to 15 tasks but fails at 20 tasks, QUBO-MultiSA retains partial feasibility at the largest scale, and QUBOMultiSAOA becomes infeasible beyond 15 tasks. E. Empirical Evidence Toward Advantage (RQ4) Across the evaluated instances and solver budgets, we do not observe a consistent advantage of QUBO-based methods over CP-SAT (optimality/robustness) or HEFT (speed). QUBO approaches remain competitive in small-to-moderate regimes when penalties are well calibrated or augmented with repair, but the additional calibration effort and feasibility degradation at larger scales prevent an operational advantage under our current setup. These results indicate that, under current formulations and solvers, QUBO approaches do not surpass classical methods in scalability or robustness. However, they remain competitive in small-to-moderate regimes when supported by enhancement strategies. The absence of a clear quantum advantage is consistent with broader findings in quantum optimization research and reinforces the need for rigorous empirical evaluation. F. Practical Implications for HPC Scheduling In practice, CP-SAT is best suited for small workflows requiring guaranteed optimality, while HEFT remains the most efficient choice for larger workflows where near-optimal solutions suffice. Quantum-inspired QUBO methods combined with hybrid repair occupy an intermediate position, offering feasible solutions with modest overhead and serving as a structured testbed for hybrid quantum-classical mapping and scheduling pipelines. At present, the primary value of QUBO formulations lies not in outperforming classical solvers but in providing a principled pathway toward hybrid quantum-HPC optimization. As quantum hardware matures, such formulations may enable acceleration of the most combinatorially challenging subproblems within larger scheduling workflows. VI. C ONCLUSION This work presents a systematic and reproducible evaluation of quantum-inspired QUBO formulations for heterogeneous

HPC workflow scheduling. By decomposing the problem into task-node mapping and classical schedule derivation, we ensure a mathematically consistent formulation and enable fair comparison with classical exact and heuristic solvers. Ground-truth validation, progressive constraint activation, penalty sensitivity analysis, and scaling experiments jointly characterize the feasibility, robustness, and performance limits of QUBO-based approaches. Properly calibrated QUBO formulations are correct on small instances and remain competitive at moderate scales when supported by enhancement strategies, but classical methods (MILP and CP-SAT for optimality, HEFT for speed) remain dominant across the tested sizes. Quantum-inspired QUBO methods therefore do not yet provide a clear performance advantage under current formulations and solver implementations. They occupy an intermediate regime in which feasibility and solution quality can be maintained at the cost of additional calibration effort, consistent with the broader state of quantum optimization research and underscoring the need for empirical rigor over speculative advantage claims. The primary contribution of this work is a structured methodology for mapping realistic, multi-constraint scheduling problems into QUBO form, evaluating feasibility under increasing constraint complexity, and identifying empirical regimes of competitiveness. This framework establishes a sound foundation for future research on hybrid quantumclassical scheduling systems. Limitations Several limitations apply. (i) Problem sizes (5 to 20 tasks) are small relative to production HPC workflows, which may involve hundreds or thousands of tasks; our conclusions apply only to the tested regime. (ii) All QUBO variants use classical simulated annealing, not quantum hardware; “quantuminspired” refers to the formulation paradigm, not to quantum speedup. (iii) Synthetic scaling workflows may not capture the full diversity of production HPC workloads. (iv) Enhancement strategies that rely on CP-SAT guidance or HEFT repair introduce classical solver dependencies, so the observed feasibility improvements are not attributable to QUBO alone. (v) The evaluation uses a fixed list-scheduling decoder; alternative decoders might shift relative orderings. Applicability to HPC Practice For HPC practitioners, the practical implication is clear: CPSAT and HEFT remain the recommended tools for currentscale scheduling. QUBO formulations are best understood as a structured framework for encoding scheduling constraints in a form compatible with future quantum hardware, rather than as a replacement for classical solvers today. The empirical regimes identified in this work (feasibility thresholds, penalty sensitivity bounds, scaling limits) provide concrete guidance for researchers evaluating quantum-inspired methods on their own scheduling instances.

Future Work Future work will extend the evaluation to larger and more diverse workflows, integrate real-world HPC traces, and explore automated penalty estimation techniques. Evaluation on emerging quantum hardware, including quantum annealers and gate-based processors, will be essential to assess whether genuine quantum advantages can be realized as hardware capabilities mature. ACKNOWLEDGMENT The authors thank the reviewers for valuable feedback improving this work. The authors gratefully acknowledge the grant provided by NHR at NHR-Nord@Göttingen as part of the NHR infrastructure for presenting this research at ISC 2026 Conference, Hamburg, as well as GWDG and University of Göttingen for supporting to conduct this research. All experimental data, benchmark code, and results are publicly available at github.com/AasishKumarSharma/qubo benchmark to enable reproducibility and further research. R EFERENCES [1] H. Topcuoglu, S. Hariri, and M.-Y. Wu, “Performance-effective and low-complexity task scheduling for heterogeneous computing,” IEEE transactions on parallel and distributed systems, vol. 13, no. 3, pp. 260–274, 2002. [Online]. Available: https://doi.org/10.1109/71.993206 [2] P. Laborie, J. Rogerie, P. Shaw, and P. Vilı́m, “Ibm ilog cp optimizer for scheduling: 20+ years of scheduling with constraints at ibm/ilog,” Constraints, vol. 23, no. 2, pp. 210–250, 2018. [Online]. Available: https://doi.org/10.1007/s10601-018-9281-x [3] F. Glover, G. Kochenberger, and Y. Du, “A tutorial on formulating and using qubo models,” arXiv preprint arXiv:1811.11538, 2018. [Online]. Available: https://doi.org/10.48550/arXiv.1811.11538 [4] E. Farhi, J. Goldstone, and S. Gutmann, “A quantum approximate optimization algorithm,” arXiv preprint arXiv:1411.4028, 2014. [Online]. Available: https://doi.org/10.48550/arXiv.1411.4028 [5] T. Albash and D. A. Lidar, “Adiabatic quantum computation,” Reviews of Modern Physics, vol. 90, no. 1, p. 015002, 2018. [Online]. Available: https://doi.org/10.1103/RevModPhys.90.015002 [6] M. Drozdowski, Scheduling for parallel processing. Springer, 2009, vol. 18. [Online]. Available: https://doi.org/10.1007/978-1-84882-310-5 [7] J. Yu and R. Buyya, “Scheduling scientific workflow applications with deadline and budget constraints using genetic algorithms,” Scientific Programming, vol. 14, no. 3-4, pp. 217–230, 2006. [Online]. Available: https://doi.org/10.1155/2006/271608 [8] A. D. King, J. Carrasquilla, J. Raymond, I. Ozfidan, E. Andriyash, A. Berkley, M. Reis, T. Lanting, R. Harris, F. Altomare et al., “Observation of topological phenomena in a programmable lattice of 1,800 qubits,” Nature, vol. 560, no. 7719, pp. 456–460, 2018. [Online]. Available: https://doi.org/10.1038/s41586-018-0410-x [9] S. Hadfield, Z. Wang, B. O’gorman, E. G. Rieffel, D. Venturelli, and R. Biswas, “From the quantum approximate optimization algorithm to a quantum alternating operator ansatz,” Algorithms, vol. 12, no. 2, p. 34, 2019. [Online]. Available: https://doi.org/10.3390/a12020034 [10] S. Boulebnane and A. Montanaro, “Solving boolean satisfiability problems with the quantum approximate optimization algorithm,” PRX Quantum, vol. 5, no. 3, p. 030348, 2024. [Online]. Available: https://doi.org/10.1103/PRXQuantum.5.030348 [11] R. Shaydulin, C. Li, S. Chakrabarti, M. DeCross, D. Herman, N. Kumar, J. Larson, D. Lykov, P. Minssen, Y. Sun et al., “Evidence of scaling advantage for the quantum approximate optimization algorithm on a classically intractable problem,” Science Advances, vol. 10, no. 22, p. eadm6761, 2024. [Online]. Available: https://doi.org/10.1126/sciadv.adm6761 [12] A. Kotil, E. Pelofske, S. Riedmüller, D. J. Egger, S. Eidenbenz, T. Koch, and S. Woerner, “Quantum approximate multi-objective optimization,” Nature Computational Science, pp. 1–10, 2025. [Online]. Available: https://doi.org/10.1038/s43588-025-00873-y

[13] B. Mete, “A novel approach for solving constrained optimization problems with the quantum approximate optimization algorithm,” M.Sc. Thesis, Technical University of Munich, Munich, Germany, May 2023. [Online]. Available: https://mediatum.ub.tum.de/doc/1661426/ [14] A. K. Sharma, C. Boehme, P. Gelß, R. Yahyapour, and J. Kunkel, “Workflow-driven modeling for the compute continuum: An optimization approach to automated system and workload scheduling,” in 2025 IEEE 49th Annual Computers, Software, and Applications Conference (COMPSAC). IEEE Xplore, 2025, pp. 2170–2177. [Online]. Available: https://doi.org/10.1109/COMPSAC65507.2025.00343

Record · ID 224468 · SHA-256 c84c29aebdf41c16
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.