A comprehensive and modular software suite for the full-stack benchmarking and characterization of quantum computing systems, from physical hardware to application-level performance.
Project description
ErrorGnoMark (EGM) v3.0.3
A modular, full-stack platform for quantum hardware benchmarking, characterization, and lifecycle management.
What is EGM?
ErrorGnoMark combines error + gno (to know/diagnose) + mark (to benchmark). It is a comprehensive toolkit that covers the entire quantum characterization workflow — from circuit generation and execution, through protocol-specific analysis, to structured data persistence and temporal querying.
Key Capabilities
- 20+ benchmark protocols — XEB, RB, IRB, MRB, PRB, CSB, QV, SPB, T1/T2, Rabi, SPAM, process/state tomography, and more
- Unified analysis dispatch — One entry point routes to protocol-specific analyzers; adding a new protocol requires zero changes to upstream/downstream code
- Backend-agnostic execution — Run on simulators, cloud QPUs (Quafu, Quark), or direct hardware
- Bi-temporal data layer — Every observation carries both effective time (when it was true) and ingestion time (when the system learned it), enabling temporal replay and audit
- Versioned hardware state — Event-sourced state evolution with a DAG structure, supporting branching calibration strategies and rollback
- Predictive intelligence — Probabilistic future-state overlay for risk-aware compilation and scheduling
- QEC-ready data abstractions (FTQC-oriented) — Error-budget and data-layer types for fault-tolerant workflows are implemented at the physical / datastore level; full logical benchmark protocols (surface code, decoder pipelines) are under active development, not shipped in this release (see Feature Status)
Scope honesty: The table below is the authoritative status for the current release. Capabilities marked Planned or Experimental are not production-ready.
Feature Status (v3.0.3)
| Area | Capability | Status | Notes |
|---|---|---|---|
| Physical QCVV | XEB | Beta | Simulator smoke + analysis dispatch; synthetic validation report |
| Physical QCVV | RB / IRB | Beta | RB: validation report; IRB: validation pending |
| Physical QCVV | MRB, PRB, CSB, SPB | Experimental | Implementation present; full validation reports pending |
| Physical QCVV | T1, T2, QV, Rabi, SPAM, Leakage RB, CLOPS | Planned | Placeholder modules; not yet implemented |
| Data platform | Phase 1 PostgreSQL + static queries | Beta | Requires EGM_PG_DSN; see db/phase1/, sql/queries/ |
| Data platform | Bi-temporal schema + lineage (DB) | Beta | Schema in db/phase1/001_schema.sql |
| Domain | Version DAG, event-sourced hardware state (domain/system/) |
Planned | Architecture documented; runtime implementation incomplete |
| Intelligence | Predictive overlay (intelligence/forecasting/) |
Planned | Design docs; not production-ready |
| Logical QEC | Surface code / decoder benchmarks | Planned | Design direction only; no Stim/PyMatching workflow or logical MVP in this release |
| Algorithmic | Grover, QPE, VQE, etc. | Experimental | Lower priority than physical QCVV |
Status definitions: Beta = runnable with documented examples; Experimental = partial code, limited validation; Planned = design or placeholder only.
Known Limitations
- Logical QEC benchmarks are not production-ready in this release (no surface-code memory experiments, decoder integration, or logical error-rate pipeline).
- QEC-ready here means data abstractions and error-model hooks are in place; it does not mean turnkey logical-QEC benchmarks or decoders are production-ready.
- XEB/RB have synthetic validation reports (summary); other protocols and full hardware certification are still limited.
- Task-level analysis payloads may not yet expose all fields in analyzer-output-spec.md.
- Predictive intelligence and versioned hardware state modules may exist as design documentation without complete runtime code paths.
- PostgreSQL at web-scale is out of scope; lab-scale numbers are in postgres-benchmark-v0.1.md.
- Cloud/hardware backends depend on third-party APIs, quotas, and credentials; availability is not guaranteed by this repository.
- Project license is Apache-2.0 (see License); see LICENSE-AUDIT.md for metadata history (v3.0.1 MIT alignment, v3.0.3 Apache-2.0).
Use Cases
Good fit
- Research prototypes for quantum hardware characterization (QCVV)
- Teaching and reproducible demos with simulators (
scripts/smoke/) - Persisting calibration and benchmark observations in PostgreSQL (Phase 1)
- Building on a unified analysis entry point for new protocols
Not a good fit (today)
- Sole reliance for safety-critical or certified production control loops
- Expecting turnkey logical QEC benchmark + decoder integration
- Assuming every protocol listed in marketing copy is validated and stable
Installation
pip install errorgnomark
Or install from source for development (canonical repository):
git clone https://github.com/BAQIS-Quantum/ErrorGnoMark.git
cd ErrorGnoMark
pip install -e ".[dev]"
China mirror (read-only sync; tags should match GitHub):
git clone https://gitee.com/xdchai/errorgnomark.git
Verify:
import egm
print(egm.__version__) # 3.0.3
Repositories
| Role | URL | Notes |
|---|---|---|
| Canonical (official) | https://github.com/BAQIS-Quantum/ErrorGnoMark | Primary development, issues, pull requests, and CI |
| China mirror | https://gitee.com/xdchai/errorgnomark | Mirror for faster clone in China; BAQIS-Quantum on GitHub is the official maintainer org |
Release tags and changelog on GitHub are authoritative. If versions differ between hosts, prefer GitHub.
Requirements: Python >= 3.9
Architecture
EGM v3 is organized into 12 cohesive subsystems:
src/egm/
├── circuits/ # Backend-agnostic circuit IR, gate definitions, decomposition
├── protocols/ # Protocol implementations (physical / algorithmic / logical)
│ ├── physical/ # XEB, RB, IRB, MRB, CSB, QV, T1/T2, SPAM, tomography, ...
│ ├── algorithmic/ # Grover, QPE, VQE, QAOA, simulation benchmarks
│ └── logical/ # Logical QEC protocols (planned; data layer is QEC-ready)
├── backends/ # Hardware abstraction layer
│ ├── simulators/ # Statevector, density matrix, dummy backends
│ ├── cloud/ # Quafu Cloud, Quark Cloud
│ └── direct/ # Direct hardware access
├── execution/ # Plan building, executor, job scheduling
├── analysis/ # Protocol-agnostic analysis dispatch + per-protocol analyzers
├── schemas/ # Type-safe Pydantic models (configs, plans, results)
├── datastore/ # Observation persistence (memory, SQLite, file, PostgreSQL)
├── domain/ # Error modeling, inference, propagation, state management
│ ├── error_analysis/ # Error budget decomposition & sensitivity
│ ├── error_modeling/ # Physical & logical noise models
│ ├── error_inference/ # RB/T1-based error inference
│ ├── error_propagation/ # Physical & logical error propagation
│ ├── state/ # Hardware state & snapshot
│ └── system/ # Version DAG, events, lifecycle
├── intelligence/ # Predictive forecasting, risk models, transition models
├── services/ # Planning, query, serialization (application glue)
├── suites/ # High-level workflow orchestration
│ ├── calibration/ # Auto-calibration, drift-triggered recalibration
│ ├── compiler/ # Hardware-aware compilation, dynamic recompilation
│ └── system_profiling/ # Full-chip health scan, noise mapping
└── reporting/ # Dashboard generation, visualizers, formatters
Data Flow
ConfigSchema ─── PlanBuilder ──→ PlanSchema (CircuitTasks)
│
Executor + Backend
│
TaskExecutionResult
│
analyze_task_execution_result()
│
TaskAnalysisResult
│
ObservationStore.save_observation()
│
PostgreSQL / SQLite / Memory
│
SQL queries (31 templates) + API
Quick Start
Run XEB on a simulator
from egm.schemas.configs import ConfigSchema, ConfigBase, HardwareConfig, ProtocolConfig, ProtocolBundle
from egm.services.planning.plan_builder import PlanBuilder
from egm.execution.plan_runner import run_plan
from egm.backends.dummy_backend_xeb import DummyBackendXEB
from egm.analysis import analyze_task_execution_result
config = ConfigSchema(
base=ConfigBase(plan_id="demo-001", backend_name="DummyBackendXEB"),
hardware=HardwareConfig(chip_name="Demo", available_qubits=[0, 1]),
protocol=ProtocolConfig(bundles=[
ProtocolBundle(
protocol="XEB",
qubits=[[0, 1]],
depths=[3, 5, 8],
number_of_circuits=10,
shots=2048,
)
]),
)
plan = PlanBuilder.build_plan_from_config(config)
backend = DummyBackendXEB(num_qubits=2)
exec_results = run_plan(plan, backend)
for task, exec_result in zip(plan.tasks, exec_results.task_results):
analysis = analyze_task_execution_result(task, exec_result)
print(f"Protocol: {task.protocol}, Fidelity: {analysis.analysis_payload}")
Persist to PostgreSQL
from egm.datastore.postgres_observation_store import PostgresObservationStore
store = PostgresObservationStore("postgresql://user@localhost:5432/egm_phase1")
obs_id = store.save_observation(payload)
Supported Protocols
Physical Layer
| Protocol | Description |
|---|---|
| XEB | Cross-Entropy Benchmarking (with simultaneous SPB) |
| RB | Standard Randomized Benchmarking |
| IRB | Interleaved RB (per-gate error extraction) |
| MRB | Mirror RB |
| PRB | Pauli RB |
| CSB | Correlated Spectral Benchmarking |
| QV | Quantum Volume |
| SPB | Speckle Purity Benchmarking |
| T1/T2 | Coherence time measurement (Ramsey, Echo) |
| Rabi | Drive amplitude calibration |
| SPAM | State Preparation And Measurement errors |
| Tomography | State and process tomography |
| Leakage RB | Leakage detection via RB |
| CLOPS | Circuit Layer Operations Per Second |
Algorithmic Layer
Grover, QPE, Shor, VQE, QAOA, QML, Digital Simulation
Execution Modes
Each protocol supports three modes for flexible characterization:
- standard — Single qubit group
- respectively — Independent per-group (control variable isolation)
- simultaneously — Merged circuits across groups (crosstalk characterization)
Database & Querying (Phase 1)
EGM includes a PostgreSQL-based data layer with:
- Bi-temporal schema — Every fact has
effective_time+ingested_at - Record kinds (v1.1) —
observation/inference/forecastonobservation_record(semantics) - Lineage tracking — DAG tracing from derived artifacts to raw sources
- 31 SQL query templates covering entity lookup, calibration facts, benchmark results, system state, and lineage traversal
- Schema migrations —
db/migrations/(policy) - Idempotent ETL for external calibration data (Quafu)
db/phase1/ # DDL + seed scripts
db/migrations/ # Forward schema migrations
docs/data-layer/ # Semantics and field dictionary
docs/performance/ # Benchmark reports
sql/queries/p0/ # 31 SQL templates (q01–q26)
scripts/ingest/ # ETL pipeline for Quafu calibration data
scripts/postgres/ # Database admin & demo notebooks
scripts/benchmark/ # Insert/query throughput harness
Project Structure
errorgnomark/
├── src/egm/ # Core library (211 Python modules)
├── db/phase1/ # PostgreSQL schema & seed data
├── sql/queries/ # SQL query templates
├── scripts/
│ ├── ingest/ # ETL scripts
│ ├── postgres/ # Database utilities & demos
│ └── smoke/ # End-to-end smoke tests & demos
├── docs/ # Documentation hub (see docs/index.md)
├── .github/ # Workflows, issue/PR templates
├── pyproject.toml # PEP 621 metadata
├── ROADMAP.md # Public 3/6/12 month roadmap
├── CONTRIBUTING.md # Contribution guide
├── LICENSE # Apache-2.0
├── LICENSE-AUDIT.md # License history & compliance
├── SECURITY.md # Vulnerability reporting
├── CHANGELOG.md # Release notes
└── README.md
Documentation & Roadmap
- Documentation hub
- Getting started
- Protocol status (authoritative table: Feature Status above)
- Roadmap
- Contributing
- Changelog
- Public API
- CI / testing
Contributing
Contributions are welcome. See CONTRIBUTING.md for setup, branching, and PR expectations.
Quick rules:
- Code follows existing patterns (type hints, docstrings, Pydantic schemas)
- New protocols implement the three-layer architecture (kernel → wrapper → orchestration)
- Analysis modules register with
_TASK_ANALYZERSinanalysis/__init__.py - Run
ruff check src/egm/analysis src/egm/schemas testsandpytest tests/unit tests/integration tests/validation tests/smoke -qbefore submitting (see CI)
License
Apache License 2.0. See LICENSE-AUDIT.md for license metadata history.
Links
- GitHub (canonical): https://github.com/BAQIS-Quantum/ErrorGnoMark
- Gitee (mirror): https://gitee.com/xdchai/errorgnomark
- PyPI: https://pypi.org/project/errorgnomark/
Citation
If you use EGM in your research, please cite:
@software{egm2026,
title = {ErrorGnoMark: A Modular Platform for Quantum Hardware Benchmarking and Characterization},
author = {Chai, Xudan},
year = {2026},
url = {https://github.com/BAQIS-Quantum/ErrorGnoMark},
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file errorgnomark-3.0.3.tar.gz.
File metadata
- Download URL: errorgnomark-3.0.3.tar.gz
- Upload date:
- Size: 180.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b471bfe34699be1a09a4faa0bcc509ec7fcaa8f6d2dd1d8273586c805967d5c6
|
|
| MD5 |
c08bd7ef526495164a04d73f05f7a873
|
|
| BLAKE2b-256 |
8e2d63057772b1e4acb8708de64755e4acf9a8b5d558aa2ae251de0cfb7666b3
|
File details
Details for the file errorgnomark-3.0.3-py3-none-any.whl.
File metadata
- Download URL: errorgnomark-3.0.3-py3-none-any.whl
- Upload date:
- Size: 240.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d21639f1efb1e5f7b5c75b4c970be5172243c613d5ecfb8b297f80e9326bfd7
|
|
| MD5 |
d50a8b8ff43b82ded516f5a2ca5f5bcd
|
|
| BLAKE2b-256 |
b0ac43c485f7cce26961269a2dcf3ef42acf5d4b0916b19ec80560248ac5a274
|