auto: 2026-08-31T13:31:30Z [skip ci]

This commit is contained in:
Levi Neuwirth 2026-08-31 15:31:30 +02:00
parent e0a5bd13c9
commit 8d10db28ad
No known key found for this signature in database
1 changed files with 15 additions and 11 deletions

View File

@ -21,6 +21,8 @@ scope: broad
novelty: moderate novelty: moderate
practicality: moderate practicality: moderate
history: history:
- date: "2026-08-31"
- date: "2026-08-30"
- date: "2026-08-29" - date: "2026-08-29"
--- ---
@ -50,15 +52,15 @@ verifier can check on hardware it controls.
[VerInf](https://github.com/JamesPetrie/VerInf) is a research prototype [VerInf](https://github.com/JamesPetrie/VerInf) is a research prototype
addressing that gap, led by James Petrie at the Future of Life Institute. I addressing that gap, led by James Petrie at the Future of Life Institute. I
work on it as a [MARS V](https://caish.org/mars) fellow. This living document work on it as a [MARS V](https://caish.org/mars) fellow. This living document
details what the system does and does not currently prove, where we think it is heading, records what the system does and does not currently prove, where the work is
and my future ambitions for this line of work. heading, and which parts of it are mine.
## What the proof certifies ## What the proof certifies
The naive framing — chiefly, "prove the model produced this output" — is the wrong one. The naive framing — chiefly, "prove the model produced this output" — is the wrong one.
Frontier inference runs in floating point, on nondeterministic kernels, across hardware that does not Frontier inference runs in floating point, on nondeterministic kernels, across hardware that does not
reproduce bit-for-bit. Demanding exact reproduction would make the problem intractable, and even worse, reproduce bit-for-bit. Demanding exact reproduction would make the problem intractable, and would
it isn't really even addressing the right problem. still answer the wrong question.
VerInf instead bounds the **unexplained information** in an output stream: the VerInf instead bounds the **unexplained information** in an output stream: the
number of bits in the output that the committed model does not account for. If number of bits in the output that the committed model does not account for. If
@ -86,7 +88,7 @@ standards — and one of them is not yet integrated:
Upstream of the logits the prover must have no room at all; Upstream of the logits the prover must have no room at all;
downstream, in the short arithmetic from logits to the reported downstream, in the short arithmetic from logits to the reported
bound, the prover may have room, so long as every rounding is forced upward. bound, the prover may have room, so long as every rounding is forced upward.
In an elegant twist, cheating can only make your own number worse. Cheating there can only make the prover's own number worse.
A related move governs our predictor. The bound is computed against a predictor A related move governs our predictor. The bound is computed against a predictor
of the deployment's outputs that the *prover* supplies. of the deployment's outputs that the *prover* supplies.
@ -207,7 +209,7 @@ targets. One morning and about eleven dollars of GPU time later:
I also corrected the cost model's RMSNorm row to the wrap-free bracket I also corrected the cost model's RMSNorm row to the wrap-free bracket
constants, bringing it into line with the paper's own analysis. constants, bringing it into line with the paper's own analysis.
### Splitting the prover without touching the verifier ### Splitting the enrolled weights without touching the verifier
The first piece of real multi-GPU work is now on a review branch, and the result The first piece of real multi-GPU work is now on a review branch, and the result
worth reporting is not a speedup. It is that there is no new trust surface. worth reporting is not a speedup. It is that there is no new trust surface.
@ -346,7 +348,9 @@ While VerInf looks promising, there are currently limitations:
- **Soundness is a per-challenge bound** (about 2⁻¹⁶·⁶ in the demonstrated - **Soundness is a per-challenge bound** (about 2⁻¹⁶·⁶ in the demonstrated
configuration), raised by opening more columns at a measured cost in configuration), raised by opening more columns at a measured cost in
verification time. It is a deployment choice, not a fixed property. verification time. It is a deployment choice, not a fixed property.
- **The claim list reveals the architecture.** - **The claim list reveals the architecture.** The public claim list states what
kind of computation was performed, so layer counts and expert breadth are
visible to the verifier even though the weights are not.
- **No multi-GPU speedup has been measured.** The weight split is verified - **No multi-GPU speedup has been measured.** The weight split is verified
byte-identical on hardware, but every scaling ratio here is modeled. The first byte-identical on hardware, but every scaling ratio here is modeled. The first
end-to-end multi-device timing is the next milestone. end-to-end multi-device timing is the next milestone.