Supplementary dataset for
“Realization of a Quantum Streaming Algorithm on Long-lived Trapped-ion Qubits” (Niroula
et al., Quantinuum & JPMorgan Chase, 2025). The study (
arXiv:2511.03689) demonstrates a Hidden Matching (HM) streaming protocol on the Quantinuum H‑Series trapped-ion processor, showcasing an exponential memory advantage over classical sketches. This Parquet file aggregates every raw quantum shot used to produce the success/fidelity figures reported therein, so no additional metadata files are required.
Below is the schema of the data. Each row represents one quantum shot.
import polars as pl
from aqora_cli.pyarrow import dataset
df = pl.scan_pyarrow_dataset(
dataset("aqora/realization-of-a-quantum-streaming-algorithm-on-long-lived-trapped-ion-qubits", "v0.0.0")
).collect()
stats = (
df.groupby("n")
.agg([
pl.len().alias("shots"),
pl.col("measuredResults").list.last().mean().alias("avg_last_bit"),
])
.sort("n")
)
print(stats)
For full experimental details—circuit construction, streaming protocol, and theoretical guarantees—consult
arXiv:2511.03689. This README serves as the Aqora dataset card for the shot-level Parquet artifact.