playra commited on
Commit
c3e8c97
·
verified ·
1 Parent(s): 1d826e9

v3: count=83 truth (post PR #1065), 13 clusters, Croissant 1.0 JSON-LD, full datasheet sections

Browse files
Files changed (4) hide show
  1. README.md +203 -47
  2. croissant.json +187 -0
  3. formats_catalog.json +118 -1
  4. formats_catalog.jsonl +83 -77
README.md CHANGED
@@ -2,82 +2,238 @@
2
  license: cc-by-4.0
3
  language:
4
  - en
 
 
 
 
 
 
 
 
 
 
 
5
  tags:
6
  - numeric-formats
7
  - floating-point
8
  - conformance
9
  - audit-disclosed
10
- size_categories:
11
- - n<1K
 
 
 
 
 
 
 
 
12
  paper:
13
  - arxiv: 2606.09686
 
 
 
 
 
 
14
  ---
15
 
16
- # numeric-format-catalog v2 (audit-disclosed)
17
 
18
- **Version:** v2.0 (2026-06-10) -- supersedes v1 (count=77, withdrawn).
 
 
 
 
 
 
 
19
 
20
- **Count:** 81 formats across 13 clusters.
21
 
22
- ## Honest count-drift disclosure
23
 
24
- This dataset is shipped with a known count-drift across four artefacts:
25
 
26
- | Source | Count | Status |
27
  |---|---|---|
28
- | `arXiv:2606.09686` Table 1 (paper #3) | 84 | aspirational, MXFP6 split + standalone E8M0 |
29
- | `specs/numeric/formats_catalog.t27` SSOT raw `// CATALOG:` lines | 83 | live ground truth |
30
- | **THIS DATASET (codegen LIVE re-run)** | **81** | parser drops `gf512` + `gf1024` on bias-formula int() cast |
31
- | `gen/numeric/formats_catalog.json` (committed in repo) | 77 | stale, pre-#1051 snapshot |
32
- | v1 of this dataset (uploaded 2026-06-10 AM) | 77 | inherited stale gen |
33
 
34
- **Why 81 and not 83 or 84:** the codegen `tools/gen_formats_catalog.py` cannot evaluate bias formulas of the form `2^N-1`, which are the canonical bias values for `gf512` and `gf1024`. Those two rows are silently dropped. We ship what the codegen actually produces, not a cherry-picked number. Patch tracked in [t27#1064](https://github.com/gHashTag/t27/issues/1064).
35
 
36
- **Why ship 81 today instead of waiting for the patch:** because v1 shipped 77 yesterday. Replacing a stale 77 with an honest 81 + full audit is closer to the truth than leaving 77 up while the patch lands.
37
 
38
- ## What's in the dataset
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
 
40
- - 81 row entries, each carrying: `id`, `name`, `bits`, `s` (sign bits), `e` (exponent bits), `m` (mantissa bits), `bias`, `phi_distance`, `storage`, `cluster`, `status`, `standard`, `use_case`, `source`
41
- - 13 cluster groupings: IEEE754 binary, IEEE754 decimal, MLLowPrecision, GoldenFloat, Posit/Unum III, OCP MX, LNS, IntegerFixed, HistoricalVendor, Theoretical, Compression, Extended, QuantTuned
42
- - Source SSOT: [`gHashTag/t27` `specs/numeric/formats_catalog.t27`](https://github.com/gHashTag/t27/blob/master/specs/numeric/formats_catalog.t27) HEAD `6ecad30`
43
- - Regen output SHA-256: `546ba6fff1daec0b64483f599778ab63a9410405592c2e9dbc9d90dbb63bc48a`
44
 
45
- ## Known gaps vs paper #3 (arXiv:2606.09686)
46
 
47
- | Cluster | Paper says | This dataset | Delta |
48
- |---|---|---|---|
49
- | GoldenFloat | 16 | 16 | 0 (both pre-#1051; current SSOT has 22, of which gen lifts 20) |
50
- | OCP MX | 5 | 3 | -2 (no MXFP6 E2M3/E3M2 split; no standalone E8M0 block) |
51
- | MLLowPrecision | 8 | 7 | -1 (NF4 placement) |
52
- | Total | 84 | 81 | -3 |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
 
54
- ## Reconciliation
55
 
56
- - **t27#1064** -- tracking issue, five-step plan: parser patch -> regen -> CI invariant -> HF re-upload v3 -> arXiv erratum if needed
57
- - Expected v3 ship count after parser patch: 83
58
- - Expected v4 ship count after MXFP6/E8M0 reconciliation with paper: 84 (or paper erratum to whatever codegen produces)
59
 
60
- ## Citation
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
 
62
- If you use this dataset, please cite the paper it accompanies:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
 
64
  ```bibtex
65
- @misc{vasilev2026numeric,
66
- title={An 84-Format Numeric Catalog with Bit-Exact Conformance Vectors},
67
- author={Vasilev, Dmitrii},
68
- year={2026},
69
- eprint={2606.09686},
70
- archivePrefix={arXiv},
71
- primaryClass={cs.MS}
 
 
 
 
 
 
 
 
 
 
72
  }
73
  ```
74
 
75
- Note: paper claims 84; this dataset ships 81 due to the parser bug. See "Honest count-drift disclosure" above.
76
 
77
- ## Provenance
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
 
79
- - Uploader: `playra` (Dmitrii Vasilev, ORCID `0009-0008-4294-6159`)
80
- - Affiliation: **Trinity S3AI**
81
- - Repo: [`gHashTag/t27`](https://github.com/gHashTag/t27)
82
- - License: CC BY 4.0
83
- - Generated: 2026-06-10 +07 from HEAD `6ecad30`
 
 
2
  license: cc-by-4.0
3
  language:
4
  - en
5
+ pretty_name: Numeric Format Catalog (Trinity S3AI / t27)
6
+ size_categories:
7
+ - n<1K
8
+ task_categories:
9
+ - other
10
+ multilinguality:
11
+ - monolingual
12
+ annotations_creators:
13
+ - expert-generated
14
+ language_creators:
15
+ - machine-generated
16
  tags:
17
  - numeric-formats
18
  - floating-point
19
  - conformance
20
  - audit-disclosed
21
+ - catalog
22
+ - ruler
23
+ - ieee-754
24
+ - goldenfloat
25
+ - posit
26
+ - mxfp4
27
+ - fp8
28
+ - bf16
29
+ - trinity-s3ai
30
+ - t27
31
  paper:
32
  - arxiv: 2606.09686
33
+ - arxiv: 2606.05017
34
+ configs:
35
+ - config_name: default
36
+ data_files:
37
+ - split: catalog
38
+ path: formats_catalog.jsonl
39
  ---
40
 
41
+ # Numeric Format Catalog (Trinity S3AI / t27)
42
 
43
+ **Version:** v3.0 (2026-06-13) -- supersedes v2 (count=81, withdrawn) and v1 (count=77, withdrawn).
44
+ **Count:** **83 numeric formats across 13 clusters.**
45
+ **License:** CC-BY-4.0.
46
+ **Maintainer:** Trinity S3AI -- `admin@t27.ai` -- ORCID [0009-0008-4294-6159](https://orcid.org/0009-0008-4294-6159).
47
+ **Companion dataset:** [`playra/numeric-conformance-packs`](https://huggingface.co/datasets/playra/numeric-conformance-packs) (bit-exact conformance vectors that instantiate this catalog).
48
+ **Linked papers:**
49
+ - **Catalog preprint (84-format ruler):** [arXiv:2606.09686](https://arxiv.org/abs/2606.09686) -- [HF paper page](https://huggingface.co/papers/2606.09686)
50
+ - **Anchor preprint (GoldenFloat identity):** [arXiv:2606.05017](https://arxiv.org/abs/2606.05017)
51
 
52
+ ## TL;DR
53
 
54
+ A single canonical reference of every numeric format relevant to ML, scientific computing, historical hardware, and the GoldenFloat (GF) phi-structured family. Codegen-generated from a single source of truth (`specs/numeric/formats_catalog.t27` in [`gHashTag/t27`](https://github.com/gHashTag/t27)).
55
 
56
+ ## Count reconciliation (v3.0 -- count=83)
57
 
58
+ | Source | Count | Status |
59
  |---|---|---|
60
+ | `arXiv:2606.09686` Table 1 (paper #3, draft) | 84 | aspirational, MXFP6 split + standalone E8M0 |
61
+ | `specs/numeric/formats_catalog.t27` SSOT raw `// CATALOG:` lines | **83** | **live ground truth** |
62
+ | **THIS DATASET v3 (codegen LIVE re-run, post t27 #1065)** | **83** | **converges with SSOT** |
63
+ | v2 of this dataset (uploaded 2026-06-10) | 81 | parser dropped `gf512` + `gf1024` -- fixed in [#1065](https://github.com/gHashTag/t27/pull/1065) |
64
+ | v1 of this dataset (uploaded 2026-06-10 AM) | 77 | inherited stale shipped gen |
65
 
66
+ **Why 83 and not 84.** Paper #3 Table 1 carries a draft "84" that splits MXFP6 into two rows and lists a standalone E8M0 row that the SSOT folds into the MXFP6 wrapper. The SSOT keeps a single MXFP6 row and a single E8M0 row, giving 83. This is an honest documentation reconciliation, not a quality claim. A v4 paper revision will harmonise to 83 (or the SSOT will add one row to harmonise to 84) -- whichever lands first.
67
 
68
+ ## Cluster breakdown
69
 
70
+ | Cluster | Count | Notes |
71
+ |---|---|---|
72
+ | GoldenFloat | 22 | GF4..GF1024, 17 binary rungs + extras (closed-form `e = round((N-1)/phi^2)`) |
73
+ | HistoricalVendor | 10 | DEC, IBM, Cray, etc. |
74
+ | PositUnumIII | 8 | Posit-{8,16,32}, Unum-III variants |
75
+ | IntegerFixed | 8 | int4 / int8 / fixed-point sweeps |
76
+ | MlLowPrecision | 7 | FP8 (E4M3, E5M2), NF4, NF8, OFP8 |
77
+ | Ieee754Binary | 5 | binary16, binary32, binary64, binary128, bfloat16 |
78
+ | Lns | 4 | Logarithmic Number System variants |
79
+ | Theoretical | 4 | Takum and similar research formats |
80
+ | CompressionTrick | 4 | Microscaling + structured sparsity wrappers |
81
+ | Ieee754Decimal | 3 | decimal64, decimal128 |
82
+ | ExtendedFloat | 3 | x87 80-bit, double-double, etc. |
83
+ | Microscaling | 3 | MXFP4, MXFP6, MXFP8 |
84
+ | QuantTuned | 2 | Tuned-quantisation variants |
85
+ | **Total** | **83** | **across 13 clusters** |
86
+
87
+ ## File inventory
88
+
89
+ | File | Format | Purpose |
90
+ |---|---|---|
91
+ | `formats_catalog.jsonl` | JSONL | One format per line, 83 rows total |
92
+ | `formats_catalog.json` | JSON | Same data as a single array |
93
+ | `formats_catalog.md` | Markdown | Human-readable table |
94
+ | `SHA256SUMS.txt` | Text | SHA-256 manifest for tamper-evidence |
95
 
96
+ ## Row schema (per JSONL line)
 
 
 
97
 
98
+ Each row has the following canonical fields:
99
 
100
+ | Field | Type | Description |
101
+ |---|---|---|
102
+ | `id` | string | Canonical identifier (e.g. `binary16`, `gf16`) |
103
+ | `name` | string | Human-readable name |
104
+ | `bits` | int | Total bit-width |
105
+ | `s_bits` | int | Sign bits |
106
+ | `e_bits` | int | Exponent bits |
107
+ | `m_bits` | int | Mantissa bits |
108
+ | `bias` | int | Exponent bias |
109
+ | `bias_formula` | string | Closed-form bias rule (where applicable) |
110
+ | `phi_distance` | float | Distance from the phi-structured field-width rule |
111
+ | `storage` | string | Storage envelope (e.g. `u16`, `u32`) |
112
+ | `cluster` | string | Cluster label (one of 13) |
113
+ | `gf_relation` | string | Relation to GoldenFloat (`competitor`, `member`, `wrapper`, ...) |
114
+ | `status` | string | Verification status (`Verified`, `Conj`, `Risk`, ...) |
115
+ | `source` | string | Primary standards reference |
116
+ | `standard` | string | Issuing body / spec |
117
+ | `use_case` | string | Canonical use case |
118
+
119
+ ## Quick start
120
+
121
+ ```python
122
+ from datasets import load_dataset
123
+
124
+ # Load the full catalog
125
+ ds = load_dataset("playra/numeric-format-catalog", split="catalog")
126
+ print(f"Loaded {len(ds)} formats across {len(set(r['cluster'] for r in ds))} clusters")
127
+
128
+ # Filter to GoldenFloat formats
129
+ gf = [r for r in ds if r["cluster"] == "GoldenFloat"]
130
+ print(f"{len(gf)} GoldenFloat rungs")
131
+
132
+ # Find anything close to the phi-distance rule
133
+ phi_close = sorted(ds, key=lambda r: r["phi_distance"])[:5]
134
+ for r in phi_close:
135
+ print(r["id"], r["phi_distance"])
136
+ ```
137
 
138
+ ## Provenance
139
 
140
+ This catalog is **codegen output**, not hand-edited. The pipeline:
 
 
141
 
142
+ ```
143
+ specs/numeric/formats_catalog.t27 (SSOT in gHashTag/t27)
144
+ |
145
+ v
146
+ tools/gen_formats_catalog.py (codegen, Python stop-gap)
147
+ |
148
+ v
149
+ gen/numeric/formats_catalog.{json,jsonl,md,...}
150
+ |
151
+ v
152
+ This Hugging Face dataset (mirror)
153
+ ```
154
+
155
+ To re-derive locally:
156
+
157
+ ```bash
158
+ git clone https://github.com/gHashTag/t27.git
159
+ cd t27
160
+ python3 tools/gen_formats_catalog.py specs/numeric/formats_catalog.t27 gen/numeric
161
+ wc -l gen/numeric/formats_catalog.jsonl # 83
162
+ ```
163
+
164
+ ## Considerations for using the data
165
+
166
+ ### Recommended uses
167
 
168
+ - A reference list of numeric formats relevant to AI accelerator design
169
+ - A discovery aid: "is format X already catalogued? if so, what cluster?"
170
+ - A standards cross-walk anchor (IEEE 754, OCP, IEEE P3109, posit)
171
+ - A bibliography of the GoldenFloat family for accelerator-architecture researchers
172
+
173
+ ### Out of scope
174
+
175
+ - **Not a quality ranking.** `phi_distance = 0` means "field widths match the phi rule"; it does not mean "best format". Choose by use case, not by phi-distance.
176
+ - **Not exhaustive.** Vendor-proprietary in-house formats not published in standards bodies are omitted.
177
+ - **No silicon performance data.** For end-to-end silicon validation, see [`gHashTag/tt-trinity-corona`](https://github.com/gHashTag/tt-trinity-corona) (Tier 2 of the ruler stack).
178
+ - **No model accuracy claims.** This is a format-spec catalogue, not a quantisation benchmark.
179
+
180
+ ### Known limitations
181
+
182
+ - **Paper / SSOT count drift (84 vs 83).** Honest documentation note, see "Count reconciliation" above.
183
+ - **Status labels are non-uniform across clusters.** `Verified` requires silicon or formal proof; `Conj` is theoretical; `Risk` flags numerical or canonicality concerns.
184
+ - **GF cluster is over-represented (22 of 83 = 27%).** This is by construction -- this catalog originates in the GoldenFloat research line.
185
+ - **English-only.** No localisation of names / use cases.
186
+
187
+ ### Known biases
188
+
189
+ - **GoldenFloat-centred view.** Formats are ranked and labelled relative to the phi-structured field-width rule. Other research lines may legitimately disagree with the cluster taxonomy.
190
+
191
+ ## Citation
192
 
193
  ```bibtex
194
+ @misc{vasilev2026numericrulercatalog,
195
+ title = {Eighty Formats and a Ruler: A Comprehensive Numeric Format Catalog
196
+ for Phi-Structured and IEEE Floating-Point Arithmetic},
197
+ author = {Vasilev, Daniil and {Trinity S3AI}},
198
+ year = {2026},
199
+ eprint = {2606.09686},
200
+ archivePrefix = {arXiv},
201
+ primaryClass = {cs.AR},
202
+ url = {https://arxiv.org/abs/2606.09686}
203
+ }
204
+
205
+ @misc{trinitys3ai2026catalog,
206
+ title = {Numeric Format Catalog},
207
+ author = {{Trinity S3AI}},
208
+ year = {2026},
209
+ publisher = {Hugging Face},
210
+ url = {https://huggingface.co/datasets/playra/numeric-format-catalog}
211
  }
212
  ```
213
 
214
+ ## Maintenance and changelog
215
 
216
+ | Date | Version | Count | Change |
217
+ |---|---|---|---|
218
+ | 2026-06-10 | v1.0 | 77 | Initial release (shipped gen, stale) |
219
+ | 2026-06-10 | v2.0 | 81 | Re-derived from SSOT, hit parser bug (`bias_formula` `2^N-1` dropped) |
220
+ | 2026-06-13 | v3.0 | **83**| Parser fix landed in t27 [#1065](https://github.com/gHashTag/t27/pull/1065); SSOT and codegen now converge; full FAIR / Datasheets / Data Cards upgrade |
221
+
222
+ **Update cadence.** Regenerated whenever the SSOT changes. No fixed cadence. Major version bumps when count changes or schema changes.
223
+
224
+ **Contact.** `admin@t27.ai` -- async-only, ASCII-only.
225
+
226
+ ## Machine-readable metadata
227
+
228
+ - **Croissant JSON-LD:** [`croissant.json`](croissant.json) at repo root (MLCommons Croissant 1.0)
229
+ - **YAML metadata:** at the top of this file, machine-parseable per HF Hub spec
230
+ - **SHA-256 manifest:** [`SHA256SUMS.txt`](SHA256SUMS.txt)
231
+
232
+ ## Identity stack
233
 
234
+ - **Maintainer:** Vasilev Daniil (Trinity S3AI)
235
+ - **Email:** admin@t27.ai (sole canonical contact)
236
+ - **ORCID:** 0009-0008-4294-6159
237
+ - **GitHub:** gHashTag
238
+ - **HF org:** trinity-s3ai
239
+ - **Anchor identity:** `phi^2 + 1/phi^2 = 3`
croissant.json ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "@context": {
3
+ "@language": "en",
4
+ "@vocab": "https://schema.org/",
5
+ "sc": "https://schema.org/",
6
+ "cr": "http://mlcommons.org/croissant/",
7
+ "rai": "http://mlcommons.org/croissant/RAI/",
8
+ "data": {
9
+ "@id": "cr:data",
10
+ "@type": "@json"
11
+ },
12
+ "dataType": {
13
+ "@id": "cr:dataType",
14
+ "@type": "@vocab"
15
+ },
16
+ "examples": {
17
+ "@id": "cr:examples",
18
+ "@type": "@json"
19
+ },
20
+ "extract": "cr:extract",
21
+ "field": "cr:field",
22
+ "fileObject": "cr:fileObject",
23
+ "fileSet": "cr:fileSet",
24
+ "format": "cr:format",
25
+ "includes": "cr:includes",
26
+ "isLiveDataset": "cr:isLiveDataset",
27
+ "jsonPath": "cr:jsonPath",
28
+ "key": "cr:key",
29
+ "md5": "cr:md5",
30
+ "parentField": "cr:parentField",
31
+ "path": "cr:path",
32
+ "recordSet": "cr:recordSet",
33
+ "references": "cr:references",
34
+ "regex": "cr:regex",
35
+ "repeated": "cr:repeated",
36
+ "replace": "cr:replace",
37
+ "separator": "cr:separator",
38
+ "source": "cr:source",
39
+ "subField": "cr:subField",
40
+ "transform": "cr:transform"
41
+ },
42
+ "@type": "sc:Dataset",
43
+ "conformsTo": "http://mlcommons.org/croissant/1.0",
44
+ "name": "numeric-format-catalog",
45
+ "description": "Single-source-of-truth catalog of 83 numeric formats across 13 clusters (IEEE-754 binary/decimal, ML low-precision FP8/FP4/FP6/bf16, GoldenFloat phi-structured ladder GF4..GF1024, Posit/Unum-III, OCP Microscaling MXFP4/MXFP6/MXFP8, Logarithmic LNS, integer/fixed, historical vendor, theoretical, compression-trick, quantisation-tuned). Codegen derived from the gHashTag/t27 .t27 specification language; cross-validated against ml_dtypes 0.5.4 (Google/JAX) on overlapping formats; reconciled with IEEE P3109 v3.2.0.",
46
+ "url": "https://huggingface.co/datasets/playra/numeric-format-catalog",
47
+ "version": "3.0.0",
48
+ "datePublished": "2026-06-13",
49
+ "creator": {
50
+ "@type": "Person",
51
+ "name": "Dmitrii Vasilev",
52
+ "identifier": "https://orcid.org/0009-0008-4294-6159",
53
+ "email": "admin@t27.ai",
54
+ "affiliation": {
55
+ "@type": "Organization",
56
+ "name": "Trinity S3AI (independent research collective)"
57
+ }
58
+ },
59
+ "publisher": {
60
+ "@type": "Organization",
61
+ "name": "Trinity S3AI",
62
+ "url": "https://github.com/gHashTag"
63
+ },
64
+ "license": "https://creativecommons.org/licenses/by/4.0/",
65
+ "citeAs": "@misc{vasilev2026catalog, author = {Vasilev, Dmitrii}, title = {An 84-Format Numeric Catalog with Bit-Exact Conformance Vectors}, year = {2026}, eprint = {2606.09686}, archivePrefix = {arXiv}, primaryClass = {cs.MS}, doi = {10.48550/arXiv.2606.09686}}",
66
+ "keywords": [
67
+ "numeric formats",
68
+ "floating point",
69
+ "FP8",
70
+ "MXFP4",
71
+ "bfloat16",
72
+ "GoldenFloat",
73
+ "posit",
74
+ "P3109",
75
+ "OCP Microscaling",
76
+ "machine learning systems"
77
+ ],
78
+ "isLiveDataset": false,
79
+ "distribution": [
80
+ {
81
+ "@type": "cr:FileObject",
82
+ "@id": "formats_catalog_jsonl",
83
+ "name": "formats_catalog.jsonl",
84
+ "description": "Newline-delimited JSON, one numeric format record per line (83 lines).",
85
+ "contentUrl": "formats_catalog.jsonl",
86
+ "encodingFormat": "application/jsonlines",
87
+ "sha256": "bd04ba0c7fdc7dbb8f38a04d2f2635bc64b3667fabb7b313e852bc8904af5553"
88
+ },
89
+ {
90
+ "@type": "cr:FileObject",
91
+ "@id": "formats_catalog_json",
92
+ "name": "formats_catalog.json",
93
+ "description": "Single-document JSON array of 83 numeric format records.",
94
+ "contentUrl": "formats_catalog.json",
95
+ "encodingFormat": "application/json",
96
+ "sha256": "451e4f320f03f91a92cfcc6a9a56bfe829d8ce669ead25b3fda117ad12ec9d93"
97
+ }
98
+ ],
99
+ "recordSet": [
100
+ {
101
+ "@type": "cr:RecordSet",
102
+ "@id": "formats",
103
+ "name": "formats",
104
+ "description": "One record per numeric format (83 records).",
105
+ "key": {"@id": "formats/name"},
106
+ "field": [
107
+ {
108
+ "@type": "cr:Field",
109
+ "@id": "formats/name",
110
+ "name": "name",
111
+ "description": "Canonical short name (e.g. gf16, fp8_e4m3, mxfp4, bf16, posit8).",
112
+ "dataType": "sc:Text",
113
+ "source": {
114
+ "fileObject": {"@id": "formats_catalog_jsonl"},
115
+ "extract": {"jsonPath": "$.name"}
116
+ }
117
+ },
118
+ {
119
+ "@type": "cr:Field",
120
+ "@id": "formats/cluster",
121
+ "name": "cluster",
122
+ "description": "One of 13 cluster labels: GoldenFloat, HistoricalVendor, PositUnumIII, IntegerFixed, MlLowPrecision, Ieee754Binary, Lns, Theoretical, CompressionTrick, Ieee754Decimal, ExtendedFloat, Microscaling, QuantTuned.",
123
+ "dataType": "sc:Text",
124
+ "source": {
125
+ "fileObject": {"@id": "formats_catalog_jsonl"},
126
+ "extract": {"jsonPath": "$.cluster"}
127
+ }
128
+ },
129
+ {
130
+ "@type": "cr:Field",
131
+ "@id": "formats/total_bits",
132
+ "name": "total_bits",
133
+ "description": "Total bit width of the format.",
134
+ "dataType": "sc:Integer",
135
+ "source": {
136
+ "fileObject": {"@id": "formats_catalog_jsonl"},
137
+ "extract": {"jsonPath": "$.total_bits"}
138
+ }
139
+ },
140
+ {
141
+ "@type": "cr:Field",
142
+ "@id": "formats/sign_bits",
143
+ "name": "sign_bits",
144
+ "description": "Number of sign bits.",
145
+ "dataType": "sc:Integer",
146
+ "source": {
147
+ "fileObject": {"@id": "formats_catalog_jsonl"},
148
+ "extract": {"jsonPath": "$.sign_bits"}
149
+ }
150
+ },
151
+ {
152
+ "@type": "cr:Field",
153
+ "@id": "formats/exp_bits",
154
+ "name": "exp_bits",
155
+ "description": "Number of exponent bits.",
156
+ "dataType": "sc:Integer",
157
+ "source": {
158
+ "fileObject": {"@id": "formats_catalog_jsonl"},
159
+ "extract": {"jsonPath": "$.exp_bits"}
160
+ }
161
+ },
162
+ {
163
+ "@type": "cr:Field",
164
+ "@id": "formats/mant_bits",
165
+ "name": "mant_bits",
166
+ "description": "Number of mantissa/fraction bits.",
167
+ "dataType": "sc:Integer",
168
+ "source": {
169
+ "fileObject": {"@id": "formats_catalog_jsonl"},
170
+ "extract": {"jsonPath": "$.mant_bits"}
171
+ }
172
+ },
173
+ {
174
+ "@type": "cr:Field",
175
+ "@id": "formats/status",
176
+ "name": "status",
177
+ "description": "Claim status label: Verified, Empirical_fit, Open_conjecture, Risk, Retracted.",
178
+ "dataType": "sc:Text",
179
+ "source": {
180
+ "fileObject": {"@id": "formats_catalog_jsonl"},
181
+ "extract": {"jsonPath": "$.status"}
182
+ }
183
+ }
184
+ ]
185
+ }
186
+ ]
187
+ }
formats_catalog.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "count": 81,
3
  "formats": [
4
  {
5
  "id": "binary16",
@@ -9,6 +9,7 @@
9
  "e_bits": 5,
10
  "m_bits": 10,
11
  "bias": 15,
 
12
  "phi_distance": 0.118,
13
  "storage": "u16",
14
  "cluster": "Ieee754Binary",
@@ -26,6 +27,7 @@
26
  "e_bits": 8,
27
  "m_bits": 23,
28
  "bias": 127,
 
29
  "phi_distance": 0.27,
30
  "storage": "u32",
31
  "cluster": "Ieee754Binary",
@@ -43,6 +45,7 @@
43
  "e_bits": 11,
44
  "m_bits": 52,
45
  "bias": 1023,
 
46
  "phi_distance": 0.406,
47
  "storage": "u64",
48
  "cluster": "Ieee754Binary",
@@ -60,6 +63,7 @@
60
  "e_bits": 15,
61
  "m_bits": 112,
62
  "bias": 16383,
 
63
  "phi_distance": 0.484,
64
  "storage": "u128",
65
  "cluster": "Ieee754Binary",
@@ -77,6 +81,7 @@
77
  "e_bits": 19,
78
  "m_bits": 236,
79
  "bias": 262143,
 
80
  "phi_distance": 0.538,
81
  "storage": "u256_software",
82
  "cluster": "Ieee754Binary",
@@ -94,6 +99,7 @@
94
  "e_bits": 11,
95
  "m_bits": 20,
96
  "bias": 101,
 
97
  "phi_distance": -1.0,
98
  "storage": "u32",
99
  "cluster": "Ieee754Decimal",
@@ -111,6 +117,7 @@
111
  "e_bits": 13,
112
  "m_bits": 50,
113
  "bias": 398,
 
114
  "phi_distance": -1.0,
115
  "storage": "u64",
116
  "cluster": "Ieee754Decimal",
@@ -128,6 +135,7 @@
128
  "e_bits": 17,
129
  "m_bits": 110,
130
  "bias": 6176,
 
131
  "phi_distance": -1.0,
132
  "storage": "u128",
133
  "cluster": "Ieee754Decimal",
@@ -145,6 +153,7 @@
145
  "e_bits": 15,
146
  "m_bits": 64,
147
  "bias": 16383,
 
148
  "phi_distance": -1.0,
149
  "storage": "u80_padded",
150
  "cluster": "ExtendedFloat",
@@ -162,6 +171,7 @@
162
  "e_bits": 22,
163
  "m_bits": 104,
164
  "bias": 0,
 
165
  "phi_distance": -1.0,
166
  "storage": "two_u64",
167
  "cluster": "ExtendedFloat",
@@ -179,6 +189,7 @@
179
  "e_bits": 44,
180
  "m_bits": 208,
181
  "bias": 0,
 
182
  "phi_distance": -1.0,
183
  "storage": "four_u64",
184
  "cluster": "ExtendedFloat",
@@ -196,6 +207,7 @@
196
  "e_bits": 8,
197
  "m_bits": 7,
198
  "bias": 127,
 
199
  "phi_distance": 0.525,
200
  "storage": "u16",
201
  "cluster": "MlLowPrecision",
@@ -213,6 +225,7 @@
213
  "e_bits": 8,
214
  "m_bits": 10,
215
  "bias": 127,
 
216
  "phi_distance": 0.27,
217
  "storage": "u32_padded",
218
  "cluster": "MlLowPrecision",
@@ -230,6 +243,7 @@
230
  "e_bits": 4,
231
  "m_bits": 3,
232
  "bias": 7,
 
233
  "phi_distance": 0.715,
234
  "storage": "u8",
235
  "cluster": "MlLowPrecision",
@@ -247,6 +261,7 @@
247
  "e_bits": 5,
248
  "m_bits": 2,
249
  "bias": 15,
 
250
  "phi_distance": 1.882,
251
  "storage": "u8",
252
  "cluster": "MlLowPrecision",
@@ -264,6 +279,7 @@
264
  "e_bits": 3,
265
  "m_bits": 2,
266
  "bias": 3,
 
267
  "phi_distance": 0.882,
268
  "storage": "u8_packed",
269
  "cluster": "MlLowPrecision",
@@ -281,6 +297,7 @@
281
  "e_bits": 2,
282
  "m_bits": 3,
283
  "bias": 1,
 
284
  "phi_distance": 0.049,
285
  "storage": "u8_packed",
286
  "cluster": "MlLowPrecision",
@@ -298,6 +315,7 @@
298
  "e_bits": 2,
299
  "m_bits": 1,
300
  "bias": 1,
 
301
  "phi_distance": 1.382,
302
  "storage": "u8_packed",
303
  "cluster": "MlLowPrecision",
@@ -315,6 +333,7 @@
315
  "e_bits": 4,
316
  "m_bits": 3,
317
  "bias": 7,
 
318
  "phi_distance": 0.715,
319
  "storage": "u8_plus_shared_e8m0",
320
  "cluster": "Microscaling",
@@ -332,6 +351,7 @@
332
  "e_bits": 3,
333
  "m_bits": 2,
334
  "bias": 3,
 
335
  "phi_distance": 0.882,
336
  "storage": "u8_packed_plus_e8m0",
337
  "cluster": "Microscaling",
@@ -349,6 +369,7 @@
349
  "e_bits": 2,
350
  "m_bits": 1,
351
  "bias": 1,
 
352
  "phi_distance": 1.382,
353
  "storage": "u8_packed_plus_e8m0",
354
  "cluster": "Microscaling",
@@ -366,6 +387,7 @@
366
  "e_bits": 0,
367
  "m_bits": 4,
368
  "bias": 0,
 
369
  "phi_distance": -1.0,
370
  "storage": "u8_packed",
371
  "cluster": "QuantTuned",
@@ -383,6 +405,7 @@
383
  "e_bits": 8,
384
  "m_bits": 7,
385
  "bias": 127,
 
386
  "phi_distance": -1.0,
387
  "storage": "u16_plus_tensor_shift",
388
  "cluster": "QuantTuned",
@@ -400,6 +423,7 @@
400
  "e_bits": 2,
401
  "m_bits": 0,
402
  "bias": 0,
 
403
  "phi_distance": -1.0,
404
  "storage": "u8",
405
  "cluster": "PositUnumIII",
@@ -417,6 +441,7 @@
417
  "e_bits": 2,
418
  "m_bits": 0,
419
  "bias": 0,
 
420
  "phi_distance": -1.0,
421
  "storage": "u16",
422
  "cluster": "PositUnumIII",
@@ -434,6 +459,7 @@
434
  "e_bits": 2,
435
  "m_bits": 0,
436
  "bias": 0,
 
437
  "phi_distance": -1.0,
438
  "storage": "u32",
439
  "cluster": "PositUnumIII",
@@ -451,6 +477,7 @@
451
  "e_bits": 2,
452
  "m_bits": 0,
453
  "bias": 0,
 
454
  "phi_distance": -1.0,
455
  "storage": "u64",
456
  "cluster": "PositUnumIII",
@@ -468,6 +495,7 @@
468
  "e_bits": 0,
469
  "m_bits": 0,
470
  "bias": 0,
 
471
  "phi_distance": -1.0,
472
  "storage": "u8",
473
  "cluster": "PositUnumIII",
@@ -485,6 +513,7 @@
485
  "e_bits": 0,
486
  "m_bits": 0,
487
  "bias": 0,
 
488
  "phi_distance": -1.0,
489
  "storage": "u16",
490
  "cluster": "PositUnumIII",
@@ -502,6 +531,7 @@
502
  "e_bits": 0,
503
  "m_bits": 0,
504
  "bias": 0,
 
505
  "phi_distance": -1.0,
506
  "storage": "u32",
507
  "cluster": "PositUnumIII",
@@ -519,6 +549,7 @@
519
  "e_bits": 0,
520
  "m_bits": 0,
521
  "bias": 0,
 
522
  "phi_distance": -1.0,
523
  "storage": "u64",
524
  "cluster": "PositUnumIII",
@@ -536,6 +567,7 @@
536
  "e_bits": 7,
537
  "m_bits": 0,
538
  "bias": 0,
 
539
  "phi_distance": -1.0,
540
  "storage": "u8",
541
  "cluster": "Lns",
@@ -553,6 +585,7 @@
553
  "e_bits": 15,
554
  "m_bits": 0,
555
  "bias": 0,
 
556
  "phi_distance": -1.0,
557
  "storage": "u16",
558
  "cluster": "Lns",
@@ -570,6 +603,7 @@
570
  "e_bits": 31,
571
  "m_bits": 0,
572
  "bias": 0,
 
573
  "phi_distance": -1.0,
574
  "storage": "u32",
575
  "cluster": "Lns",
@@ -587,6 +621,7 @@
587
  "e_bits": 63,
588
  "m_bits": 0,
589
  "bias": 0,
 
590
  "phi_distance": -1.0,
591
  "storage": "u64",
592
  "cluster": "Lns",
@@ -604,6 +639,7 @@
604
  "e_bits": 0,
605
  "m_bits": 2,
606
  "bias": 0,
 
607
  "phi_distance": 0.0,
608
  "storage": "u2",
609
  "cluster": "GoldenFloat",
@@ -621,6 +657,7 @@
621
  "e_bits": 1,
622
  "m_bits": 2,
623
  "bias": 0,
 
624
  "phi_distance": 0.118,
625
  "storage": "u8",
626
  "cluster": "GoldenFloat",
@@ -638,6 +675,7 @@
638
  "e_bits": 3,
639
  "m_bits": 4,
640
  "bias": 3,
 
641
  "phi_distance": 0.132,
642
  "storage": "u8",
643
  "cluster": "GoldenFloat",
@@ -655,6 +693,7 @@
655
  "e_bits": 4,
656
  "m_bits": 7,
657
  "bias": 7,
 
658
  "phi_distance": 0.047,
659
  "storage": "u16",
660
  "cluster": "GoldenFloat",
@@ -672,6 +711,7 @@
672
  "e_bits": 6,
673
  "m_bits": 9,
674
  "bias": 31,
 
675
  "phi_distance": 0.049,
676
  "storage": "u16",
677
  "cluster": "GoldenFloat",
@@ -689,6 +729,7 @@
689
  "e_bits": 7,
690
  "m_bits": 12,
691
  "bias": 63,
 
692
  "phi_distance": 0.035,
693
  "storage": "u32",
694
  "cluster": "GoldenFloat",
@@ -706,6 +747,7 @@
706
  "e_bits": 9,
707
  "m_bits": 14,
708
  "bias": 255,
 
709
  "phi_distance": 0.025,
710
  "storage": "u32",
711
  "cluster": "GoldenFloat",
@@ -723,6 +765,7 @@
723
  "e_bits": 12,
724
  "m_bits": 19,
725
  "bias": 2047,
 
726
  "phi_distance": 0.014,
727
  "storage": "u32",
728
  "cluster": "GoldenFloat",
@@ -740,6 +783,7 @@
740
  "e_bits": 24,
741
  "m_bits": 39,
742
  "bias": 8388607,
 
743
  "phi_distance": 0.003,
744
  "storage": "u64",
745
  "cluster": "GoldenFloat",
@@ -757,6 +801,7 @@
757
  "e_bits": 2,
758
  "m_bits": 3,
759
  "bias": 1,
 
760
  "phi_distance": 0.049,
761
  "storage": "u8_packed",
762
  "cluster": "GoldenFloat",
@@ -774,6 +819,7 @@
774
  "e_bits": 3,
775
  "m_bits": 6,
776
  "bias": 3,
 
777
  "phi_distance": 0.118,
778
  "storage": "u16",
779
  "cluster": "GoldenFloat",
@@ -791,6 +837,7 @@
791
  "e_bits": 5,
792
  "m_bits": 8,
793
  "bias": 15,
 
794
  "phi_distance": 0.007,
795
  "storage": "u16",
796
  "cluster": "GoldenFloat",
@@ -808,6 +855,7 @@
808
  "e_bits": 18,
809
  "m_bits": 29,
810
  "bias": 131071,
 
811
  "phi_distance": 0.003,
812
  "storage": "u64_padded",
813
  "cluster": "GoldenFloat",
@@ -825,6 +873,7 @@
825
  "e_bits": 36,
826
  "m_bits": 59,
827
  "bias": 34359738367,
 
828
  "phi_distance": 0.008,
829
  "storage": "u128_padded",
830
  "cluster": "GoldenFloat",
@@ -842,6 +891,7 @@
842
  "e_bits": 49,
843
  "m_bits": 78,
844
  "bias": 281474976710655,
 
845
  "phi_distance": 0.01,
846
  "storage": "u128",
847
  "cluster": "GoldenFloat",
@@ -859,6 +909,7 @@
859
  "e_bits": 97,
860
  "m_bits": 158,
861
  "bias": 79228162514264337593543950335,
 
862
  "phi_distance": 0.004,
863
  "storage": "u256_software",
864
  "cluster": "GoldenFloat",
@@ -868,6 +919,42 @@
868
  "gf_relation": "experimental",
869
  "source": "specs/numeric/gf256.t27"
870
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
871
  {
872
  "id": "gf8_bfp",
873
  "name": "GF8-BFP (block FP atop GF8)",
@@ -876,6 +963,7 @@
876
  "e_bits": 3,
877
  "m_bits": 4,
878
  "bias": 3,
 
879
  "phi_distance": 0.132,
880
  "storage": "u8_plus_shared_exp",
881
  "cluster": "GoldenFloat",
@@ -893,6 +981,7 @@
893
  "e_bits": 6,
894
  "m_bits": 9,
895
  "bias": 31,
 
896
  "phi_distance": 0.049,
897
  "storage": "u16_plus_lns_path",
898
  "cluster": "GoldenFloat",
@@ -910,6 +999,7 @@
910
  "e_bits": 2,
911
  "m_bits": 3,
912
  "bias": 1,
 
913
  "phi_distance": 0.05,
914
  "storage": "u8_packed_plus_e8m0",
915
  "cluster": "GoldenFloat",
@@ -927,6 +1017,7 @@
927
  "e_bits": 1,
928
  "m_bits": 2,
929
  "bias": 0,
 
930
  "phi_distance": 0.118,
931
  "storage": "u8_packed_plus_e8m0",
932
  "cluster": "GoldenFloat",
@@ -944,6 +1035,7 @@
944
  "e_bits": 0,
945
  "m_bits": 3,
946
  "bias": 0,
 
947
  "phi_distance": -1.0,
948
  "storage": "u8_packed",
949
  "cluster": "IntegerFixed",
@@ -961,6 +1053,7 @@
961
  "e_bits": 0,
962
  "m_bits": 7,
963
  "bias": 0,
 
964
  "phi_distance": -1.0,
965
  "storage": "u8",
966
  "cluster": "IntegerFixed",
@@ -978,6 +1071,7 @@
978
  "e_bits": 0,
979
  "m_bits": 15,
980
  "bias": 0,
 
981
  "phi_distance": -1.0,
982
  "storage": "u16",
983
  "cluster": "IntegerFixed",
@@ -995,6 +1089,7 @@
995
  "e_bits": 0,
996
  "m_bits": 31,
997
  "bias": 0,
 
998
  "phi_distance": -1.0,
999
  "storage": "u32",
1000
  "cluster": "IntegerFixed",
@@ -1012,6 +1107,7 @@
1012
  "e_bits": 0,
1013
  "m_bits": 63,
1014
  "bias": 0,
 
1015
  "phi_distance": -1.0,
1016
  "storage": "u64",
1017
  "cluster": "IntegerFixed",
@@ -1029,6 +1125,7 @@
1029
  "e_bits": 0,
1030
  "m_bits": 127,
1031
  "bias": 0,
 
1032
  "phi_distance": -1.0,
1033
  "storage": "u128",
1034
  "cluster": "IntegerFixed",
@@ -1046,6 +1143,7 @@
1046
  "e_bits": 0,
1047
  "m_bits": 0,
1048
  "bias": 0,
 
1049
  "phi_distance": -1.0,
1050
  "storage": "varies",
1051
  "cluster": "IntegerFixed",
@@ -1063,6 +1161,7 @@
1063
  "e_bits": 0,
1064
  "m_bits": 0,
1065
  "bias": 0,
 
1066
  "phi_distance": -1.0,
1067
  "storage": "u4_per_digit",
1068
  "cluster": "IntegerFixed",
@@ -1080,6 +1179,7 @@
1080
  "e_bits": 7,
1081
  "m_bits": 24,
1082
  "bias": 64,
 
1083
  "phi_distance": -1.0,
1084
  "storage": "u32",
1085
  "cluster": "HistoricalVendor",
@@ -1097,6 +1197,7 @@
1097
  "e_bits": 7,
1098
  "m_bits": 56,
1099
  "bias": 64,
 
1100
  "phi_distance": -1.0,
1101
  "storage": "u64",
1102
  "cluster": "HistoricalVendor",
@@ -1114,6 +1215,7 @@
1114
  "e_bits": 7,
1115
  "m_bits": 120,
1116
  "bias": 64,
 
1117
  "phi_distance": -1.0,
1118
  "storage": "u128",
1119
  "cluster": "HistoricalVendor",
@@ -1131,6 +1233,7 @@
1131
  "e_bits": 8,
1132
  "m_bits": 23,
1133
  "bias": 129,
 
1134
  "phi_distance": -1.0,
1135
  "storage": "u32",
1136
  "cluster": "HistoricalVendor",
@@ -1148,6 +1251,7 @@
1148
  "e_bits": 8,
1149
  "m_bits": 55,
1150
  "bias": 129,
 
1151
  "phi_distance": -1.0,
1152
  "storage": "u64",
1153
  "cluster": "HistoricalVendor",
@@ -1165,6 +1269,7 @@
1165
  "e_bits": 8,
1166
  "m_bits": 23,
1167
  "bias": 128,
 
1168
  "phi_distance": -1.0,
1169
  "storage": "u32",
1170
  "cluster": "HistoricalVendor",
@@ -1182,6 +1287,7 @@
1182
  "e_bits": 8,
1183
  "m_bits": 55,
1184
  "bias": 128,
 
1185
  "phi_distance": -1.0,
1186
  "storage": "u64",
1187
  "cluster": "HistoricalVendor",
@@ -1199,6 +1305,7 @@
1199
  "e_bits": 11,
1200
  "m_bits": 52,
1201
  "bias": 1024,
 
1202
  "phi_distance": -1.0,
1203
  "storage": "u64",
1204
  "cluster": "HistoricalVendor",
@@ -1216,6 +1323,7 @@
1216
  "e_bits": 15,
1217
  "m_bits": 112,
1218
  "bias": 16384,
 
1219
  "phi_distance": -1.0,
1220
  "storage": "u128",
1221
  "cluster": "HistoricalVendor",
@@ -1233,6 +1341,7 @@
1233
  "e_bits": 15,
1234
  "m_bits": 48,
1235
  "bias": 16384,
 
1236
  "phi_distance": -1.0,
1237
  "storage": "u64",
1238
  "cluster": "HistoricalVendor",
@@ -1250,6 +1359,7 @@
1250
  "e_bits": 0,
1251
  "m_bits": 0,
1252
  "bias": 0,
 
1253
  "phi_distance": -1.0,
1254
  "storage": "varies",
1255
  "cluster": "Theoretical",
@@ -1267,6 +1377,7 @@
1267
  "e_bits": 0,
1268
  "m_bits": 0,
1269
  "bias": 0,
 
1270
  "phi_distance": -1.0,
1271
  "storage": "varies",
1272
  "cluster": "Theoretical",
@@ -1284,6 +1395,7 @@
1284
  "e_bits": 0,
1285
  "m_bits": 0,
1286
  "bias": 0,
 
1287
  "phi_distance": -1.0,
1288
  "storage": "lookup_table",
1289
  "cluster": "Theoretical",
@@ -1301,6 +1413,7 @@
1301
  "e_bits": 0,
1302
  "m_bits": 0,
1303
  "bias": 0,
 
1304
  "phi_distance": -1.0,
1305
  "storage": "varies",
1306
  "cluster": "Theoretical",
@@ -1318,6 +1431,7 @@
1318
  "e_bits": 0,
1319
  "m_bits": 0,
1320
  "bias": 0,
 
1321
  "phi_distance": -1.0,
1322
  "storage": "varies",
1323
  "cluster": "CompressionTrick",
@@ -1335,6 +1449,7 @@
1335
  "e_bits": 0,
1336
  "m_bits": 0,
1337
  "bias": 0,
 
1338
  "phi_distance": -1.0,
1339
  "storage": "varies",
1340
  "cluster": "CompressionTrick",
@@ -1352,6 +1467,7 @@
1352
  "e_bits": 0,
1353
  "m_bits": 7,
1354
  "bias": 0,
 
1355
  "phi_distance": -1.0,
1356
  "storage": "u8_plus_fp32_scale",
1357
  "cluster": "CompressionTrick",
@@ -1369,6 +1485,7 @@
1369
  "e_bits": 0,
1370
  "m_bits": 0,
1371
  "bias": 0,
 
1372
  "phi_distance": -1.0,
1373
  "storage": "varies",
1374
  "cluster": "CompressionTrick",
 
1
  {
2
+ "count": 83,
3
  "formats": [
4
  {
5
  "id": "binary16",
 
9
  "e_bits": 5,
10
  "m_bits": 10,
11
  "bias": 15,
12
+ "bias_formula": "15",
13
  "phi_distance": 0.118,
14
  "storage": "u16",
15
  "cluster": "Ieee754Binary",
 
27
  "e_bits": 8,
28
  "m_bits": 23,
29
  "bias": 127,
30
+ "bias_formula": "127",
31
  "phi_distance": 0.27,
32
  "storage": "u32",
33
  "cluster": "Ieee754Binary",
 
45
  "e_bits": 11,
46
  "m_bits": 52,
47
  "bias": 1023,
48
+ "bias_formula": "1023",
49
  "phi_distance": 0.406,
50
  "storage": "u64",
51
  "cluster": "Ieee754Binary",
 
63
  "e_bits": 15,
64
  "m_bits": 112,
65
  "bias": 16383,
66
+ "bias_formula": "16383",
67
  "phi_distance": 0.484,
68
  "storage": "u128",
69
  "cluster": "Ieee754Binary",
 
81
  "e_bits": 19,
82
  "m_bits": 236,
83
  "bias": 262143,
84
+ "bias_formula": "262143",
85
  "phi_distance": 0.538,
86
  "storage": "u256_software",
87
  "cluster": "Ieee754Binary",
 
99
  "e_bits": 11,
100
  "m_bits": 20,
101
  "bias": 101,
102
+ "bias_formula": "101",
103
  "phi_distance": -1.0,
104
  "storage": "u32",
105
  "cluster": "Ieee754Decimal",
 
117
  "e_bits": 13,
118
  "m_bits": 50,
119
  "bias": 398,
120
+ "bias_formula": "398",
121
  "phi_distance": -1.0,
122
  "storage": "u64",
123
  "cluster": "Ieee754Decimal",
 
135
  "e_bits": 17,
136
  "m_bits": 110,
137
  "bias": 6176,
138
+ "bias_formula": "6176",
139
  "phi_distance": -1.0,
140
  "storage": "u128",
141
  "cluster": "Ieee754Decimal",
 
153
  "e_bits": 15,
154
  "m_bits": 64,
155
  "bias": 16383,
156
+ "bias_formula": "16383",
157
  "phi_distance": -1.0,
158
  "storage": "u80_padded",
159
  "cluster": "ExtendedFloat",
 
171
  "e_bits": 22,
172
  "m_bits": 104,
173
  "bias": 0,
174
+ "bias_formula": "0",
175
  "phi_distance": -1.0,
176
  "storage": "two_u64",
177
  "cluster": "ExtendedFloat",
 
189
  "e_bits": 44,
190
  "m_bits": 208,
191
  "bias": 0,
192
+ "bias_formula": "0",
193
  "phi_distance": -1.0,
194
  "storage": "four_u64",
195
  "cluster": "ExtendedFloat",
 
207
  "e_bits": 8,
208
  "m_bits": 7,
209
  "bias": 127,
210
+ "bias_formula": "127",
211
  "phi_distance": 0.525,
212
  "storage": "u16",
213
  "cluster": "MlLowPrecision",
 
225
  "e_bits": 8,
226
  "m_bits": 10,
227
  "bias": 127,
228
+ "bias_formula": "127",
229
  "phi_distance": 0.27,
230
  "storage": "u32_padded",
231
  "cluster": "MlLowPrecision",
 
243
  "e_bits": 4,
244
  "m_bits": 3,
245
  "bias": 7,
246
+ "bias_formula": "7",
247
  "phi_distance": 0.715,
248
  "storage": "u8",
249
  "cluster": "MlLowPrecision",
 
261
  "e_bits": 5,
262
  "m_bits": 2,
263
  "bias": 15,
264
+ "bias_formula": "15",
265
  "phi_distance": 1.882,
266
  "storage": "u8",
267
  "cluster": "MlLowPrecision",
 
279
  "e_bits": 3,
280
  "m_bits": 2,
281
  "bias": 3,
282
+ "bias_formula": "3",
283
  "phi_distance": 0.882,
284
  "storage": "u8_packed",
285
  "cluster": "MlLowPrecision",
 
297
  "e_bits": 2,
298
  "m_bits": 3,
299
  "bias": 1,
300
+ "bias_formula": "1",
301
  "phi_distance": 0.049,
302
  "storage": "u8_packed",
303
  "cluster": "MlLowPrecision",
 
315
  "e_bits": 2,
316
  "m_bits": 1,
317
  "bias": 1,
318
+ "bias_formula": "1",
319
  "phi_distance": 1.382,
320
  "storage": "u8_packed",
321
  "cluster": "MlLowPrecision",
 
333
  "e_bits": 4,
334
  "m_bits": 3,
335
  "bias": 7,
336
+ "bias_formula": "7",
337
  "phi_distance": 0.715,
338
  "storage": "u8_plus_shared_e8m0",
339
  "cluster": "Microscaling",
 
351
  "e_bits": 3,
352
  "m_bits": 2,
353
  "bias": 3,
354
+ "bias_formula": "3",
355
  "phi_distance": 0.882,
356
  "storage": "u8_packed_plus_e8m0",
357
  "cluster": "Microscaling",
 
369
  "e_bits": 2,
370
  "m_bits": 1,
371
  "bias": 1,
372
+ "bias_formula": "1",
373
  "phi_distance": 1.382,
374
  "storage": "u8_packed_plus_e8m0",
375
  "cluster": "Microscaling",
 
387
  "e_bits": 0,
388
  "m_bits": 4,
389
  "bias": 0,
390
+ "bias_formula": "0",
391
  "phi_distance": -1.0,
392
  "storage": "u8_packed",
393
  "cluster": "QuantTuned",
 
405
  "e_bits": 8,
406
  "m_bits": 7,
407
  "bias": 127,
408
+ "bias_formula": "127",
409
  "phi_distance": -1.0,
410
  "storage": "u16_plus_tensor_shift",
411
  "cluster": "QuantTuned",
 
423
  "e_bits": 2,
424
  "m_bits": 0,
425
  "bias": 0,
426
+ "bias_formula": "0",
427
  "phi_distance": -1.0,
428
  "storage": "u8",
429
  "cluster": "PositUnumIII",
 
441
  "e_bits": 2,
442
  "m_bits": 0,
443
  "bias": 0,
444
+ "bias_formula": "0",
445
  "phi_distance": -1.0,
446
  "storage": "u16",
447
  "cluster": "PositUnumIII",
 
459
  "e_bits": 2,
460
  "m_bits": 0,
461
  "bias": 0,
462
+ "bias_formula": "0",
463
  "phi_distance": -1.0,
464
  "storage": "u32",
465
  "cluster": "PositUnumIII",
 
477
  "e_bits": 2,
478
  "m_bits": 0,
479
  "bias": 0,
480
+ "bias_formula": "0",
481
  "phi_distance": -1.0,
482
  "storage": "u64",
483
  "cluster": "PositUnumIII",
 
495
  "e_bits": 0,
496
  "m_bits": 0,
497
  "bias": 0,
498
+ "bias_formula": "0",
499
  "phi_distance": -1.0,
500
  "storage": "u8",
501
  "cluster": "PositUnumIII",
 
513
  "e_bits": 0,
514
  "m_bits": 0,
515
  "bias": 0,
516
+ "bias_formula": "0",
517
  "phi_distance": -1.0,
518
  "storage": "u16",
519
  "cluster": "PositUnumIII",
 
531
  "e_bits": 0,
532
  "m_bits": 0,
533
  "bias": 0,
534
+ "bias_formula": "0",
535
  "phi_distance": -1.0,
536
  "storage": "u32",
537
  "cluster": "PositUnumIII",
 
549
  "e_bits": 0,
550
  "m_bits": 0,
551
  "bias": 0,
552
+ "bias_formula": "0",
553
  "phi_distance": -1.0,
554
  "storage": "u64",
555
  "cluster": "PositUnumIII",
 
567
  "e_bits": 7,
568
  "m_bits": 0,
569
  "bias": 0,
570
+ "bias_formula": "0",
571
  "phi_distance": -1.0,
572
  "storage": "u8",
573
  "cluster": "Lns",
 
585
  "e_bits": 15,
586
  "m_bits": 0,
587
  "bias": 0,
588
+ "bias_formula": "0",
589
  "phi_distance": -1.0,
590
  "storage": "u16",
591
  "cluster": "Lns",
 
603
  "e_bits": 31,
604
  "m_bits": 0,
605
  "bias": 0,
606
+ "bias_formula": "0",
607
  "phi_distance": -1.0,
608
  "storage": "u32",
609
  "cluster": "Lns",
 
621
  "e_bits": 63,
622
  "m_bits": 0,
623
  "bias": 0,
624
+ "bias_formula": "0",
625
  "phi_distance": -1.0,
626
  "storage": "u64",
627
  "cluster": "Lns",
 
639
  "e_bits": 0,
640
  "m_bits": 2,
641
  "bias": 0,
642
+ "bias_formula": "0",
643
  "phi_distance": 0.0,
644
  "storage": "u2",
645
  "cluster": "GoldenFloat",
 
657
  "e_bits": 1,
658
  "m_bits": 2,
659
  "bias": 0,
660
+ "bias_formula": "0",
661
  "phi_distance": 0.118,
662
  "storage": "u8",
663
  "cluster": "GoldenFloat",
 
675
  "e_bits": 3,
676
  "m_bits": 4,
677
  "bias": 3,
678
+ "bias_formula": "3",
679
  "phi_distance": 0.132,
680
  "storage": "u8",
681
  "cluster": "GoldenFloat",
 
693
  "e_bits": 4,
694
  "m_bits": 7,
695
  "bias": 7,
696
+ "bias_formula": "7",
697
  "phi_distance": 0.047,
698
  "storage": "u16",
699
  "cluster": "GoldenFloat",
 
711
  "e_bits": 6,
712
  "m_bits": 9,
713
  "bias": 31,
714
+ "bias_formula": "31",
715
  "phi_distance": 0.049,
716
  "storage": "u16",
717
  "cluster": "GoldenFloat",
 
729
  "e_bits": 7,
730
  "m_bits": 12,
731
  "bias": 63,
732
+ "bias_formula": "63",
733
  "phi_distance": 0.035,
734
  "storage": "u32",
735
  "cluster": "GoldenFloat",
 
747
  "e_bits": 9,
748
  "m_bits": 14,
749
  "bias": 255,
750
+ "bias_formula": "255",
751
  "phi_distance": 0.025,
752
  "storage": "u32",
753
  "cluster": "GoldenFloat",
 
765
  "e_bits": 12,
766
  "m_bits": 19,
767
  "bias": 2047,
768
+ "bias_formula": "2047",
769
  "phi_distance": 0.014,
770
  "storage": "u32",
771
  "cluster": "GoldenFloat",
 
783
  "e_bits": 24,
784
  "m_bits": 39,
785
  "bias": 8388607,
786
+ "bias_formula": "8388607",
787
  "phi_distance": 0.003,
788
  "storage": "u64",
789
  "cluster": "GoldenFloat",
 
801
  "e_bits": 2,
802
  "m_bits": 3,
803
  "bias": 1,
804
+ "bias_formula": "1",
805
  "phi_distance": 0.049,
806
  "storage": "u8_packed",
807
  "cluster": "GoldenFloat",
 
819
  "e_bits": 3,
820
  "m_bits": 6,
821
  "bias": 3,
822
+ "bias_formula": "3",
823
  "phi_distance": 0.118,
824
  "storage": "u16",
825
  "cluster": "GoldenFloat",
 
837
  "e_bits": 5,
838
  "m_bits": 8,
839
  "bias": 15,
840
+ "bias_formula": "15",
841
  "phi_distance": 0.007,
842
  "storage": "u16",
843
  "cluster": "GoldenFloat",
 
855
  "e_bits": 18,
856
  "m_bits": 29,
857
  "bias": 131071,
858
+ "bias_formula": "131071",
859
  "phi_distance": 0.003,
860
  "storage": "u64_padded",
861
  "cluster": "GoldenFloat",
 
873
  "e_bits": 36,
874
  "m_bits": 59,
875
  "bias": 34359738367,
876
+ "bias_formula": "34359738367",
877
  "phi_distance": 0.008,
878
  "storage": "u128_padded",
879
  "cluster": "GoldenFloat",
 
891
  "e_bits": 49,
892
  "m_bits": 78,
893
  "bias": 281474976710655,
894
+ "bias_formula": "281474976710655",
895
  "phi_distance": 0.01,
896
  "storage": "u128",
897
  "cluster": "GoldenFloat",
 
909
  "e_bits": 97,
910
  "m_bits": 158,
911
  "bias": 79228162514264337593543950335,
912
+ "bias_formula": "79228162514264337593543950335",
913
  "phi_distance": 0.004,
914
  "storage": "u256_software",
915
  "cluster": "GoldenFloat",
 
919
  "gf_relation": "experimental",
920
  "source": "specs/numeric/gf256.t27"
921
  },
922
+ {
923
+ "id": "gf512",
924
+ "name": "GF512 (rule-derived)",
925
+ "bits": 512,
926
+ "s_bits": 1,
927
+ "e_bits": 195,
928
+ "m_bits": 316,
929
+ "bias": -2,
930
+ "bias_formula": "2^194-1",
931
+ "phi_distance": 0.0009,
932
+ "storage": "u512_software",
933
+ "cluster": "GoldenFloat",
934
+ "status": "Open",
935
+ "standard": "this work; rule e=round(511/phi^2)=195",
936
+ "use_case": "OPEN R&D: ultra-wide phi-aligned (extrapolation, no RTL)",
937
+ "gf_relation": "experimental",
938
+ "source": "specs/numeric/gf512.t27"
939
+ },
940
+ {
941
+ "id": "gf1024",
942
+ "name": "GF1024 (rule-derived)",
943
+ "bits": 1024,
944
+ "s_bits": 1,
945
+ "e_bits": 391,
946
+ "m_bits": 632,
947
+ "bias": -2,
948
+ "bias_formula": "2^390-1",
949
+ "phi_distance": 0.0006,
950
+ "storage": "u1024_software",
951
+ "cluster": "GoldenFloat",
952
+ "status": "Open",
953
+ "standard": "this work; rule e=round(1023/phi^2)=391; lowest phi-distance in the ladder",
954
+ "use_case": "OPEN R&D: limit-of-ladder phi alignment (extrapolation, no RTL)",
955
+ "gf_relation": "experimental",
956
+ "source": "specs/numeric/gf1024.t27"
957
+ },
958
  {
959
  "id": "gf8_bfp",
960
  "name": "GF8-BFP (block FP atop GF8)",
 
963
  "e_bits": 3,
964
  "m_bits": 4,
965
  "bias": 3,
966
+ "bias_formula": "3",
967
  "phi_distance": 0.132,
968
  "storage": "u8_plus_shared_exp",
969
  "cluster": "GoldenFloat",
 
981
  "e_bits": 6,
982
  "m_bits": 9,
983
  "bias": 31,
984
+ "bias_formula": "31",
985
  "phi_distance": 0.049,
986
  "storage": "u16_plus_lns_path",
987
  "cluster": "GoldenFloat",
 
999
  "e_bits": 2,
1000
  "m_bits": 3,
1001
  "bias": 1,
1002
+ "bias_formula": "1",
1003
  "phi_distance": 0.05,
1004
  "storage": "u8_packed_plus_e8m0",
1005
  "cluster": "GoldenFloat",
 
1017
  "e_bits": 1,
1018
  "m_bits": 2,
1019
  "bias": 0,
1020
+ "bias_formula": "0",
1021
  "phi_distance": 0.118,
1022
  "storage": "u8_packed_plus_e8m0",
1023
  "cluster": "GoldenFloat",
 
1035
  "e_bits": 0,
1036
  "m_bits": 3,
1037
  "bias": 0,
1038
+ "bias_formula": "0",
1039
  "phi_distance": -1.0,
1040
  "storage": "u8_packed",
1041
  "cluster": "IntegerFixed",
 
1053
  "e_bits": 0,
1054
  "m_bits": 7,
1055
  "bias": 0,
1056
+ "bias_formula": "0",
1057
  "phi_distance": -1.0,
1058
  "storage": "u8",
1059
  "cluster": "IntegerFixed",
 
1071
  "e_bits": 0,
1072
  "m_bits": 15,
1073
  "bias": 0,
1074
+ "bias_formula": "0",
1075
  "phi_distance": -1.0,
1076
  "storage": "u16",
1077
  "cluster": "IntegerFixed",
 
1089
  "e_bits": 0,
1090
  "m_bits": 31,
1091
  "bias": 0,
1092
+ "bias_formula": "0",
1093
  "phi_distance": -1.0,
1094
  "storage": "u32",
1095
  "cluster": "IntegerFixed",
 
1107
  "e_bits": 0,
1108
  "m_bits": 63,
1109
  "bias": 0,
1110
+ "bias_formula": "0",
1111
  "phi_distance": -1.0,
1112
  "storage": "u64",
1113
  "cluster": "IntegerFixed",
 
1125
  "e_bits": 0,
1126
  "m_bits": 127,
1127
  "bias": 0,
1128
+ "bias_formula": "0",
1129
  "phi_distance": -1.0,
1130
  "storage": "u128",
1131
  "cluster": "IntegerFixed",
 
1143
  "e_bits": 0,
1144
  "m_bits": 0,
1145
  "bias": 0,
1146
+ "bias_formula": "0",
1147
  "phi_distance": -1.0,
1148
  "storage": "varies",
1149
  "cluster": "IntegerFixed",
 
1161
  "e_bits": 0,
1162
  "m_bits": 0,
1163
  "bias": 0,
1164
+ "bias_formula": "0",
1165
  "phi_distance": -1.0,
1166
  "storage": "u4_per_digit",
1167
  "cluster": "IntegerFixed",
 
1179
  "e_bits": 7,
1180
  "m_bits": 24,
1181
  "bias": 64,
1182
+ "bias_formula": "64",
1183
  "phi_distance": -1.0,
1184
  "storage": "u32",
1185
  "cluster": "HistoricalVendor",
 
1197
  "e_bits": 7,
1198
  "m_bits": 56,
1199
  "bias": 64,
1200
+ "bias_formula": "64",
1201
  "phi_distance": -1.0,
1202
  "storage": "u64",
1203
  "cluster": "HistoricalVendor",
 
1215
  "e_bits": 7,
1216
  "m_bits": 120,
1217
  "bias": 64,
1218
+ "bias_formula": "64",
1219
  "phi_distance": -1.0,
1220
  "storage": "u128",
1221
  "cluster": "HistoricalVendor",
 
1233
  "e_bits": 8,
1234
  "m_bits": 23,
1235
  "bias": 129,
1236
+ "bias_formula": "129",
1237
  "phi_distance": -1.0,
1238
  "storage": "u32",
1239
  "cluster": "HistoricalVendor",
 
1251
  "e_bits": 8,
1252
  "m_bits": 55,
1253
  "bias": 129,
1254
+ "bias_formula": "129",
1255
  "phi_distance": -1.0,
1256
  "storage": "u64",
1257
  "cluster": "HistoricalVendor",
 
1269
  "e_bits": 8,
1270
  "m_bits": 23,
1271
  "bias": 128,
1272
+ "bias_formula": "128",
1273
  "phi_distance": -1.0,
1274
  "storage": "u32",
1275
  "cluster": "HistoricalVendor",
 
1287
  "e_bits": 8,
1288
  "m_bits": 55,
1289
  "bias": 128,
1290
+ "bias_formula": "128",
1291
  "phi_distance": -1.0,
1292
  "storage": "u64",
1293
  "cluster": "HistoricalVendor",
 
1305
  "e_bits": 11,
1306
  "m_bits": 52,
1307
  "bias": 1024,
1308
+ "bias_formula": "1024",
1309
  "phi_distance": -1.0,
1310
  "storage": "u64",
1311
  "cluster": "HistoricalVendor",
 
1323
  "e_bits": 15,
1324
  "m_bits": 112,
1325
  "bias": 16384,
1326
+ "bias_formula": "16384",
1327
  "phi_distance": -1.0,
1328
  "storage": "u128",
1329
  "cluster": "HistoricalVendor",
 
1341
  "e_bits": 15,
1342
  "m_bits": 48,
1343
  "bias": 16384,
1344
+ "bias_formula": "16384",
1345
  "phi_distance": -1.0,
1346
  "storage": "u64",
1347
  "cluster": "HistoricalVendor",
 
1359
  "e_bits": 0,
1360
  "m_bits": 0,
1361
  "bias": 0,
1362
+ "bias_formula": "0",
1363
  "phi_distance": -1.0,
1364
  "storage": "varies",
1365
  "cluster": "Theoretical",
 
1377
  "e_bits": 0,
1378
  "m_bits": 0,
1379
  "bias": 0,
1380
+ "bias_formula": "0",
1381
  "phi_distance": -1.0,
1382
  "storage": "varies",
1383
  "cluster": "Theoretical",
 
1395
  "e_bits": 0,
1396
  "m_bits": 0,
1397
  "bias": 0,
1398
+ "bias_formula": "0",
1399
  "phi_distance": -1.0,
1400
  "storage": "lookup_table",
1401
  "cluster": "Theoretical",
 
1413
  "e_bits": 0,
1414
  "m_bits": 0,
1415
  "bias": 0,
1416
+ "bias_formula": "0",
1417
  "phi_distance": -1.0,
1418
  "storage": "varies",
1419
  "cluster": "Theoretical",
 
1431
  "e_bits": 0,
1432
  "m_bits": 0,
1433
  "bias": 0,
1434
+ "bias_formula": "0",
1435
  "phi_distance": -1.0,
1436
  "storage": "varies",
1437
  "cluster": "CompressionTrick",
 
1449
  "e_bits": 0,
1450
  "m_bits": 0,
1451
  "bias": 0,
1452
+ "bias_formula": "0",
1453
  "phi_distance": -1.0,
1454
  "storage": "varies",
1455
  "cluster": "CompressionTrick",
 
1467
  "e_bits": 0,
1468
  "m_bits": 7,
1469
  "bias": 0,
1470
+ "bias_formula": "0",
1471
  "phi_distance": -1.0,
1472
  "storage": "u8_plus_fp32_scale",
1473
  "cluster": "CompressionTrick",
 
1485
  "e_bits": 0,
1486
  "m_bits": 0,
1487
  "bias": 0,
1488
+ "bias_formula": "0",
1489
  "phi_distance": -1.0,
1490
  "storage": "varies",
1491
  "cluster": "CompressionTrick",
formats_catalog.jsonl CHANGED
@@ -1,77 +1,83 @@
1
- {"bias": 15, "bits": 16, "cluster": "Ieee754Binary", "e_bits": 5, "gf_relation": "competitor", "id": "binary16", "m_bits": 10, "name": "binary16 (fp16, half)", "phi_distance": 0.118, "s_bits": 1, "source": "IEEE 754-2008", "standard": "IEEE 754-2008", "status": "Verified", "storage": "u16", "use_case": "GPU activations, inference"}
2
- {"bias": 127, "bits": 32, "cluster": "Ieee754Binary", "e_bits": 8, "gf_relation": "competitor", "id": "binary32", "m_bits": 23, "name": "binary32 (fp32, single)", "phi_distance": 0.27, "s_bits": 1, "source": "IEEE 754-1985", "standard": "IEEE 754-1985", "status": "Verified", "storage": "u32", "use_case": "industry default"}
3
- {"bias": 1023, "bits": 64, "cluster": "Ieee754Binary", "e_bits": 11, "gf_relation": "competitor", "id": "binary64", "m_bits": 52, "name": "binary64 (fp64, double)", "phi_distance": 0.406, "s_bits": 1, "source": "IEEE 754-1985", "standard": "IEEE 754-1985", "status": "Verified", "storage": "u64", "use_case": "scientific computing"}
4
- {"bias": 16383, "bits": 128, "cluster": "Ieee754Binary", "e_bits": 15, "gf_relation": "competitor", "id": "binary128", "m_bits": 112, "name": "binary128 (fp128, quad)", "phi_distance": 0.484, "s_bits": 1, "source": "IEEE 754-2008", "standard": "IEEE 754-2008", "status": "Verified", "storage": "u128", "use_case": "high-precision simulations"}
5
- {"bias": 262143, "bits": 256, "cluster": "Ieee754Binary", "e_bits": 19, "gf_relation": "competitor", "id": "binary256", "m_bits": 236, "name": "binary256 (octuple)", "phi_distance": 0.538, "s_bits": 1, "source": "IEEE 754-2008", "standard": "IEEE 754-2008", "status": "Verified", "storage": "u256_software", "use_case": "astronomy, cryptography"}
6
- {"bias": 101, "bits": 32, "cluster": "Ieee754Decimal", "e_bits": 11, "gf_relation": "orthogonal", "id": "decimal32", "m_bits": 20, "name": "decimal32", "phi_distance": -1.0, "s_bits": 1, "source": "IEEE 754-2008", "standard": "IEEE 754-2008 (DPD/BID)", "status": "Verified", "storage": "u32", "use_case": "banking, GAAP"}
7
- {"bias": 398, "bits": 64, "cluster": "Ieee754Decimal", "e_bits": 13, "gf_relation": "orthogonal", "id": "decimal64", "m_bits": 50, "name": "decimal64", "phi_distance": -1.0, "s_bits": 1, "source": "IEEE 754-2008", "standard": "IEEE 754-2008", "status": "Verified", "storage": "u64", "use_case": "financial databases"}
8
- {"bias": 6176, "bits": 128, "cluster": "Ieee754Decimal", "e_bits": 17, "gf_relation": "orthogonal", "id": "decimal128", "m_bits": 110, "name": "decimal128", "phi_distance": -1.0, "s_bits": 1, "source": "IEEE 754-2008", "standard": "IEEE 754-2008", "status": "Verified", "storage": "u128", "use_case": "audit ledgers"}
9
- {"bias": 16383, "bits": 80, "cluster": "ExtendedFloat", "e_bits": 15, "gf_relation": "orthogonal", "id": "x87_fp80", "m_bits": 64, "name": "x87 FP80", "phi_distance": -1.0, "s_bits": 1, "source": "Intel SDM", "standard": "Intel x87 (explicit integer bit)", "status": "Historical", "storage": "u80_padded", "use_case": "legacy long double on x86"}
10
- {"bias": 0, "bits": 128, "cluster": "ExtendedFloat", "e_bits": 22, "gf_relation": "orthogonal", "id": "double_double", "m_bits": 104, "name": "double-double", "phi_distance": -1.0, "s_bits": 2, "source": "Bailey-Hida 2001", "standard": "Bailey/Hida (software)", "status": "Verified", "storage": "two_u64", "use_case": "software extended precision"}
11
- {"bias": 0, "bits": 256, "cluster": "ExtendedFloat", "e_bits": 44, "gf_relation": "orthogonal", "id": "quad_double", "m_bits": 208, "name": "quad-double", "phi_distance": -1.0, "s_bits": 4, "source": "Bailey-Hida 2001", "standard": "Bailey/Hida (software)", "status": "Verified", "storage": "four_u64", "use_case": "astrophysics, quad-precision sims"}
12
- {"bias": 127, "bits": 16, "cluster": "MlLowPrecision", "e_bits": 8, "gf_relation": "competitor", "id": "bfloat16", "m_bits": 7, "name": "bfloat16 (BF16)", "phi_distance": 0.525, "s_bits": 1, "source": "Wang-Kanwar 2019", "standard": "Google Brain", "status": "Verified", "storage": "u16", "use_case": "training (range > precision)"}
13
- {"bias": 127, "bits": 19, "cluster": "MlLowPrecision", "e_bits": 8, "gf_relation": "competitor", "id": "tf32", "m_bits": 10, "name": "TensorFloat-32 (TF32)", "phi_distance": 0.27, "s_bits": 1, "source": "NVIDIA Ampere whitepaper", "standard": "NVIDIA Ampere", "status": "Verified", "storage": "u32_padded", "use_case": "A100/H100 mixed precision"}
14
- {"bias": 7, "bits": 8, "cluster": "MlLowPrecision", "e_bits": 4, "gf_relation": "competitor", "id": "fp8_e4m3", "m_bits": 3, "name": "FP8 E4M3", "phi_distance": 0.715, "s_bits": 1, "source": "Micikevicius 2022 (arXiv:2209.05433)", "standard": "OCP / NVIDIA / Arm / Intel", "status": "Verified", "storage": "u8", "use_case": "inference, gradient ranges"}
15
- {"bias": 15, "bits": 8, "cluster": "MlLowPrecision", "e_bits": 5, "gf_relation": "competitor", "id": "fp8_e5m2", "m_bits": 2, "name": "FP8 E5M2", "phi_distance": 1.882, "s_bits": 1, "source": "Micikevicius 2022", "standard": "OCP / NVIDIA", "status": "Verified", "storage": "u8", "use_case": "activations, wide range"}
16
- {"bias": 3, "bits": 6, "cluster": "MlLowPrecision", "e_bits": 3, "gf_relation": "competitor", "id": "fp6_e3m2", "m_bits": 2, "name": "FP6 E3M2", "phi_distance": 0.882, "s_bits": 1, "source": "OCP MX v1.0 (2023)", "standard": "OCP MX", "status": "Verified", "storage": "u8_packed", "use_case": "aggressive quant inference"}
17
- {"bias": 1, "bits": 6, "cluster": "MlLowPrecision", "e_bits": 2, "gf_relation": "ally", "id": "fp6_e2m3", "m_bits": 3, "name": "FP6 E2M3", "phi_distance": 0.049, "s_bits": 1, "source": "OCP MX v1.0 (2023)", "standard": "OCP MX", "status": "Verified", "storage": "u8_packed", "use_case": "mantissa-heavy quant"}
18
- {"bias": 1, "bits": 4, "cluster": "MlLowPrecision", "e_bits": 2, "gf_relation": "competitor", "id": "fp4_e2m1", "m_bits": 1, "name": "FP4 E2M1", "phi_distance": 1.382, "s_bits": 1, "source": "OCP MX v1.0 (2023)", "standard": "OCP MX", "status": "Verified", "storage": "u8_packed", "use_case": "extreme quant inference"}
19
- {"bias": 7, "bits": 8, "cluster": "Microscaling", "e_bits": 4, "gf_relation": "ally", "id": "mxfp8", "m_bits": 3, "name": "MXFP8", "phi_distance": 0.715, "s_bits": 1, "source": "Rouhani 2023 (arXiv:2310.10537)", "standard": "OCP MX v1.0", "status": "Verified", "storage": "u8_plus_shared_e8m0", "use_case": "LLM inference"}
20
- {"bias": 3, "bits": 6, "cluster": "Microscaling", "e_bits": 3, "gf_relation": "ally", "id": "mxfp6", "m_bits": 2, "name": "MXFP6", "phi_distance": 0.882, "s_bits": 1, "source": "Rouhani 2023", "standard": "OCP MX v1.0", "status": "Verified", "storage": "u8_packed_plus_e8m0", "use_case": "aggressive inference"}
21
- {"bias": 1, "bits": 4, "cluster": "Microscaling", "e_bits": 2, "gf_relation": "ally", "id": "mxfp4", "m_bits": 1, "name": "MXFP4", "phi_distance": 1.382, "s_bits": 1, "source": "Rouhani 2023", "standard": "OCP MX v1.0", "status": "Verified", "storage": "u8_packed_plus_e8m0", "use_case": "extreme quant"}
22
- {"bias": 0, "bits": 4, "cluster": "QuantTuned", "e_bits": 0, "gf_relation": "orthogonal", "id": "nf4", "m_bits": 4, "name": "NF4 (NormalFloat 4-bit)", "phi_distance": -1.0, "s_bits": 0, "source": "Dettmers 2023 (arXiv:2305.14314)", "standard": "Dettmers 2023 (QLoRA)", "status": "Verified", "storage": "u8_packed", "use_case": "LLM weight quantization (quantile-based on N(0,1))"}
23
- {"bias": 127, "bits": 16, "cluster": "QuantTuned", "e_bits": 8, "gf_relation": "orthogonal", "id": "afp", "m_bits": 7, "name": "AFP (Adaptive Floating-Point)", "phi_distance": -1.0, "s_bits": 1, "source": "Tambe 2020 (DAC)", "standard": "Tambe 2020", "status": "Verified", "storage": "u16_plus_tensor_shift", "use_case": "efficient training"}
24
- {"bias": 0, "bits": 8, "cluster": "PositUnumIII", "e_bits": 2, "gf_relation": "ally", "id": "posit8", "m_bits": 0, "name": "Posit8", "phi_distance": -1.0, "s_bits": 1, "source": "Posit Standard 2022 (posithub.org)", "standard": "Posit Standard 2022 (es=2)", "status": "Verified", "storage": "u8", "use_case": "inference"}
25
- {"bias": 0, "bits": 16, "cluster": "PositUnumIII", "e_bits": 2, "gf_relation": "ally", "id": "posit16", "m_bits": 0, "name": "Posit16", "phi_distance": -1.0, "s_bits": 1, "source": "Posit Standard 2022", "standard": "Posit Standard 2022 (es=2)", "status": "Verified", "storage": "u16", "use_case": "mixed-precision training"}
26
- {"bias": 0, "bits": 32, "cluster": "PositUnumIII", "e_bits": 2, "gf_relation": "ally", "id": "posit32", "m_bits": 0, "name": "Posit32", "phi_distance": -1.0, "s_bits": 1, "source": "Posit Standard 2022", "standard": "Posit Standard 2022 (es=2)", "status": "Verified", "storage": "u32", "use_case": "f32 replacement"}
27
- {"bias": 0, "bits": 64, "cluster": "PositUnumIII", "e_bits": 2, "gf_relation": "ally", "id": "posit64", "m_bits": 0, "name": "Posit64", "phi_distance": -1.0, "s_bits": 1, "source": "Posit Standard 2022", "standard": "Posit Standard 2022 (es=2)", "status": "Verified", "storage": "u64", "use_case": "f64 replacement"}
28
- {"bias": 0, "bits": 8, "cluster": "PositUnumIII", "e_bits": 0, "gf_relation": "ally", "id": "takum8", "m_bits": 0, "name": "takum8", "phi_distance": -1.0, "s_bits": 1, "source": "Hunhold 2024 (arXiv:2412.20273)", "standard": "Hunhold 2024 (tapered-precision)", "status": "Verified", "storage": "u8", "use_case": "IEEE-754 backward-compatible tapered"}
29
- {"bias": 0, "bits": 16, "cluster": "PositUnumIII", "e_bits": 0, "gf_relation": "ally", "id": "takum16", "m_bits": 0, "name": "takum16", "phi_distance": -1.0, "s_bits": 1, "source": "Hunhold 2024 (arXiv:2412.20273)", "standard": "Hunhold 2024", "status": "Verified", "storage": "u16", "use_case": "single-rule ladder counterexample"}
30
- {"bias": 0, "bits": 32, "cluster": "PositUnumIII", "e_bits": 0, "gf_relation": "ally", "id": "takum32", "m_bits": 0, "name": "takum32", "phi_distance": -1.0, "s_bits": 1, "source": "Hunhold 2024", "standard": "Hunhold 2024", "status": "Verified", "storage": "u32", "use_case": "tapered fp32-class"}
31
- {"bias": 0, "bits": 64, "cluster": "PositUnumIII", "e_bits": 0, "gf_relation": "ally", "id": "takum64", "m_bits": 0, "name": "takum64", "phi_distance": -1.0, "s_bits": 1, "source": "Hunhold 2024", "standard": "Hunhold 2024", "status": "Verified", "storage": "u64", "use_case": "tapered fp64-class"}
32
- {"bias": 0, "bits": 8, "cluster": "Lns", "e_bits": 7, "gf_relation": "orthogonal", "id": "lns8", "m_bits": 0, "name": "LNS-8", "phi_distance": -1.0, "s_bits": 1, "source": "Alam 2021 (arXiv:2106.13914)", "standard": "Arnold 1990; LNS-Madam (2021)", "status": "Verified", "storage": "u8", "use_case": "DSP, signal processing"}
33
- {"bias": 0, "bits": 16, "cluster": "Lns", "e_bits": 15, "gf_relation": "orthogonal", "id": "lns16", "m_bits": 0, "name": "LNS-16", "phi_distance": -1.0, "s_bits": 1, "source": "Alam 2021", "standard": "LNS-Madam (2021)", "status": "Verified", "storage": "u16", "use_case": "log-domain training (mul -> add)"}
34
- {"bias": 0, "bits": 32, "cluster": "Lns", "e_bits": 31, "gf_relation": "orthogonal", "id": "lns32", "m_bits": 0, "name": "LNS-32", "phi_distance": -1.0, "s_bits": 1, "source": "Alam 2021", "standard": "LNS-Madam (2021)", "status": "Verified", "storage": "u32", "use_case": "log-domain DSP"}
35
- {"bias": 0, "bits": 64, "cluster": "Lns", "e_bits": 63, "gf_relation": "orthogonal", "id": "lns64", "m_bits": 0, "name": "LNS-64", "phi_distance": -1.0, "s_bits": 1, "source": "Alam 2021", "standard": "LNS-Madam (2021)", "status": "Verified", "storage": "u64", "use_case": "scientific log-domain"}
36
- {"bias": 0, "bits": 2, "cluster": "GoldenFloat", "e_bits": 0, "gf_relation": "self", "id": "gfternary", "m_bits": 2, "name": "GFTernary", "phi_distance": 0.0, "s_bits": 1, "source": "BENCH-007", "standard": "this work; {-phi, 0, +phi}", "status": "Verified", "storage": "u2", "use_case": "bulk layers (hybrid)"}
37
- {"bias": 0, "bits": 4, "cluster": "GoldenFloat", "e_bits": 1, "gf_relation": "self", "id": "gf4", "m_bits": 2, "name": "GF4", "phi_distance": 0.118, "s_bits": 1, "source": "specs/numeric/gf4.t27", "standard": "this work; F0 minimal", "status": "Experimental", "storage": "u8", "use_case": "proof-of-concept"}
38
- {"bias": 3, "bits": 8, "cluster": "GoldenFloat", "e_bits": 3, "gf_relation": "self", "id": "gf8", "m_bits": 4, "name": "GF8", "phi_distance": 0.132, "s_bits": 1, "source": "BENCH-007 (specs/numeric/gf8.t27)", "standard": "this work; L1 Lucas", "status": "Verified", "storage": "u8", "use_case": "edge / sensors"}
39
- {"bias": 7, "bits": 12, "cluster": "GoldenFloat", "e_bits": 4, "gf_relation": "self", "id": "gf12", "m_bits": 7, "name": "GF12", "phi_distance": 0.047, "s_bits": 1, "source": "BENCH-007 (specs/numeric/gf12.t27)", "standard": "this work; L0/F3", "status": "Verified", "storage": "u16", "use_case": "mid-range / audio"}
40
- {"bias": 31, "bits": 16, "cluster": "GoldenFloat", "e_bits": 6, "gf_relation": "self", "id": "gf16", "m_bits": 9, "name": "GF16", "phi_distance": 0.049, "s_bits": 1, "source": "specs/numeric/gf16.t27; zenodo 10.5281/zenodo.19227877 (HW archive)", "standard": "this work; PHI_BIAS=60; FPGA 35/35 at 323 MHz Artix-7", "status": "Verified", "storage": "u16", "use_case": "training and inference (production)"}
41
- {"bias": 63, "bits": 20, "cluster": "GoldenFloat", "e_bits": 7, "gf_relation": "self", "id": "gf20", "m_bits": 12, "name": "GF20", "phi_distance": 0.035, "s_bits": 1, "source": "specs/numeric/gf20.t27 (spec only)", "standard": "this work; 17-squared empirical PHI_BIAS=289", "status": "Experimental", "storage": "u32", "use_case": "high-precision edge"}
42
- {"bias": 255, "bits": 24, "cluster": "GoldenFloat", "e_bits": 9, "gf_relation": "self", "id": "gf24", "m_bits": 14, "name": "GF24", "phi_distance": 0.025, "s_bits": 1, "source": "specs/numeric/gf24.t27 (spec only)", "standard": "this work; L15 PHI_BIAS=1364", "status": "Experimental", "storage": "u32", "use_case": "server inference"}
43
- {"bias": 2047, "bits": 32, "cluster": "GoldenFloat", "e_bits": 12, "gf_relation": "self", "id": "gf32", "m_bits": 19, "name": "GF32", "phi_distance": 0.014, "s_bits": 1, "source": "BENCH-012 (specs/numeric/gf32.t27)", "standard": "this work; F0 resolved", "status": "Verified", "storage": "u32", "use_case": "fp32 drop-in"}
44
- {"bias": 8388607, "bits": 64, "cluster": "GoldenFloat", "e_bits": 24, "gf_relation": "self", "id": "gf64", "m_bits": 39, "name": "GF64", "phi_distance": 0.003, "s_bits": 1, "source": "BENCH-007b (specs/numeric/gf64.t27)", "standard": "this work; EXP_MAX - BIAS", "status": "Verified", "storage": "u64", "use_case": "scientific / double"}
45
- {"bias": 1, "bits": 6, "cluster": "GoldenFloat", "e_bits": 2, "gf_relation": "experimental", "id": "gf6", "m_bits": 3, "name": "GF6 (predicted)", "phi_distance": 0.05, "s_bits": 1, "source": "section12.5", "standard": "this work; e=round(5/phi^2)=2, fills FP6 gap", "status": "Experimental", "storage": "u8_packed", "use_case": "OPEN R&D: bridge GF4-GF8; FP6 E2M3 hint"}
46
- {"bias": 0, "bits": 128, "cluster": "GoldenFloat", "e_bits": 48, "gf_relation": "experimental", "id": "gf128", "m_bits": 79, "name": "GF128 (predicted)", "phi_distance": 0.008, "s_bits": 1, "source": "section12.5", "standard": "this work; e=round(127/phi^2)=48 (Open: bias TBD)", "status": "Experimental", "storage": "u128", "use_case": "OPEN R&D: phi-aligned binary128 alternative"}
47
- {"bias": 0, "bits": 256, "cluster": "GoldenFloat", "e_bits": 97, "gf_relation": "experimental", "id": "gf256", "m_bits": 158, "name": "GF256 (predicted)", "phi_distance": 0.005, "s_bits": 1, "source": "section12.5; bias Open per skill", "standard": "this work; e=round(255/phi^2)=97 (Open: bias ~2^71 unconfirmed)", "status": "Experimental", "storage": "u256_software", "use_case": "OPEN R&D: phi-aligned binary256 alternative"}
48
- {"bias": 3, "bits": 8, "cluster": "GoldenFloat", "e_bits": 3, "gf_relation": "experimental", "id": "gf8_bfp", "m_bits": 4, "name": "GF8-BFP (block FP atop GF8)", "phi_distance": 0.132, "s_bits": 1, "source": "section12.5", "standard": "this work; per-tile shared exponent", "status": "Experimental", "storage": "u8_plus_shared_exp", "use_case": "OPEN R&D: LLM-quantization-friendly GF8"}
49
- {"bias": 31, "bits": 16, "cluster": "GoldenFloat", "e_bits": 6, "gf_relation": "experimental", "id": "gf_lns_hybrid", "m_bits": 9, "name": "GF + LNS hybrid (dual-space)", "phi_distance": 0.049, "s_bits": 1, "source": "section12.5", "standard": "this work; mul in log-space, accumulate Lucas-closed", "status": "Experimental", "storage": "u16_plus_lns_path", "use_case": "OPEN R&D: dual-space arithmetic"}
50
- {"bias": 1, "bits": 6, "cluster": "GoldenFloat", "e_bits": 2, "gf_relation": "experimental", "id": "mxgf6", "m_bits": 3, "name": "MXGF6 (microscaling GF6)", "phi_distance": 0.05, "s_bits": 1, "source": "section12.5", "standard": "this work; OCP MX block + GF6", "status": "Experimental", "storage": "u8_packed_plus_e8m0", "use_case": "OPEN R&D: phi-aligned MX-6 candidate"}
51
- {"bias": 0, "bits": 4, "cluster": "GoldenFloat", "e_bits": 1, "gf_relation": "experimental", "id": "mxgf4", "m_bits": 2, "name": "MXGF4 (microscaling GF4)", "phi_distance": 0.118, "s_bits": 1, "source": "section12.5", "standard": "this work; OCP MX block + GF4", "status": "Experimental", "storage": "u8_packed_plus_e8m0", "use_case": "OPEN R&D: phi-aligned MX-4 candidate"}
52
- {"bias": 0, "bits": 4, "cluster": "IntegerFixed", "e_bits": 0, "gf_relation": "competitor", "id": "int4", "m_bits": 3, "name": "INT4 / UINT4", "phi_distance": -1.0, "s_bits": 1, "source": "ISO/IEC 9899", "standard": "two complement", "status": "Verified", "storage": "u8_packed", "use_case": "aggressive quantization"}
53
- {"bias": 0, "bits": 8, "cluster": "IntegerFixed", "e_bits": 0, "gf_relation": "competitor", "id": "int8", "m_bits": 7, "name": "INT8 / UINT8", "phi_distance": -1.0, "s_bits": 1, "source": "ISO/IEC 9899", "standard": "two complement", "status": "Verified", "storage": "u8", "use_case": "INT8 inference, per-channel scale"}
54
- {"bias": 0, "bits": 16, "cluster": "IntegerFixed", "e_bits": 0, "gf_relation": "competitor", "id": "int16", "m_bits": 15, "name": "INT16 / UINT16", "phi_distance": -1.0, "s_bits": 1, "source": "ISO/IEC 9899", "standard": "two complement", "status": "Verified", "storage": "u16", "use_case": "DSP, embedded ML"}
55
- {"bias": 0, "bits": 32, "cluster": "IntegerFixed", "e_bits": 0, "gf_relation": "competitor", "id": "int32", "m_bits": 31, "name": "INT32 / UINT32", "phi_distance": -1.0, "s_bits": 1, "source": "ISO/IEC 9899", "standard": "two complement", "status": "Verified", "storage": "u32", "use_case": "general CPU integer"}
56
- {"bias": 0, "bits": 64, "cluster": "IntegerFixed", "e_bits": 0, "gf_relation": "competitor", "id": "int64", "m_bits": 63, "name": "INT64 / UINT64", "phi_distance": -1.0, "s_bits": 1, "source": "ISO/IEC 9899", "standard": "two complement", "status": "Verified", "storage": "u64", "use_case": "databases, timestamps"}
57
- {"bias": 0, "bits": 128, "cluster": "IntegerFixed", "e_bits": 0, "gf_relation": "competitor", "id": "int128", "m_bits": 127, "name": "INT128 / UINT128", "phi_distance": -1.0, "s_bits": 1, "source": "Rust/Clang u128", "standard": "two complement", "status": "Verified", "storage": "u128", "use_case": "crypto, big-int"}
58
- {"bias": 0, "bits": 0, "cluster": "IntegerFixed", "e_bits": 0, "gf_relation": "orthogonal", "id": "q_format", "m_bits": 0, "name": "Q-format (Qm.n)", "phi_distance": -1.0, "s_bits": 1, "source": "TI SPRA704", "standard": "TI fixed-point", "status": "Verified", "storage": "varies", "use_case": "audio DSP, fixed-point ML"}
59
- {"bias": 0, "bits": 0, "cluster": "IntegerFixed", "e_bits": 0, "gf_relation": "orthogonal", "id": "bcd", "m_bits": 0, "name": "BCD (binary-coded decimal)", "phi_distance": -1.0, "s_bits": 0, "source": "ISO/IEC 8859", "standard": "IBM 1959", "status": "Historical", "storage": "u4_per_digit", "use_case": "calculators, GAAP"}
60
- {"bias": 64, "bits": 32, "cluster": "HistoricalVendor", "e_bits": 7, "gf_relation": "orthogonal", "id": "ibm_hfp32", "m_bits": 24, "name": "IBM HFP (single)", "phi_distance": -1.0, "s_bits": 1, "source": "IBM POO", "standard": "IBM System/360 (1964); base-16 exponent", "status": "Historical", "storage": "u32", "use_case": "legacy mainframe"}
61
- {"bias": 64, "bits": 64, "cluster": "HistoricalVendor", "e_bits": 7, "gf_relation": "orthogonal", "id": "ibm_hfp64", "m_bits": 56, "name": "IBM HFP (double)", "phi_distance": -1.0, "s_bits": 1, "source": "IBM POO", "standard": "IBM System/360 (1964)", "status": "Historical", "storage": "u64", "use_case": "legacy mainframe"}
62
- {"bias": 64, "bits": 128, "cluster": "HistoricalVendor", "e_bits": 7, "gf_relation": "orthogonal", "id": "ibm_hfp128", "m_bits": 120, "name": "IBM HFP (extended)", "phi_distance": -1.0, "s_bits": 1, "source": "IBM POO", "standard": "IBM z/Architecture", "status": "Historical", "storage": "u128", "use_case": "legacy mainframe"}
63
- {"bias": 129, "bits": 32, "cluster": "HistoricalVendor", "e_bits": 8, "gf_relation": "orthogonal", "id": "ms_mbf32", "m_bits": 23, "name": "Microsoft MBF (single)", "phi_distance": -1.0, "s_bits": 1, "source": "MS-DOS docs", "standard": "MS BASIC / MS-DOS (pre-IEEE)", "status": "Historical", "storage": "u32", "use_case": "MS BASIC legacy"}
64
- {"bias": 129, "bits": 64, "cluster": "HistoricalVendor", "e_bits": 8, "gf_relation": "orthogonal", "id": "ms_mbf64", "m_bits": 55, "name": "Microsoft MBF (double)", "phi_distance": -1.0, "s_bits": 1, "source": "MS-DOS docs", "standard": "MS BASIC", "status": "Historical", "storage": "u64", "use_case": "MS BASIC legacy"}
65
- {"bias": 128, "bits": 32, "cluster": "HistoricalVendor", "e_bits": 8, "gf_relation": "orthogonal", "id": "vax_f", "m_bits": 23, "name": "VAX F-float", "phi_distance": -1.0, "s_bits": 1, "source": "VAX Architecture Reference", "standard": "DEC VAX", "status": "Historical", "storage": "u32", "use_case": "DEC legacy"}
66
- {"bias": 128, "bits": 64, "cluster": "HistoricalVendor", "e_bits": 8, "gf_relation": "orthogonal", "id": "vax_d", "m_bits": 55, "name": "VAX D-float", "phi_distance": -1.0, "s_bits": 1, "source": "VAX Architecture Reference", "standard": "DEC VAX", "status": "Historical", "storage": "u64", "use_case": "DEC legacy double"}
67
- {"bias": 1024, "bits": 64, "cluster": "HistoricalVendor", "e_bits": 11, "gf_relation": "orthogonal", "id": "vax_g", "m_bits": 52, "name": "VAX G-float", "phi_distance": -1.0, "s_bits": 1, "source": "VAX Architecture Reference", "standard": "DEC VAX (IEEE-like)", "status": "Historical", "storage": "u64", "use_case": "DEC legacy"}
68
- {"bias": 16384, "bits": 128, "cluster": "HistoricalVendor", "e_bits": 15, "gf_relation": "orthogonal", "id": "vax_h", "m_bits": 112, "name": "VAX H-float", "phi_distance": -1.0, "s_bits": 1, "source": "VAX Architecture Reference", "standard": "DEC VAX", "status": "Historical", "storage": "u128", "use_case": "DEC quad"}
69
- {"bias": 16384, "bits": 64, "cluster": "HistoricalVendor", "e_bits": 15, "gf_relation": "orthogonal", "id": "cray_float", "m_bits": 48, "name": "Cray float", "phi_distance": -1.0, "s_bits": 1, "source": "Cray-1 Hardware Reference", "standard": "Cray-1 (1976); no NaN/Inf, unrounded mul", "status": "Historical", "storage": "u64", "use_case": "Cray legacy"}
70
- {"bias": 0, "bits": 0, "cluster": "Theoretical", "e_bits": 0, "gf_relation": "ally", "id": "minifloat", "m_bits": 0, "name": "minifloat (arbitrary E:M, <=16 bits)", "phi_distance": -1.0, "s_bits": 1, "source": "Higham 1996", "standard": "parametric framework", "status": "Experimental", "storage": "varies", "use_case": "design space of GF4/GF8/GF12/GF16"}
71
- {"bias": 0, "bits": 0, "cluster": "Theoretical", "e_bits": 0, "gf_relation": "ally", "id": "unum_i", "m_bits": 0, "name": "Unum I (tapered + ubound)", "phi_distance": -1.0, "s_bits": 1, "source": "Gustafson 2015 (The End of Error)", "standard": "Gustafson 2015 (predecessor to posit)", "status": "Experimental", "storage": "varies", "use_case": "interval arithmetic"}
72
- {"bias": 0, "bits": 0, "cluster": "Theoretical", "e_bits": 0, "gf_relation": "orthogonal", "id": "unum_ii", "m_bits": 0, "name": "Unum II (SORN projective)", "phi_distance": -1.0, "s_bits": 0, "source": "Gustafson 2016", "standard": "Gustafson 2016", "status": "Experimental", "storage": "lookup_table", "use_case": "lookup-table real arithmetic; not GF-comparable"}
73
- {"bias": 0, "bits": 0, "cluster": "Theoretical", "e_bits": 0, "gf_relation": "ally", "id": "tapered_fp", "m_bits": 0, "name": "tapered floating point", "phi_distance": -1.0, "s_bits": 1, "source": "Morris 1971 (IEEE TC)", "standard": "Morris 1971; posit ancestor", "status": "Experimental", "storage": "varies", "use_case": "variable mantissa via regime bits"}
74
- {"bias": 0, "bits": 0, "cluster": "CompressionTrick", "e_bits": 0, "gf_relation": "ally", "id": "block_fp", "m_bits": 0, "name": "block floating point (BFP)", "phi_distance": -1.0, "s_bits": 0, "source": "Darvish-Rouhani 2020", "standard": "Wilkinson 1965; modern revivals", "status": "Verified", "storage": "varies", "use_case": "per-tile shared exponent"}
75
- {"bias": 0, "bits": 0, "cluster": "CompressionTrick", "e_bits": 0, "gf_relation": "ally", "id": "shared_exp", "m_bits": 0, "name": "shared-exponent formats", "phi_distance": -1.0, "s_bits": 0, "source": "Darvish-Rouhani 2020", "standard": "generalised BFP", "status": "Verified", "storage": "varies", "use_case": "LLM quantization"}
76
- {"bias": 0, "bits": 8, "cluster": "CompressionTrick", "e_bits": 0, "gf_relation": "competitor", "id": "per_channel_scale", "m_bits": 7, "name": "INT8 with per-channel scale", "phi_distance": -1.0, "s_bits": 1, "source": "Jacob 2018 (CVPR)", "standard": "Jacob 2018 (TFLite)", "status": "Verified", "storage": "u8_plus_fp32_scale", "use_case": "standard quant inference"}
77
- {"bias": 0, "bits": 0, "cluster": "CompressionTrick", "e_bits": 0, "gf_relation": "ally", "id": "stochastic_rounding", "m_bits": 0, "name": "stochastic rounding (technique)", "phi_distance": -1.0, "s_bits": 0, "source": "Gupta 2015 (ICML)", "standard": "Gupta 2015", "status": "Verified", "storage": "varies", "use_case": "training small networks at low precision"}
 
 
 
 
 
 
 
1
+ {"id":"binary16","name":"binary16 (fp16, half)","bits":16,"s_bits":1,"e_bits":5,"m_bits":10,"bias":15,"bias_formula":"15","phi_distance":0.118,"storage":"u16","cluster":"Ieee754Binary","status":"Verified","standard":"IEEE 754-2008","use_case":"GPU activations, inference","gf_relation":"competitor","source":"IEEE 754-2008"}
2
+ {"id":"binary32","name":"binary32 (fp32, single)","bits":32,"s_bits":1,"e_bits":8,"m_bits":23,"bias":127,"bias_formula":"127","phi_distance":0.27,"storage":"u32","cluster":"Ieee754Binary","status":"Verified","standard":"IEEE 754-1985","use_case":"industry default","gf_relation":"competitor","source":"IEEE 754-1985"}
3
+ {"id":"binary64","name":"binary64 (fp64, double)","bits":64,"s_bits":1,"e_bits":11,"m_bits":52,"bias":1023,"bias_formula":"1023","phi_distance":0.406,"storage":"u64","cluster":"Ieee754Binary","status":"Verified","standard":"IEEE 754-1985","use_case":"scientific computing","gf_relation":"competitor","source":"IEEE 754-1985"}
4
+ {"id":"binary128","name":"binary128 (fp128, quad)","bits":128,"s_bits":1,"e_bits":15,"m_bits":112,"bias":16383,"bias_formula":"16383","phi_distance":0.484,"storage":"u128","cluster":"Ieee754Binary","status":"Verified","standard":"IEEE 754-2008","use_case":"high-precision simulations","gf_relation":"competitor","source":"IEEE 754-2008"}
5
+ {"id":"binary256","name":"binary256 (octuple)","bits":256,"s_bits":1,"e_bits":19,"m_bits":236,"bias":262143,"bias_formula":"262143","phi_distance":0.538,"storage":"u256_software","cluster":"Ieee754Binary","status":"Verified","standard":"IEEE 754-2008","use_case":"astronomy, cryptography","gf_relation":"competitor","source":"IEEE 754-2008"}
6
+ {"id":"decimal32","name":"decimal32","bits":32,"s_bits":1,"e_bits":11,"m_bits":20,"bias":101,"bias_formula":"101","phi_distance":-1.0,"storage":"u32","cluster":"Ieee754Decimal","status":"Verified","standard":"IEEE 754-2008 (DPD/BID)","use_case":"banking, GAAP","gf_relation":"orthogonal","source":"IEEE 754-2008"}
7
+ {"id":"decimal64","name":"decimal64","bits":64,"s_bits":1,"e_bits":13,"m_bits":50,"bias":398,"bias_formula":"398","phi_distance":-1.0,"storage":"u64","cluster":"Ieee754Decimal","status":"Verified","standard":"IEEE 754-2008","use_case":"financial databases","gf_relation":"orthogonal","source":"IEEE 754-2008"}
8
+ {"id":"decimal128","name":"decimal128","bits":128,"s_bits":1,"e_bits":17,"m_bits":110,"bias":6176,"bias_formula":"6176","phi_distance":-1.0,"storage":"u128","cluster":"Ieee754Decimal","status":"Verified","standard":"IEEE 754-2008","use_case":"audit ledgers","gf_relation":"orthogonal","source":"IEEE 754-2008"}
9
+ {"id":"x87_fp80","name":"x87 FP80","bits":80,"s_bits":1,"e_bits":15,"m_bits":64,"bias":16383,"bias_formula":"16383","phi_distance":-1.0,"storage":"u80_padded","cluster":"ExtendedFloat","status":"Historical","standard":"Intel x87 (explicit integer bit)","use_case":"legacy long double on x86","gf_relation":"orthogonal","source":"Intel SDM"}
10
+ {"id":"double_double","name":"double-double","bits":128,"s_bits":2,"e_bits":22,"m_bits":104,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"two_u64","cluster":"ExtendedFloat","status":"Verified","standard":"Bailey/Hida (software)","use_case":"software extended precision","gf_relation":"orthogonal","source":"Bailey-Hida 2001"}
11
+ {"id":"quad_double","name":"quad-double","bits":256,"s_bits":4,"e_bits":44,"m_bits":208,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"four_u64","cluster":"ExtendedFloat","status":"Verified","standard":"Bailey/Hida (software)","use_case":"astrophysics, quad-precision sims","gf_relation":"orthogonal","source":"Bailey-Hida 2001"}
12
+ {"id":"bfloat16","name":"bfloat16 (BF16)","bits":16,"s_bits":1,"e_bits":8,"m_bits":7,"bias":127,"bias_formula":"127","phi_distance":0.525,"storage":"u16","cluster":"MlLowPrecision","status":"Verified","standard":"Google Brain","use_case":"training (range > precision)","gf_relation":"competitor","source":"Wang-Kanwar 2019"}
13
+ {"id":"tf32","name":"TensorFloat-32 (TF32)","bits":19,"s_bits":1,"e_bits":8,"m_bits":10,"bias":127,"bias_formula":"127","phi_distance":0.27,"storage":"u32_padded","cluster":"MlLowPrecision","status":"Verified","standard":"NVIDIA Ampere","use_case":"A100/H100 mixed precision","gf_relation":"competitor","source":"NVIDIA Ampere whitepaper"}
14
+ {"id":"fp8_e4m3","name":"FP8 E4M3","bits":8,"s_bits":1,"e_bits":4,"m_bits":3,"bias":7,"bias_formula":"7","phi_distance":0.715,"storage":"u8","cluster":"MlLowPrecision","status":"Verified","standard":"OCP / NVIDIA / Arm / Intel","use_case":"inference, gradient ranges","gf_relation":"competitor","source":"Micikevicius 2022 (arXiv:2209.05433)"}
15
+ {"id":"fp8_e5m2","name":"FP8 E5M2","bits":8,"s_bits":1,"e_bits":5,"m_bits":2,"bias":15,"bias_formula":"15","phi_distance":1.882,"storage":"u8","cluster":"MlLowPrecision","status":"Verified","standard":"OCP / NVIDIA","use_case":"activations, wide range","gf_relation":"competitor","source":"Micikevicius 2022"}
16
+ {"id":"fp6_e3m2","name":"FP6 E3M2","bits":6,"s_bits":1,"e_bits":3,"m_bits":2,"bias":3,"bias_formula":"3","phi_distance":0.882,"storage":"u8_packed","cluster":"MlLowPrecision","status":"Verified","standard":"OCP MX","use_case":"aggressive quant inference","gf_relation":"competitor","source":"OCP MX v1.0 (2023)"}
17
+ {"id":"fp6_e2m3","name":"FP6 E2M3","bits":6,"s_bits":1,"e_bits":2,"m_bits":3,"bias":1,"bias_formula":"1","phi_distance":0.049,"storage":"u8_packed","cluster":"MlLowPrecision","status":"Verified","standard":"OCP MX","use_case":"mantissa-heavy quant","gf_relation":"ally","source":"OCP MX v1.0 (2023)"}
18
+ {"id":"fp4_e2m1","name":"FP4 E2M1","bits":4,"s_bits":1,"e_bits":2,"m_bits":1,"bias":1,"bias_formula":"1","phi_distance":1.382,"storage":"u8_packed","cluster":"MlLowPrecision","status":"Verified","standard":"OCP MX","use_case":"extreme quant inference","gf_relation":"competitor","source":"OCP MX v1.0 (2023)"}
19
+ {"id":"mxfp8","name":"MXFP8","bits":8,"s_bits":1,"e_bits":4,"m_bits":3,"bias":7,"bias_formula":"7","phi_distance":0.715,"storage":"u8_plus_shared_e8m0","cluster":"Microscaling","status":"Verified","standard":"OCP MX v1.0","use_case":"LLM inference","gf_relation":"ally","source":"Rouhani 2023 (arXiv:2310.10537)"}
20
+ {"id":"mxfp6","name":"MXFP6","bits":6,"s_bits":1,"e_bits":3,"m_bits":2,"bias":3,"bias_formula":"3","phi_distance":0.882,"storage":"u8_packed_plus_e8m0","cluster":"Microscaling","status":"Verified","standard":"OCP MX v1.0","use_case":"aggressive inference","gf_relation":"ally","source":"Rouhani 2023"}
21
+ {"id":"mxfp4","name":"MXFP4","bits":4,"s_bits":1,"e_bits":2,"m_bits":1,"bias":1,"bias_formula":"1","phi_distance":1.382,"storage":"u8_packed_plus_e8m0","cluster":"Microscaling","status":"Verified","standard":"OCP MX v1.0","use_case":"extreme quant","gf_relation":"ally","source":"Rouhani 2023"}
22
+ {"id":"nf4","name":"NF4 (NormalFloat 4-bit)","bits":4,"s_bits":0,"e_bits":0,"m_bits":4,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u8_packed","cluster":"QuantTuned","status":"Verified","standard":"Dettmers 2023 (QLoRA)","use_case":"LLM weight quantization (quantile-based on N(0,1))","gf_relation":"orthogonal","source":"Dettmers 2023 (arXiv:2305.14314)"}
23
+ {"id":"afp","name":"AFP (Adaptive Floating-Point)","bits":16,"s_bits":1,"e_bits":8,"m_bits":7,"bias":127,"bias_formula":"127","phi_distance":-1.0,"storage":"u16_plus_tensor_shift","cluster":"QuantTuned","status":"Verified","standard":"Tambe 2020","use_case":"efficient training","gf_relation":"orthogonal","source":"Tambe 2020 (DAC)"}
24
+ {"id":"posit8","name":"Posit8","bits":8,"s_bits":1,"e_bits":2,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u8","cluster":"PositUnumIII","status":"Verified","standard":"Posit Standard 2022 (es=2)","use_case":"inference","gf_relation":"ally","source":"Posit Standard 2022 (posithub.org)"}
25
+ {"id":"posit16","name":"Posit16","bits":16,"s_bits":1,"e_bits":2,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u16","cluster":"PositUnumIII","status":"Verified","standard":"Posit Standard 2022 (es=2)","use_case":"mixed-precision training","gf_relation":"ally","source":"Posit Standard 2022"}
26
+ {"id":"posit32","name":"Posit32","bits":32,"s_bits":1,"e_bits":2,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u32","cluster":"PositUnumIII","status":"Verified","standard":"Posit Standard 2022 (es=2)","use_case":"f32 replacement","gf_relation":"ally","source":"Posit Standard 2022"}
27
+ {"id":"posit64","name":"Posit64","bits":64,"s_bits":1,"e_bits":2,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u64","cluster":"PositUnumIII","status":"Verified","standard":"Posit Standard 2022 (es=2)","use_case":"f64 replacement","gf_relation":"ally","source":"Posit Standard 2022"}
28
+ {"id":"takum8","name":"takum8","bits":8,"s_bits":1,"e_bits":0,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u8","cluster":"PositUnumIII","status":"Verified","standard":"Hunhold 2024 (tapered-precision)","use_case":"IEEE-754 backward-compatible tapered","gf_relation":"ally","source":"Hunhold 2024 (arXiv:2412.20273)"}
29
+ {"id":"takum16","name":"takum16","bits":16,"s_bits":1,"e_bits":0,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u16","cluster":"PositUnumIII","status":"Verified","standard":"Hunhold 2024","use_case":"single-rule ladder counterexample","gf_relation":"ally","source":"Hunhold 2024 (arXiv:2412.20273)"}
30
+ {"id":"takum32","name":"takum32","bits":32,"s_bits":1,"e_bits":0,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u32","cluster":"PositUnumIII","status":"Verified","standard":"Hunhold 2024","use_case":"tapered fp32-class","gf_relation":"ally","source":"Hunhold 2024"}
31
+ {"id":"takum64","name":"takum64","bits":64,"s_bits":1,"e_bits":0,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u64","cluster":"PositUnumIII","status":"Verified","standard":"Hunhold 2024","use_case":"tapered fp64-class","gf_relation":"ally","source":"Hunhold 2024"}
32
+ {"id":"lns8","name":"LNS-8","bits":8,"s_bits":1,"e_bits":7,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u8","cluster":"Lns","status":"Verified","standard":"Arnold 1990; LNS-Madam (2021)","use_case":"DSP, signal processing","gf_relation":"orthogonal","source":"Alam 2021 (arXiv:2106.13914)"}
33
+ {"id":"lns16","name":"LNS-16","bits":16,"s_bits":1,"e_bits":15,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u16","cluster":"Lns","status":"Verified","standard":"LNS-Madam (2021)","use_case":"log-domain training (mul -> add)","gf_relation":"orthogonal","source":"Alam 2021"}
34
+ {"id":"lns32","name":"LNS-32","bits":32,"s_bits":1,"e_bits":31,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u32","cluster":"Lns","status":"Verified","standard":"LNS-Madam (2021)","use_case":"log-domain DSP","gf_relation":"orthogonal","source":"Alam 2021"}
35
+ {"id":"lns64","name":"LNS-64","bits":64,"s_bits":1,"e_bits":63,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u64","cluster":"Lns","status":"Verified","standard":"LNS-Madam (2021)","use_case":"scientific log-domain","gf_relation":"orthogonal","source":"Alam 2021"}
36
+ {"id":"gfternary","name":"GFTernary","bits":2,"s_bits":1,"e_bits":0,"m_bits":2,"bias":0,"bias_formula":"0","phi_distance":0.0,"storage":"u2","cluster":"GoldenFloat","status":"Verified","standard":"this work; {-phi, 0, +phi}","use_case":"bulk layers (hybrid)","gf_relation":"self","source":"BENCH-007"}
37
+ {"id":"gf4","name":"GF4","bits":4,"s_bits":1,"e_bits":1,"m_bits":2,"bias":0,"bias_formula":"0","phi_distance":0.118,"storage":"u8","cluster":"GoldenFloat","status":"Experimental","standard":"this work; F0 minimal","use_case":"proof-of-concept","gf_relation":"self","source":"specs/numeric/gf4.t27"}
38
+ {"id":"gf8","name":"GF8","bits":8,"s_bits":1,"e_bits":3,"m_bits":4,"bias":3,"bias_formula":"3","phi_distance":0.132,"storage":"u8","cluster":"GoldenFloat","status":"Verified","standard":"this work; L1 Lucas","use_case":"edge / sensors","gf_relation":"self","source":"BENCH-007 (specs/numeric/gf8.t27)"}
39
+ {"id":"gf12","name":"GF12","bits":12,"s_bits":1,"e_bits":4,"m_bits":7,"bias":7,"bias_formula":"7","phi_distance":0.047,"storage":"u16","cluster":"GoldenFloat","status":"Verified","standard":"this work; L0/F3","use_case":"mid-range / audio","gf_relation":"self","source":"BENCH-007 (specs/numeric/gf12.t27)"}
40
+ {"id":"gf16","name":"GF16","bits":16,"s_bits":1,"e_bits":6,"m_bits":9,"bias":31,"bias_formula":"31","phi_distance":0.049,"storage":"u16","cluster":"GoldenFloat","status":"Verified","standard":"this work; PHI_BIAS=60; FPGA 35/35 at 323 MHz Artix-7","use_case":"training and inference (production)","gf_relation":"self","source":"specs/numeric/gf16.t27; zenodo 10.5281/zenodo.19227877 (HW archive)"}
41
+ {"id":"gf20","name":"GF20","bits":20,"s_bits":1,"e_bits":7,"m_bits":12,"bias":63,"bias_formula":"63","phi_distance":0.035,"storage":"u32","cluster":"GoldenFloat","status":"Experimental","standard":"this work; 17-squared empirical PHI_BIAS=289","use_case":"high-precision edge","gf_relation":"self","source":"specs/numeric/gf20.t27 (spec only)"}
42
+ {"id":"gf24","name":"GF24","bits":24,"s_bits":1,"e_bits":9,"m_bits":14,"bias":255,"bias_formula":"255","phi_distance":0.025,"storage":"u32","cluster":"GoldenFloat","status":"Experimental","standard":"this work; rule e=round(23/phi^2)=9; normative bias=2^(e-1)-1=255; empirical PHI_BIAS=1364 (=L15) OPEN","use_case":"server inference","gf_relation":"self","source":"specs/numeric/gf24.t27 (spec only)"}
43
+ {"id":"gf32","name":"GF32","bits":32,"s_bits":1,"e_bits":12,"m_bits":19,"bias":2047,"bias_formula":"2047","phi_distance":0.014,"storage":"u32","cluster":"GoldenFloat","status":"Verified","standard":"this work; F0 resolved","use_case":"fp32 drop-in","gf_relation":"self","source":"BENCH-012 (specs/numeric/gf32.t27)"}
44
+ {"id":"gf64","name":"GF64","bits":64,"s_bits":1,"e_bits":24,"m_bits":39,"bias":8388607,"bias_formula":"8388607","phi_distance":0.003,"storage":"u64","cluster":"GoldenFloat","status":"Verified","standard":"this work; EXP_MAX - BIAS","use_case":"scientific / double","gf_relation":"self","source":"BENCH-007b (specs/numeric/gf64.t27)"}
45
+ {"id":"gf6","name":"GF6 (rule-derived)","bits":6,"s_bits":1,"e_bits":2,"m_bits":3,"bias":1,"bias_formula":"1","phi_distance":0.049,"storage":"u8_packed","cluster":"GoldenFloat","status":"Open","standard":"this work; rule e=round(5/phi^2)=2; FP6 E2M3 bridge","use_case":"OPEN R&D: bridge GF4-GF8; FP6 E2M3 hint","gf_relation":"experimental","source":"specs/numeric/gf6.t27"}
46
+ {"id":"gf10","name":"GF10 (rule-derived)","bits":10,"s_bits":1,"e_bits":3,"m_bits":6,"bias":3,"bias_formula":"3","phi_distance":0.118,"storage":"u16","cluster":"GoldenFloat","status":"Open","standard":"this work; rule e=round(9/phi^2)=3; bridge GF8-GF12","use_case":"OPEN R&D: tight-precision activations","gf_relation":"experimental","source":"specs/numeric/gf10.t27"}
47
+ {"id":"gf14","name":"GF14 (rule-derived)","bits":14,"s_bits":1,"e_bits":5,"m_bits":8,"bias":15,"bias_formula":"15","phi_distance":0.007,"storage":"u16","cluster":"GoldenFloat","status":"Open","standard":"this work; rule e=round(13/phi^2)=5; bridge GF12-GF16; lowest phi-dist below GF48","use_case":"OPEN R&D: drop-in for fp16 with tighter phi alignment","gf_relation":"experimental","source":"specs/numeric/gf14.t27"}
48
+ {"id":"gf48","name":"GF48 (rule-derived)","bits":48,"s_bits":1,"e_bits":18,"m_bits":29,"bias":131071,"bias_formula":"131071","phi_distance":0.003,"storage":"u64_padded","cluster":"GoldenFloat","status":"Open","standard":"this work; rule e=round(47/phi^2)=18","use_case":"OPEN R&D: between GF32 and GF64; tightest phi-dist of the wide rungs","gf_relation":"experimental","source":"specs/numeric/gf48.t27"}
49
+ {"id":"gf96","name":"GF96 (rule-derived)","bits":96,"s_bits":1,"e_bits":36,"m_bits":59,"bias":34359738367,"bias_formula":"34359738367","phi_distance":0.008,"storage":"u128_padded","cluster":"GoldenFloat","status":"Open","standard":"this work; rule e=round(95/phi^2)=36","use_case":"OPEN R&D: between GF64 and GF128 (phi-aligned extended)","gf_relation":"experimental","source":"specs/numeric/gf96.t27"}
50
+ {"id":"gf128","name":"GF128 (rule-derived)","bits":128,"s_bits":1,"e_bits":49,"m_bits":78,"bias":281474976710655,"bias_formula":"281474976710655","phi_distance":0.01,"storage":"u128","cluster":"GoldenFloat","status":"Open","standard":"this work; rule e=round(127/phi^2)=49 (corrects v1.1 typo e=48)","use_case":"OPEN R&D: phi-aligned binary128 alternative","gf_relation":"experimental","source":"specs/numeric/gf128.t27"}
51
+ {"id":"gf256","name":"GF256 (rule-derived)","bits":256,"s_bits":1,"e_bits":97,"m_bits":158,"bias":79228162514264337593543950335,"bias_formula":"79228162514264337593543950335","phi_distance":0.004,"storage":"u256_software","cluster":"GoldenFloat","status":"Open","standard":"this work; rule e=round(255/phi^2)=97; normative bias=2^96-1","use_case":"OPEN R&D: phi-aligned binary256 alternative","gf_relation":"experimental","source":"specs/numeric/gf256.t27"}
52
+ {"id":"gf512","name":"GF512 (rule-derived)","bits":512,"s_bits":1,"e_bits":195,"m_bits":316,"bias":-2,"bias_formula":"2^194-1","phi_distance":0.0009,"storage":"u512_software","cluster":"GoldenFloat","status":"Open","standard":"this work; rule e=round(511/phi^2)=195","use_case":"OPEN R&D: ultra-wide phi-aligned (extrapolation, no RTL)","gf_relation":"experimental","source":"specs/numeric/gf512.t27"}
53
+ {"id":"gf1024","name":"GF1024 (rule-derived)","bits":1024,"s_bits":1,"e_bits":391,"m_bits":632,"bias":-2,"bias_formula":"2^390-1","phi_distance":0.0006,"storage":"u1024_software","cluster":"GoldenFloat","status":"Open","standard":"this work; rule e=round(1023/phi^2)=391; lowest phi-distance in the ladder","use_case":"OPEN R&D: limit-of-ladder phi alignment (extrapolation, no RTL)","gf_relation":"experimental","source":"specs/numeric/gf1024.t27"}
54
+ {"id":"gf8_bfp","name":"GF8-BFP (block FP atop GF8)","bits":8,"s_bits":1,"e_bits":3,"m_bits":4,"bias":3,"bias_formula":"3","phi_distance":0.132,"storage":"u8_plus_shared_exp","cluster":"GoldenFloat","status":"Experimental","standard":"this work; per-tile shared exponent","use_case":"OPEN R&D: LLM-quantization-friendly GF8","gf_relation":"experimental","source":"section12.5"}
55
+ {"id":"gf_lns_hybrid","name":"GF + LNS hybrid (dual-space)","bits":16,"s_bits":1,"e_bits":6,"m_bits":9,"bias":31,"bias_formula":"31","phi_distance":0.049,"storage":"u16_plus_lns_path","cluster":"GoldenFloat","status":"Experimental","standard":"this work; mul in log-space, accumulate Lucas-closed","use_case":"OPEN R&D: dual-space arithmetic","gf_relation":"experimental","source":"section12.5"}
56
+ {"id":"mxgf6","name":"MXGF6 (microscaling GF6)","bits":6,"s_bits":1,"e_bits":2,"m_bits":3,"bias":1,"bias_formula":"1","phi_distance":0.05,"storage":"u8_packed_plus_e8m0","cluster":"GoldenFloat","status":"Experimental","standard":"this work; OCP MX block + GF6","use_case":"OPEN R&D: phi-aligned MX-6 candidate","gf_relation":"experimental","source":"section12.5"}
57
+ {"id":"mxgf4","name":"MXGF4 (microscaling GF4)","bits":4,"s_bits":1,"e_bits":1,"m_bits":2,"bias":0,"bias_formula":"0","phi_distance":0.118,"storage":"u8_packed_plus_e8m0","cluster":"GoldenFloat","status":"Experimental","standard":"this work; OCP MX block + GF4","use_case":"OPEN R&D: phi-aligned MX-4 candidate","gf_relation":"experimental","source":"section12.5"}
58
+ {"id":"int4","name":"INT4 / UINT4","bits":4,"s_bits":1,"e_bits":0,"m_bits":3,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u8_packed","cluster":"IntegerFixed","status":"Verified","standard":"two complement","use_case":"aggressive quantization","gf_relation":"competitor","source":"ISO/IEC 9899"}
59
+ {"id":"int8","name":"INT8 / UINT8","bits":8,"s_bits":1,"e_bits":0,"m_bits":7,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u8","cluster":"IntegerFixed","status":"Verified","standard":"two complement","use_case":"INT8 inference, per-channel scale","gf_relation":"competitor","source":"ISO/IEC 9899"}
60
+ {"id":"int16","name":"INT16 / UINT16","bits":16,"s_bits":1,"e_bits":0,"m_bits":15,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u16","cluster":"IntegerFixed","status":"Verified","standard":"two complement","use_case":"DSP, embedded ML","gf_relation":"competitor","source":"ISO/IEC 9899"}
61
+ {"id":"int32","name":"INT32 / UINT32","bits":32,"s_bits":1,"e_bits":0,"m_bits":31,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u32","cluster":"IntegerFixed","status":"Verified","standard":"two complement","use_case":"general CPU integer","gf_relation":"competitor","source":"ISO/IEC 9899"}
62
+ {"id":"int64","name":"INT64 / UINT64","bits":64,"s_bits":1,"e_bits":0,"m_bits":63,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u64","cluster":"IntegerFixed","status":"Verified","standard":"two complement","use_case":"databases, timestamps","gf_relation":"competitor","source":"ISO/IEC 9899"}
63
+ {"id":"int128","name":"INT128 / UINT128","bits":128,"s_bits":1,"e_bits":0,"m_bits":127,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u128","cluster":"IntegerFixed","status":"Verified","standard":"two complement","use_case":"crypto, big-int","gf_relation":"competitor","source":"Rust/Clang u128"}
64
+ {"id":"q_format","name":"Q-format (Qm.n)","bits":0,"s_bits":1,"e_bits":0,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"varies","cluster":"IntegerFixed","status":"Verified","standard":"TI fixed-point","use_case":"audio DSP, fixed-point ML","gf_relation":"orthogonal","source":"TI SPRA704"}
65
+ {"id":"bcd","name":"BCD (binary-coded decimal)","bits":0,"s_bits":0,"e_bits":0,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u4_per_digit","cluster":"IntegerFixed","status":"Historical","standard":"IBM 1959","use_case":"calculators, GAAP","gf_relation":"orthogonal","source":"ISO/IEC 8859"}
66
+ {"id":"ibm_hfp32","name":"IBM HFP (single)","bits":32,"s_bits":1,"e_bits":7,"m_bits":24,"bias":64,"bias_formula":"64","phi_distance":-1.0,"storage":"u32","cluster":"HistoricalVendor","status":"Historical","standard":"IBM System/360 (1964); base-16 exponent","use_case":"legacy mainframe","gf_relation":"orthogonal","source":"IBM POO"}
67
+ {"id":"ibm_hfp64","name":"IBM HFP (double)","bits":64,"s_bits":1,"e_bits":7,"m_bits":56,"bias":64,"bias_formula":"64","phi_distance":-1.0,"storage":"u64","cluster":"HistoricalVendor","status":"Historical","standard":"IBM System/360 (1964)","use_case":"legacy mainframe","gf_relation":"orthogonal","source":"IBM POO"}
68
+ {"id":"ibm_hfp128","name":"IBM HFP (extended)","bits":128,"s_bits":1,"e_bits":7,"m_bits":120,"bias":64,"bias_formula":"64","phi_distance":-1.0,"storage":"u128","cluster":"HistoricalVendor","status":"Historical","standard":"IBM z/Architecture","use_case":"legacy mainframe","gf_relation":"orthogonal","source":"IBM POO"}
69
+ {"id":"ms_mbf32","name":"Microsoft MBF (single)","bits":32,"s_bits":1,"e_bits":8,"m_bits":23,"bias":129,"bias_formula":"129","phi_distance":-1.0,"storage":"u32","cluster":"HistoricalVendor","status":"Historical","standard":"MS BASIC / MS-DOS (pre-IEEE)","use_case":"MS BASIC legacy","gf_relation":"orthogonal","source":"MS-DOS docs"}
70
+ {"id":"ms_mbf64","name":"Microsoft MBF (double)","bits":64,"s_bits":1,"e_bits":8,"m_bits":55,"bias":129,"bias_formula":"129","phi_distance":-1.0,"storage":"u64","cluster":"HistoricalVendor","status":"Historical","standard":"MS BASIC","use_case":"MS BASIC legacy","gf_relation":"orthogonal","source":"MS-DOS docs"}
71
+ {"id":"vax_f","name":"VAX F-float","bits":32,"s_bits":1,"e_bits":8,"m_bits":23,"bias":128,"bias_formula":"128","phi_distance":-1.0,"storage":"u32","cluster":"HistoricalVendor","status":"Historical","standard":"DEC VAX","use_case":"DEC legacy","gf_relation":"orthogonal","source":"VAX Architecture Reference"}
72
+ {"id":"vax_d","name":"VAX D-float","bits":64,"s_bits":1,"e_bits":8,"m_bits":55,"bias":128,"bias_formula":"128","phi_distance":-1.0,"storage":"u64","cluster":"HistoricalVendor","status":"Historical","standard":"DEC VAX","use_case":"DEC legacy double","gf_relation":"orthogonal","source":"VAX Architecture Reference"}
73
+ {"id":"vax_g","name":"VAX G-float","bits":64,"s_bits":1,"e_bits":11,"m_bits":52,"bias":1024,"bias_formula":"1024","phi_distance":-1.0,"storage":"u64","cluster":"HistoricalVendor","status":"Historical","standard":"DEC VAX (IEEE-like)","use_case":"DEC legacy","gf_relation":"orthogonal","source":"VAX Architecture Reference"}
74
+ {"id":"vax_h","name":"VAX H-float","bits":128,"s_bits":1,"e_bits":15,"m_bits":112,"bias":16384,"bias_formula":"16384","phi_distance":-1.0,"storage":"u128","cluster":"HistoricalVendor","status":"Historical","standard":"DEC VAX","use_case":"DEC quad","gf_relation":"orthogonal","source":"VAX Architecture Reference"}
75
+ {"id":"cray_float","name":"Cray float","bits":64,"s_bits":1,"e_bits":15,"m_bits":48,"bias":16384,"bias_formula":"16384","phi_distance":-1.0,"storage":"u64","cluster":"HistoricalVendor","status":"Historical","standard":"Cray-1 (1976); no NaN/Inf, unrounded mul","use_case":"Cray legacy","gf_relation":"orthogonal","source":"Cray-1 Hardware Reference"}
76
+ {"id":"minifloat","name":"minifloat (arbitrary E:M, <=16 bits)","bits":0,"s_bits":1,"e_bits":0,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"varies","cluster":"Theoretical","status":"Experimental","standard":"parametric framework","use_case":"design space of GF4/GF8/GF12/GF16","gf_relation":"ally","source":"Higham 1996"}
77
+ {"id":"unum_i","name":"Unum I (tapered + ubound)","bits":0,"s_bits":1,"e_bits":0,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"varies","cluster":"Theoretical","status":"Experimental","standard":"Gustafson 2015 (predecessor to posit)","use_case":"interval arithmetic","gf_relation":"ally","source":"Gustafson 2015 (The End of Error)"}
78
+ {"id":"unum_ii","name":"Unum II (SORN projective)","bits":0,"s_bits":0,"e_bits":0,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"lookup_table","cluster":"Theoretical","status":"Experimental","standard":"Gustafson 2016","use_case":"lookup-table real arithmetic; not GF-comparable","gf_relation":"orthogonal","source":"Gustafson 2016"}
79
+ {"id":"tapered_fp","name":"tapered floating point","bits":0,"s_bits":1,"e_bits":0,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"varies","cluster":"Theoretical","status":"Experimental","standard":"Morris 1971; posit ancestor","use_case":"variable mantissa via regime bits","gf_relation":"ally","source":"Morris 1971 (IEEE TC)"}
80
+ {"id":"block_fp","name":"block floating point (BFP)","bits":0,"s_bits":0,"e_bits":0,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"varies","cluster":"CompressionTrick","status":"Verified","standard":"Wilkinson 1965; modern revivals","use_case":"per-tile shared exponent","gf_relation":"ally","source":"Darvish-Rouhani 2020"}
81
+ {"id":"shared_exp","name":"shared-exponent formats","bits":0,"s_bits":0,"e_bits":0,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"varies","cluster":"CompressionTrick","status":"Verified","standard":"generalised BFP","use_case":"LLM quantization","gf_relation":"ally","source":"Darvish-Rouhani 2020"}
82
+ {"id":"per_channel_scale","name":"INT8 with per-channel scale","bits":8,"s_bits":1,"e_bits":0,"m_bits":7,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"u8_plus_fp32_scale","cluster":"CompressionTrick","status":"Verified","standard":"Jacob 2018 (TFLite)","use_case":"standard quant inference","gf_relation":"competitor","source":"Jacob 2018 (CVPR)"}
83
+ {"id":"stochastic_rounding","name":"stochastic rounding (technique)","bits":0,"s_bits":0,"e_bits":0,"m_bits":0,"bias":0,"bias_formula":"0","phi_distance":-1.0,"storage":"varies","cluster":"CompressionTrick","status":"Verified","standard":"Gupta 2015","use_case":"training small networks at low precision","gf_relation":"ally","source":"Gupta 2015 (ICML)"}