Where the destination integer range accommodates the full number sequence, the encode-and-scale operation preserves every significant digit, and the stored scale exponents enable exact restoration of the original floating-point values from integer results and vice versa. Where the destination range is narrower, fewer digits survive and the round trip is no longer exact โ in proportion to how much of the sequence the container cannot hold. Both cases worked through below โ
Current GPU silicon is specified at roughly double the peak dense throughput for integer against floating-point, and published production measurements of 8-bit inference deliver 1.4โ1.8ร against an FP16 baseline. The INTEGIZER produces the refactored weight database that exploits it, and re-targets that same database to other architectures without going back to the floating-point master. See the full measured distribution โ
Performs inference using an integer arithmetic logic unit with pre-calculated lookup tables for non-linear functions (softmax, sigmoid, tanh), eliminating runtime floating-point calculation overhead entirely.
Maintains a floating-point fallback capability for values outside lookup table range, ensuring mathematical completeness without sacrificing integer-first performance for the vast majority of operations.
Enables deployment of trained SENN intelligence onto billions of ARM Cortex-M microcontrollers and other integer-only processors that have no floating-point unit โ bringing AI to devices that could never run it before.
Accelerates AI data center expansion by enabling inference on cheaper integer chipsets โ compressing build timelines, lifting scale within a fixed power envelope, and cutting cost across power, cooling and hardware.
| Capability | Conventional Quantization | INTEGIZER |
|---|---|---|
| Conversion Direction | ๐ถ One-way (FP โ INT only) | โ Bidirectional (FP โ INT) |
| Weight Preservation | โ Permanently Degraded | โ Potentially Lossless |
| Scale Exponent Tracking | โ Not Preserved | โ Stored as Metadata |
| Original Value Restoration | โ Not Possible | โ Full Restoration via Stored Exponents |
| Non-Linear Functions | ๐ถ Runtime FP Calculation | โ Pre-Calculated Lookup Tables |
| FP Fallback Capability | โ No Structured Fallback | โ Built-in for Out-of-Range Values |
| IoT / No-FPU Deployment | โ Limited / Ad Hoc | โ Structured Pipeline |
| Cross-Architecture Portability | ๐ถ Architecture-Specific | โ Refactored Weight Database |
| Intelligence Transfer | ๐ถ Same Model, Degraded | โ Imports Intelligent Behavior to New Architecture |
All ten significant digits fit inside the destination container. Nothing is lost on the way in, and the reverse-scale operation returns the original value exactly. This is the lossless case.
Whether the surviving digits are simply truncated, or rounded up or down at the .5 mark, is an implementation convention chosen for the deployment. Either way the round trip is not exact. The narrower the destination container, the fewer significant digits survive, and the larger the departure from the original value.
The two cases above concern numeric fidelity โ whether a number survives the round trip. That is arithmetic, and it is decidable. It is not the same question as whether a quantised network produces the same outputs, which is a statistical property of the model as a whole.
For deployment-grade 8-bit inference the answer is no, not exactly. INT8 is a narrow container โ 256 representable values โ so any INT8 deployment is Case 2 by construction, and the measured consequence at model level is roughly 1 to 3 percent accuracy degradation for well-tuned INT8 weight-and-activation quantisation, with some model families more sensitive than others and per-model validation required. (arXiv 2411.02355, over 500,000 evaluations; LLaMA3-70B exception per arXiv 2408.15301.)
What the INTEGIZER changes is the nature of that trade. The retained scale exponent makes it recorded and reversible rather than silent and permanent, and the same refactored weight database can be re-targeted to another destination architecture without returning to the floating-point master. The trade-off is not eliminated โ it is put under control. Case 1 is where the wide-container, high-end scale-up path in Figure 64 lives; Case 2 is where the low-end minimal-scale path lives. Both are settings of one method.
Full Precision โ Moderate Precision. Industry-standard training formats. Float64 carries ~18 decimal digits (much is noise); Float32 carries ~7 digits. The INTEGIZER can convert from either into integer representations while preserving significant information.
Reduced to Low Noise. 65,536 / 256 / 16 possible values respectively. Fewer values force resolution โ coarser but more decisive weight assignments. INT8 is already the native fast path on current GPU Tensor Cores, TPUs, and mobile neural engines.
Maximum Compression. Only three states per weight. Computation may be bypassed entirely โ replaced by simple sign-conditional addition. Minimal noise. Enables AI on the most resource-constrained devices imaginable.
The INTEGIZER method enables AI deployment across hardware that already exists โ from data centers to wristbands. The silicon can already do massively parallel integer computation.
NVIDIA H100, A100, and successors are specified at ~2ร peak dense INT8 throughput against FP16 on identical silicon (measured production gains are lower โ see the business case)
Apple Neural Engine (INT8), Qualcomm Hexagon DSP โ shipping in billions of phones and tablets
Intel AMX INT8 matrix ops, Google TPUs in INT8 inference mode โ server-class integer acceleration
Billions of pure-integer microcontrollers deployed worldwide โ no FPU, but the INTEGIZER brings AI to them
Cheaper integer chipsets could accelerate AI infrastructure expansion with lower power, cooling, and hardware costs
PLC controllers, industrial sensors, automotive ECUs, medical devices โ anywhere compute budget is limited
Current GPU silicon is specified at 2ร peak dense INT8 throughput against FP16, but peak silicon is not deployment performance. Published production measurements of 8-bit inference cluster at 1.4โ1.8ร against an FP16 baseline. At a conservative 1.5ร, a power-capped facility yields roughly 50% more serving capacity from the same grid connection โ which matters most where megawatts, not capital, are the binding constraint. Full worked model โ
Billions of integer-only ARM Cortex-M devices currently cannot run any neural network. The INTEGIZER opens an entirely new market for on-device AI in industrial, medical, agricultural, and consumer IoT.
Integer computation consumes significantly less power than floating-point. At data center scale, the energy savings from INTEGIZER-enabled integer inference contribute meaningfully to sustainability targets.
The industry trajectory is toward more integer computation, not less. Every generation of AI hardware adds faster integer support, and the population of integer-capable devices grows every year. The INTEGIZER method becomes more valuable over time.