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.
| Representation | What is stored | What changes |
|---|---|---|
| Dense | Each array value explicitly. | The layout can change while values stay the same. |
| Tensor Train | A chain of linked core tensors. | Low ranks can reduce the number of stored coefficients. |
| QTT | Tensor Train cores over small index modes, often binary. | Index tensorization exposes a structure that the factorization can use. |
| Representation | Count under the stated assumptions |
|---|---|
| Dense array | 230 = 1,073,741,824 entries. |
| QTT cores | 30 binary cores with every bond dimension at most 8 use no more than 30 × 2 × 82 = 3,840 core coefficients. |
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.
| Property | MP3 audio compression | QTT approximation |
|---|---|---|
| Input | An audio signal. | A numerical array or field. |
| Compact form | An audio encoding. | A low-rank chain of core tensors. |
| Accuracy | Audio-specific criteria govern the loss. | Numerical error criteria govern truncation; application checks assess the result. |
The QTT structure
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.
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.
- 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 controlsRepresentation 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.
| Mechanism | Potential effect | Condition |
|---|---|---|
| Low-rank factorization | Fewer stored coefficients and a smaller memory footprint. | Ranks remain low at the required accuracy. |
| Operations on cores | Less full-field materialization and data movement. | The required operation is supported in the representation. |
| Controlled bond dimensions | Less arithmetic on suitable workloads. | Intermediate ranks and kernel overhead remain manageable. |