HOLONOMIX

Technology architecture

A private computational core, surfaced as evidence-driven products.

HolonomiX is the technology brand for a QTT-native, GPU-native, physics-native operating-system-grade core. HX-SDP is the enterprise data-plane product. HX-Provenance is the proof product. The Atlas is the classification and governance brain.

Surfaces

Product truth and technology truth are scoped separately.

HX-SDP production benchmarks are scoped to the SVD-latent + SQ8 path. QTT remains the broader HolonomiX technology core and an alternate representation path for specialized callers that already hold TT cores.

HX-SDP hot path

Latent scan first. SQ8 rerank second. No dense materialization in the compute path.

The architecture is simple enough to reason about and rigorous enough to benchmark. The Rank Governor selects rank from the eigenspectrum; the query path works against the compressed artifacts in GPU memory.

01

Input

Dense vectors, features, streams

02

Atlas

classify structure + policy

03

Latent

Z(N,r) + V_T(r,D)

04

SQ8

int8 sidecar rerank

05

Serve

cache · vectors · features · search

build path
G = X.T @ X
λ, V = eigh(G)
r = rank_governor(λ, target_quality=0.95)
Z = X @ V[:, :r]
V_T = V[:, :r].T
SQ8 = quantize_int8_per_row(X)
query path
w = V_T @ q
scores = Z @ w
candidates = topk(scores, rerank_k=100)
final = sq8_original_space_rescore(candidates, q)

The Atlas

Classification is the operating intelligence layer.

The Atlas records model/corpus behavior and separates two different questions: how compressible the corpus spectrum is, and whether the retrieval workload benefits from rerank.

Build-time

DataVerdict

A_GOVERNABLE, B_COMPRESSIBLE, C_CONDITIONAL, or D_WEAK. This is a property of the corpus eigenspectrum and the governor decision.

71
reported rows
7 models × 5 corpora
scope

Query-time

RetrievalClass

A_ELITE or D_SENSITIVE in the current fp32 calibration atlas. Compressed deployment classes require the next certification phase.

Atlas calibration coverageDataVerdict × RetrievalClass
DataVerdict ↓RetrievalClass →
A_ELITE
Native fp32 path
B_RECOVERABLE
fp32 with rerank
C_BORDERLINE
Calibration in flight
D_SENSITIVE
fp32 only, no compress
A_GOVERNABLE
Clean low-rank structure
B_COMPRESSIBLE
Structure with guard-rails
calibrated
C_CONDITIONAL
Slice-dependent structure
calibratedcalibrated
D_WEAK
No exploitable structure
calibratedcalibratedcalibrated
calibratedpartialroadmapfp32 calibration only · compressed deployment is a separate certification phase

GPU-native execution

The commercial architecture is built for private deployment.

The deployable product surface is hx-gate plus hx-engine with Redis for gate state. The severance track keeps the HX-SDP codebase private, VM-imageable, and separate from broader physics IP.

hx-engine
hx-engine image

serving runtime, storage, two-tier query, GPU routes

hx-gate
hx-gate image

auth, ACL, billing, audit, onboarding, proxy

Redis 7
shared state

rate-limit ZSET, CU billing HASH, reload pub/sub

Read next

Move from architecture to evidence.

The proof and benchmark pages carry the measurement tables, receipt scope, and limitations.