Skip to content
HolonomiX

Representation is the control surface

Structural computing measures the workload’s structure, chooses the representation that fits it, and carries the result with evidence. QTT is one representation in a portfolio that includes dense, sparse and Tensor Train formats.

Representing the same data

The same values can be organized in different ways. Binary tensorization rearranges their indices without changing the values. A low-rank factorization stores the resulting tensor as linked cores. Truncating that factorization introduces approximation under a stated error criterion.

RepresentationWhat is storedWhat changes
DenseEach array value explicitly.The layout can change while values stay the same.
Tensor TrainA chain of linked core tensors.Low ranks can reduce the number of stored coefficients.
QTTTensor Train cores over small index modes, often binary.Index tensorization exposes a structure that the factorization can use.
Reshaping and compression are separate operations. Savings come from a compact factorization, not from assigning binary indices.
RepresentationCount under the stated assumptions
Dense array230 = 1,073,741,824 entries.
QTT cores30 binary cores with every bond dimension at most 8 use no more than 30 × 2 × 82 = 3,840 core coefficients.
This is a mathematical illustration rather than a measured product result. Boundary cores have an outer bond dimension of 1, so they reduce the actual coefficient count below this bound. Whether the data can achieve these ranks at the required accuracy depends on its structure.

Low-rank approximation uses an explicit tolerance. Rank limits and measured reconstruction error make the tradeoff visible; a numerical tolerance does not by itself decide which information matters to an application.

PropertyMP3 audio compressionQTT approximation
InputAn audio signal.A numerical array or field.
Compact formAn audio encoding.A low-rank chain of core tensors.
AccuracyAudio-specific criteria govern the loss.Numerical error criteria govern truncation; application checks assess the result.
The audio-codec analogy explains the tradeoff between a compact representation and retained information. QTT uses numerical approximation criteria rather than an audio model.

The QTT structure

Linked QTT coresBinary indices connect to core tensors. Bond dimensions link adjacent cores. Computing a value combines factors along the chain.G₁x₁G₂x₂G₃x₃G₄x₄
Each core has a data index and links to its neighbors. The links carry the bond dimensions. This is the same chain geometry used by a matrix product state.

Structure across scales

QTT can remain compact as a field grows when its ranks stay bounded at the required accuracy. Smooth regions, repeating patterns and predictable physical behavior are useful reasons to investigate that structure; the measured ranks determine whether it pays off.

The crossover matters. On small or weakly structured inputs, representation overhead can exceed the savings. The substrate measures structure and routes on what it measures.

Binary indexing from coarse to fineLeading bits partition an index range. Additional bits select a smaller part of that range. The highlighted path selects the binary prefix 01.Index0100011011
The zoom analogy applies to index scale: leading bits select broad regions and later bits locate finer positions. A value or summary still requires the relevant core contractions; a prefix alone is not a completed coarse answer.

Compute on the cores

Supported operations, including suitable Tensor Train operators, work on the cores without rebuilding the full field. Computation can enlarge the bond dimensions, sometimes substantially. Rounding reduces intermediate ranks under the chosen approximation controls.

  • Apply the operationContract the factors needed for the supported query or operator.
  • Control rank growthRound intermediate cores when needed, with explicit rank and error controls.
  • Check the resultCompare reconstruction error and the quantities that matter to the application.
The assembly-line analogy describes the logical chain of core operations. Runtime depends on the operation, ranks, implementation and hardware.
Reconstruction
Aggregate error, maximum error and spot checks show how closely the representation matches the original.
Application validity
Held-out cases, applicable conservation laws and the final quantities of interest test whether the answer remains useful. For science and engineering, this matters more than file size alone.

Trust you can verify

Trust and proof are engineering requirements. Verification and Validation runs as a release gate. Formal proofs and measured verification carry distinct responsibilities, and the resulting evidence is available for technical review.

V&V
Verification and Validation as a release gate.
Attestation
Post-quantum attestation and ledgered provenance are part of the substrate’s engineering posture. The signing algorithm and evidence record are specified by each product.
Formal proof
Lean4 carries formal proof where invariants are provable. Measured verification addresses behavior beyond that proof scope. The two are never conflated.
Numerics
IEEE floating-point standards underpin the numerics. Reproducibility is evaluated within the documented precision, implementation and execution environment; bit-exact claims apply to their stated scope.

Products expose evidence that can be checked with the specified verifier and trust material. Public-key modes support independent signature verification; HX-AIFactoryTwin also documents an HMAC mode, which uses a shared secret.

Product signing and verification controls

Representation shapes the cost structure

The properties that make a representation useful also affect infrastructure costs: how much state is stored, how much data moves, and how much computation is needed. A compact representation earns its advantage when those savings exceed the cost of constructing and using it.

MechanismPotential effectCondition
Low-rank factorizationFewer stored coefficients and a smaller memory footprint.Ranks remain low at the required accuracy.
Operations on coresLess full-field materialization and data movement.The required operation is supported in the representation.
Controlled bond dimensionsLess arithmetic on suitable workloads.Intermediate ranks and kernel overhead remain manageable.
These are the mechanisms behind potential storage and compute savings. Workload evidence establishes the actual outcome.
Representation and infrastructure economicsData, memory and compute interact within a chosen representation. Changing that representation can change the work and movement required.DataMemoryComputeRepresentation shapes the interactions
Our thesis is that representation is the control surface for these interactions. The next infrastructure layer is the substrate that makes less computation and less memory movement necessary for the workloads it serves.
Read the Antithesis