selene_run · schema v1
G12 — Modal-projection scaling (v0.3.1)
Same G1 kernel, driven through SweepRunner at N ∈ {64, 128} and p ∈ {2, 3, 5, 7}. v0.3.1 methodology: predictor derived from the real-QFT gate sequence, P(y|s,N) = ½[δ(y,0) + δ(y, (N−s) mod N)]. Tracks |measured − predicted| as N grows.
Verdict
consistent_but_residual_drift
Metrics
- worst |measured − predicted|0.0396prob
- min SRP − violating gap (p | N)0.5271prob
- refutation threshold (Δ vs predicted)0.0500prob
P(y mod p = 0): measured vs predicted, across (N, p)
Kernel · 8 qubits · 120 shots/row
from quantum.nadarasa_g1_lib import (
guppy, qubit, h, cx, measure, result,
cphase_true_on,
)
@guppy
def program() -> None:
lbl = qubit()
d0 = qubit()
d1 = qubit()
d2 = qubit()
d3 = qubit()
d4 = qubit()
d5 = qubit()
h(lbl)
h(d0)
h(d1)
h(d2)
h(d3)
h(d4)
h(d5)
cphase_true_on(lbl, d0, 0.0625)
cphase_true_on(lbl, d1, 0.125)
cphase_true_on(lbl, d2, 0.25)
cphase_true_on(lbl, d3, 0.5)
cphase_true_on(lbl, d4, -1.0)
cphase_true_on(lbl, d5, 0.0)
h(lbl)
result("lbl", measure(lbl))
h(d5)
cphase_true_on(d4, d5, 0.5)
cphase_true_on(d3, d5, 0.25)
cphase_true_on(d2, d5, 0.125)
cphase_true_on(d1, d5, 0.0625)
cphase_true_on(d0, d5, 0.03125)
h(d4)
cphase_true_on(d3, d4, 0.5)
cphase_true_on(d2, d4, 0.25)
cphase_true_on(d1, d4, 0.125)
cphase_true_on(d0, d4, 0.0625)
h(d3)
cphase_true_on(d2, d3, 0.5)
cphase_true_on(d1, d3, 0.25)
cphase_true_on(d0, d3, 0.125)
h(d2)
cphase_true_on(d1, d2, 0.5)
cphase_true_on(d0, d2, 0.25)
h(d1)
cphase_true_on(d0, d1, 0.5)
h(d0)
cx(d0, d5)
cx(d5, d0)
cx(d0, d5)
cx(d1, d4)
cx(d4, d1)
cx(d1, d4)
cx(d2, d3)
cx(d3, d2)
cx(d2, d3)
result("y0", measure(d0))
result("y1", measure(d1))
result("y2", measure(d2))
result("y3", measure(d3))
result("y4", measure(d4))
result("y5", measure(d5))