Build2 publishers3 min readPublished
Multiverse's block-pruning method widens its MMLU lead over block-influence pruning as compression grows, reaching 22.9 points at 50%
Multiverse Computing ranks candidate prunings by the energy of an Ising glass, so a single GPU scored about 29 billion combinations in two days. The paper reports the older per-block heuristics do just as well at lighter compression.
The Engineer · Build desk

What happened
- Multiverse Computing published a technical account on Hugging Face on September 21st describing how to pick whole transformer blocks for deletion by modeling the choices as an Ising glass.
- A second-order Taylor expansion of the loss produces an approximate Hessian whose diagonal entries score individual blocks and whose off-diagonal entries score the interaction between two deletion decisions.
- Removing 40 of Llama-3.3-70B-Instruct's 80 blocks without retraining scored 76.9 on MMLU against 54.0 for the block-influence baseline, with the uncompressed model at 82.2.
- Checking roughly 29 billion ways to remove eight of the eighty blocks took about two days on a single GPU, and a few million configurations take seconds.
Compiled by The EngineerSomething wrong?How this is made
Why it matters
- decision Anyone pruning lightly has little reason to build the Hessian, because the paper's own results at lower compression put the method level with the cheap per-block ranking it replaces.
- cost One calibration pass per model amortises across every compression target, so asking what happens at 24 blocks instead of 40 costs an energy calculation rather than another build-and-benchmark cycle.
- constraint Adopting the method means betting that energy ranks configurations on your model and your eval set, and runtimewire.com ties the payoff to the results holding across independent evaluations.
- capability A 70B model can run at half its depth with no retraining, and the quality bill for that is 5.3 MMLU points against the uncompressed original.
Whether removing block 20 hurts the model depends on whether you also removed block 19 or block 24, according to the Hugging Face post [11]. One importance score per block cannot express that. The post calls the standard scoring methods mean-field, after the approximation that replaces a spin's neighbours with a single averaged field, and it names a second common shortcut: only ever remove a single consecutive run of blocks, which keeps the problem small and discards most of the search space [10][12].
Each block carries a binary variable, zero to keep it and one to remove it [4]. The optimization then asks which set of M blocks out of N minimizes the energy x-transpose-H-x, subject to removing exactly M [6]. The Hessian is computed once, from forward and backward passes over a small calibration dataset [8]. After that, scoring a candidate is one energy calculation, with no need to run the pruned model [8]. The couplings do not depend on how many blocks you intend to remove, so the same Hessian answers the question at every value of M [9].
The researchers wrote that "the energy of that spin system turns out to be a strong, cheap proxy for how well the pruned model will actually score on benchmarks, which means we can rank a huge number of candidate configurations without benchmarking any of them" [7]. Everything else rests on that proxy holding on your model and your evaluation set. Antonio Tiene is named as the post's lead contributor, and the company was co-founded by Roman Orus, a quantum-information physicist who is an Ikerbasque research professor at the Donostia International Physics Center [3][2].
Cheap is measurable here. About 29 billion configurations in roughly two days on one GPU is around 170,000 energy evaluations per second [13][2]. The exact search still runs out: choosing 40 blocks from 80 is about 1.1 x 10^23 combinations, some 3.7 trillion times the eight-of-80 case [3][4]. Brute force in the paper tops out at tens of billions of configurations [13], so the headline result sits far outside it, and for larger searches the researchers used heuristic solvers, including an open-source tabu solver that produced low-energy configurations within seconds [14].
For the 22.9-point gap to mean anything in your budget, several things have to be true [1]. The model has to be deep enough for the couplings to matter: the paper reports the methods broadly comparable at lighter compression, with the advantage widening as more blocks came out and interactions became harder to ignore [17]. On Qwen3-14B with 12 of 40 blocks removed, the lead was about 10 MMLU points [18]. The calibration set has to stand in for your traffic. And the gap is between two pruning methods at the same compression level, not an improvement on the original model [22]. The pruned model stays 5.3 MMLU points behind the uncompressed one [16].
The reason to accept that drop is deployment cost. Large models are too expensive to run in many edge, private-cloud and offline settings [20], and depth pruning gives a predictable speedup because each deleted block eliminates a stage of computation [19]. It also sits alongside quantization, low-rank compression and knowledge distillation [19]. runtimewire.com framed the payoff as conditional on the results holding across independent evaluations [21].
What to watch
- An independent reproduction of Table 2 at 50% compression on Llama-3.3-70B would test whether energy ranks configurations as claimed.
- Latency and memory measurements for the 40-block model, since the case for depth pruning rests on the predictable per-block speedup.
- Whether the Hessian-plus-tabu pipeline ships as usable tooling or stays inside the paper.