Replay, not live silicon. These demos run hardware-measured constants from IBM Fez, Torino, Marrakesh and Rigetti Ankaa-3 in your browser. No quantum processor is contacted and no shots are spent. The measured numbers are real; the run in front of you is a replay of them. Ask for a walkthrough on the live engine.
Track quantum error correction quality in real time: decisions, correlations, and abort triggers as they happen
0.0%
0.0%
VETO: 0 | DEFER: 0
0
Avg conf: 0%
IDLE
No session active
ExecutionMonitor receives shot-level decisions from SafetyGate in real time. Each shot is classified as ALLOW, DEFER, or VETO.
Correlated errors (crosstalk, leakage, cosmic rays) are detected and flagged in real time. The failure-risk score tracks overall session health.
The abort policy engine evaluates quality metrics against configurable thresholds in real time. When the session drifts outside policy, the circuit breaker opens and execution halts automatically, so spend stops on shots that are no longer producing usable results.
from qubitboost_sdk import (
SafetyGateV3, ExecutionMonitor, AbortPolicyEngine,
MonitoringSession, AbortPolicyConfig,
)
# Configure SafetyGate with real-time monitoring
gate = SafetyGateV3.from_calibration("ibm_fez", distance=5)
monitor = ExecutionMonitor(
session=MonitoringSession(backend="ibm_fez"),
abort_policy=AbortPolicyConfig.default_enterprise(),
)
# Stream decisions with automatic abort protection
with monitor.track() as session:
for shot in hardware_shots:
result = gate.evaluate(shot)
session.record(result)
# AbortPolicyEngine evaluates rules on every decision
if session.aborted:
print(f"Aborted after {session.shots_processed} shots")
print(f"Reason: {session.abort_reason}")
break
print(f"Block rate: {session.block_rate:.1%}")
print(f"Budget saved: ${session.cost_saved:.2f}")Real-time monitoring with automatic abort available in the QubitBoost SDK. Integrates with EventBus for streaming telemetry and OpenTelemetry for observability.