- HPC-Quantize
- What HPC actually does
- Core design
- Candidate generation
- From candidates to states
- The Q2 state space
- Candidate probabilities
- The Sieve
- Sieve slack
- Sequential conditioning
- Viterbi optimization
- Local safety
- Error geometry
- Building
- Mixed-precision workflows
- Why Q2?
- HPC versus conventional quantization
- A useful way to think about HPC
- Experimental nature
- Current architecture
- Future directions
- What HPC is trying to preserve
- License
- Status
HPC-Quantize
Holographic Phase Contraction for Ultra-Low-Bit LLM Quantization
HPC-Quantize is an experimental, MIT-licensed quantization engine for aggressively compressing large language models into extremely low-bit formats, with a particular focus on Q2-class quantization.
The central idea is simple:
At very low bitrates, quantization should be treated as a structured reconstruction problem rather than independent rounding of individual blocks.
Instead of choosing a quantization candidate solely from its local reconstruction error, HPC generates competing reconstructions, represents them in a compact discrete state space, models interactions between neighboring blocks, and performs a global sequence optimization before writing the final GGUF.
The current production path is entirely classical. Earlier versions explored quantum-inspired state and measurement formulations; the current implementation uses a sequential Sieve, bounded state back-action, and a 36-state Viterbi optimizer for Q2.
Why HPC?
At Q4 or Q5, a model often has enough representational freedom that many quantization strategies work reasonably well.
At Q2, the situation changes dramatically.
A block has very few representable values, so small decisions about scale, minimum, and code assignment can produce disproportionately large changes in the resulting weight tensor.
A conventional quantizer often reduces the problem to:
original weights
β
βΌ
find locally best parameters
β
βΌ
encode quantized block
HPC instead treats each block as a discrete candidate-selection problem:
original weights
β
βΌ
generate candidate reconstructions
β
βΌ
score candidate errors
β
βΌ
map candidates into a compact state space
β
βΌ
sequential Sieve
β
βΌ
Q2 state lattice
β
βΌ
global Viterbi optimization
β
βΌ
select physical reconstructions
β
βΌ
GGUF
This lets the optimizer preserve competing possibilities until there is enough information to make a global decision.
What HPC actually does
HPC is still a quantizer/re-quantizer.
It does not retrain the neural network, modify the model architecture, or learn a new set of representations.
The "reconstruction" terminology refers to what happens during candidate selection: HPC explicitly constructs multiple possible low-bit approximations of the original weights and evaluates them against the source weights.
Conceptually:
The final output remains a normal quantized GGUF model.
Core design
HPC combines several ideas:
- candidate reconstruction
- weighted reconstruction error
- optional importance-matrix weighting
- discrete state mapping
- sequential Sieve selection
- bounded neighboring-state back-action
- Q2 state coupling
- global Viterbi optimization
- local reconstruction-quality safeguards
The important distinction is that these components operate together rather than treating every quantization block as completely independent.
Candidate generation
For an eligible Q2 block, HPC searches over possible quantization parameters rather than committing immediately to a single local solution.
For Q2_K, the important coupled parameters are represented conceptually as:
Candidate parameters are evaluated by reconstructing the quantized block and measuring its error against the original weights.
With an importance matrix, the error can be weighted so that sensitive dimensions contribute more heavily:
This is useful because ordinary unweighted RMSE assumes every weight contributes equally to the final model behavior.
HPC can therefore evaluate:
How well does this candidate reconstruct the important parts of the original block?
rather than only:
How small is its raw Euclidean error?
From candidates to states
Keeping every physical candidate in the global optimizer would be expensive.
HPC therefore maps candidates into a compact symbolic state representation.
The current implementation uses six symbolic states for each quantization parameter:
The symbolic states provide a compact representation of the candidate landscape.
Multiple physical candidates can belong to the same symbolic state.
This separation is important:
physical candidates
β
βΌ
symbolic state representation
β
βΌ
global optimization
β
βΌ
physical candidate selection
The symbolic state space is therefore not the same thing as the number of physical reconstructions generated during candidate search.
The Q2 state space
Q2 has two coupled parameters:
Each is represented by six symbolic states.
Therefore the joint Q2 space contains:
states.
The state index is:
where:
The resulting lattice is:
dmin
0 1 2 3 4 5
βββββββββββββββββββββββββ
0 β 0 1 2 3 4 5
1 β 6 7 8 9 10 11
d 2 β 12 13 14 15 16 17
3 β 18 19 20 21 22 23
4 β 24 25 26 27 28 29
5 β 30 31 32 33 34 35
The 36-state representation is a global optimization space, not a claim that only 36 physical quantization candidates exist.
Candidate probabilities
Rather than treating each candidate as simply "best" or "not best", HPC can preserve information about the relative quality of competing candidates.
Candidate errors are converted into probability-like weights using a Boltzmann-style transformation:
This creates a soft candidate distribution.
The practical consequence is important:
A candidate that is slightly worse than the local minimum can remain relevant if it belongs to a useful region of the state space.
That makes the search less eager to collapse immediately to a single local minimum.
The Sieve
The current production architecture uses a sequential Sieve.
Rather than treating blocks as fully independent, neighboring state distributions influence one another.
For a candidate state (d), the implementation applies a bounded compatibility penalty based on neighboring probability:
The combined Sieve score can be written conceptually as:
The effect is deliberately modest.
If a neighboring site is strongly concentrated on the same state, that state becomes somewhat less attractive locally.
The Sieve therefore encourages state diversity and compatibility without forcing an alternating pattern.
Sieve slack
The Sieve also avoids immediately discarding every candidate that is not the top local state.
A bounded slack region allows near-optimal states to survive the first selection stage.
Conceptually:
best state
β
βββ keep
β
βββ keep near-optimal alternatives
β
βββ discard clearly inferior states
This prevents the candidate distribution from collapsing too early.
Sequential conditioning
Once the current state is selected, its influence is propagated into neighboring sites.
The selected state therefore affects subsequent decisions.
This gives the process a sequential character:
The quantization process is consequently no longer just a collection of independent block decisions.
Viterbi optimization
After the Sieve, Q2 state probabilities are expanded into the full 36-state joint lattice.
Each block receives a local cost combining reconstruction error with state probability.
Conceptually:
HPC then adds a transition cost between neighboring blocks.
A simple form is:
This is Manhattan distance on the 6Γ6 state lattice.
The dynamic-programming recurrence is:
The result is a globally optimized sequence of Q2 states.
This is one of the major differences between HPC and purely local quantization.
Local safety
Global regularization should not be allowed to produce obviously poor local reconstructions.
After global selection, HPC can compare the chosen state against the locally best reconstruction.
A sufficiently large local improvement can trigger a local override.
This gives the optimizer a safety mechanism:
global structure
β
βΌ
candidate selected
β
βΌ
is the local reconstruction much better?
β
ββββ΄βββ
β β
yes no
β β
local keep
winner global
winner
The goal is to prevent the global objective from becoming disconnected from actual reconstruction quality.
Error geometry
HPC can also use structured error decomposition rather than treating every error component identically.
One experimental component uses a Dβ/Vesica-style decomposition of paired error terms.
For a pair of error components:
This separates the error into different modes before applying the final weighting.
The intent is to distinguish error geometry rather than assuming that all directions in weight space have identical consequences.
This is an experimental feature of the HPC objective rather than a requirement of GGUF or Q2_K itself.
Building
HPC-Quantize is intended to be used alongside a GGUF/llama.cpp workflow.
Typical dependencies include:
sudo apt install \
gcc \
libgmp-dev \
libmpfr-dev \
python3 \
python3-numpy
Build the native quantization component:
make -f makefile.quantize
The resulting library/binary names may vary with the current revision.
Mixed-precision workflows
HPC is primarily intended to solve the problem of aggressive compression, not to force every tensor in a model into identical precision.
A practical deployment may therefore retain higher precision for particularly sensitive tensors and use Q2 for the bulk of the model.
For example:
Model
βββ embeddings β higher precision
βββ normalization β preserved
βββ attention β Q4 / promoted
βββ FFN / experts β Q2
βββ other large mats β Q2
The optimal allocation is model-dependent.
Why Q2?
Q2 is where conventional quantization becomes particularly unforgiving.
At higher precision, the quantizer has many representational degrees of freedom.
At Q2, many distinct original weight values must share a very small set of reconstruction values.
This means:
HPC is designed around this regime.
Rather than assuming the locally nearest reconstruction is always globally best, it explicitly searches among competing discrete configurations.
HPC versus conventional quantization
A simplified conventional pipeline is:
weight block
β
βΌ
estimate scale/minimum
β
βΌ
round values
β
βΌ
write block
A simplified HPC pipeline is:
weight block
β
βΌ
generate competing reconstructions
β
βΌ
score candidates
β
βΌ
map to symbolic states
β
βΌ
Sieve + neighboring interaction
β
βΌ
construct Q2 state lattice
β
βΌ
Viterbi global optimization
β
βΌ
select physical reconstructions
β
βΌ
write Q2_K
The difference is not that HPC stops being quantization.
The difference is how much structure it retains before committing to the final quantized representation.
A useful way to think about HPC
HPC can be viewed as three nested optimization problems:
Local reconstruction
Which low-bit approximation best represents this block?
State inference
Which region of the discrete candidate space is promising?
Global sequence optimization
Which sequence of candidate states produces the best overall configuration?
That can be summarized as:
rather than:
Experimental nature
HPC is research software.
It should not be assumed that:
- lower RMSE always produces better model behavior;
- lower perplexity always produces better reasoning;
- one quantization strategy wins on every architecture;
- Q2 quality transfers perfectly between models;
- state-interaction parameters are universally optimal.
The correct way to evaluate HPC is with a combination of:
- reconstruction error
- perplexity
- reasoning benchmarks
- mathematical evaluation
- coding tasks
- long-context tests
- instruction following
- qualitative generation
- memory usage
- inference speed
The objective of HPC is not to optimize one number in isolation.
Current architecture
The project originally explored a more explicitly quantum-inspired formulation involving state amplitudes, phase operations, graph coupling, Fourier/IDFT transforms, and sequential measurement.
The current engine has moved toward a more explicit classical formulation:
Historical approach
βββββββββββββββββββ
candidate error
β
amplitudes / phase
β
graph coupling
β
measurement
β
back-action
Current approach
ββββββββββββββββ
candidate error
β
probability distribution
β
sequential Sieve
β
bounded back-action
β
36-state Q2 lattice
β
Viterbi
The mathematical intuition of interacting discrete states remains, but the current production implementation is classical and deterministic.
Future directions
The state lattice is intentionally compact.
The 36-state Q2 space is:
That does not mean the physical candidate space must contain only 36 candidates.
Possible future work includes:
- more symbolic states per parameter;
- multiple physical candidates retained per symbolic state;
- beam search inside individual states;
- hierarchical state refinement;
- adaptive state resolution;
- larger candidate beams for difficult tensors;
- tensor-dependent state cardinality;
- improved transition models;
- architecture-specific state priors.
One particularly interesting extension is to retain multiple physical candidates for each symbolic state:
This would preserve more of the physical reconstruction landscape while keeping the coarse 6Γ6 state structure.
What HPC is trying to preserve
At ultra-low precision, numerical error is inevitable.
The goal is therefore not:
make every weight numerically perfect.
The goal is:
spend the available representational capacity where it matters most, preserve competitive reconstruction alternatives long enough for global selection, and avoid treating every block as an isolated rounding problem.
That is the central design philosophy of HPC-Quantize.
License
HPC-Quantize is released under the MIT License.
The licensing terms of any model quantized with HPC remain separate from the HPC software license.
Always verify the license of the underlying base model before redistribution.
Status
Experimental / research software
The current engine is actively evolving, particularly around ultra-low-bit Q2 quantization.
The project currently prioritizes:
- low-bit reconstruction quality
- model coherence
- reasoning preservation
- structured state selection
- aggressive memory reduction
over compatibility with any single traditional quantization metric.
In one sentence
HPC-Quantize is a structured ultra-low-bit quantizer that searches over competing Q2 reconstructions, reasons about them as interacting discrete states, and uses global sequence optimization to choose the final GGUF configuration.
Acknowledgements
HPC-Quantize builds on the broader GGUF and llama.cpp ecosystem and is intended to interoperate with existing llama.cpp-based tooling.
The project also explores ideas inspired by discrete graphical models, sequential inference, information-weighted reconstruction, and quantum-inspired state representations.