Some workloads deserve a mission-assurance process rather than a normal experiment workflow. A high-value quantum workload may drive a chemistry decision, an external benchmark, a cryptographic risk assessment, a government deliverable, or an investor-facing claim. The cost of a wrong conclusion can exceed the cost of the QPU time.
Mission assurance combines systems engineering, risk management, evidence discipline, and operational readiness. The systems-engineering guidance in [R164] and NASA systems-engineering references in [R167] provide useful precedent for this style of lifecycle control.
View diagram source
flowchart LR
Mission[Mission intent] --> Requirements[Requirements]
Requirements --> Design[Experiment design]
Design --> Readiness[Readiness review]
Readiness --> Execute[Execute]
Execute --> Verify[Verify evidence]
Verify --> Decision[Decision or claim]
Decision --> Lessons[Lessons learned]What makes a workload high value
A high-value workload is one where ordinary iteration is not enough. It may require independent review, strict evidence retention, controlled execution windows, or predefined abort criteria.
| Trigger | Example | Mission-assurance requirement |
|---|---|---|
| scientific consequence | material candidate selection | independent method review |
| financial consequence | portfolio allocation | classical baseline and sensitivity analysis |
| public consequence | benchmark announcement | claim review and reproducibility archive |
| regulatory consequence | safety or compliance evidence | assurance case and audit trail |
| scarce-resource consequence | reserved QPU campaign | go/no-go gates |
View diagram source
mindmap
root((High-value workload))
Consequence
financial
scientific
public
regulatory
Scarcity
QPU time
staff time
lab window
Irreversibility
public claim
procurement decision
design freezeMission profile
The mission profile describes intent, constraints, acceptance criteria, evidence requirements, and abort conditions.
View diagram source
classDiagram
class MissionProfile {
mission_id
sponsor
decision_to_support
workload_class
required_confidence
acceptable_cost
evidence_level
abort_criteria
}
class WorkloadPlan {
circuits
baselines
target_candidates
shot_budget
analysis_plan
}
class ReadinessRecord {
reviewer
findings
residual_risk
go_no_go
}
MissionProfile --> WorkloadPlan
MissionProfile --> ReadinessRecordReadiness reviews
A readiness review is a structured decision point. It should happen before scarce hardware time is consumed or external commitments are made.
View diagram source
flowchart TB
Draft[Draft mission package] --> Review1[Scientific review]
Draft --> Review2[Platform review]
Draft --> Review3[Security/governance review]
Draft --> Review4[Cost review]
Review1 --> Board[Readiness board]
Review2 --> Board
Review3 --> Board
Review4 --> Board
Board --> Decision{Go?}
Decision -- go --> Execute[Execute mission]
Decision -- no-go --> Remediate[Remediate findings]Readiness questions:
- Is the problem formulation stable?
- Is the classical baseline adequate?
- Are target choices justified?
- Are evidence requirements configured before execution?
- Are abort criteria explicit?
- Are claims pre-bounded?
Hazard analysis
Quantum mission hazards include technical hazards, operational hazards, and communication hazards.
View diagram source
flowchart LR
Hazard[Hazard] --> Cause[Cause]
Cause --> Effect[Effect]
Effect --> Control[Control]
Control --> Residual[Residual risk]| Hazard | Control |
|---|---|
| target changes during campaign | reservation window and target snapshot |
| compiler changes during comparison | pinned compiler profile |
| mitigation overfits noise | raw-count review and independent method |
| baseline too weak | baseline review by non-quantum expert |
| result overcommunicated | pre-approved claim language |
Execution under mission control
High-value execution should be less interactive than exploratory execution. Operators should avoid ad hoc changes unless the mission package defines who can approve them.
View diagram source
sequenceDiagram
participant Lead
participant MissionControl
participant Platform
participant QPU
participant Evidence
Lead->>MissionControl: request execution
MissionControl->>Platform: validate package
Platform->>QPU: run approved workload
QPU-->>Platform: result
Platform->>Evidence: seal evidence package
Evidence-->>MissionControl: package ready
MissionControl-->>Lead: review resultDecision and closure
The mission closes only after the decision is recorded. A result that produces no decision may still be valuable, but the mission record should say what was learned and what changed.
View diagram source
flowchart LR
Evidence[Evidence package] --> Review[Mission review]
Review --> Decision{Decision supported?}
Decision -- yes --> Record[Record decision]
Decision -- no --> Gap[Record evidence gap]
Gap --> Next[Plan next mission]
Record --> Archive[Archive mission package]Operating rule
Treat high-value quantum workloads like missions, not notebook sessions. Define the decision first, then design the experiment, evidence, review, and communication path around that decision.