File: test_round.py

package info (click to toggle)
python-gfloat 0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 464 kB
  • sloc: python: 1,448; sh: 37; makefile: 20
file content (455 lines) | stat: -rw-r--r-- 13,333 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
# Copyright (c) 2024 Graphcore Ltd. All rights reserved.

from typing import Type

import ml_dtypes
import numpy as np
import pytest

from gfloat import RoundMode, decode_float, round_float
from gfloat.formats import *


def test_round_p3109() -> None:
    fi = format_info_p3109(4)
    assert round_float(fi, 0.0068359375) == 0.0068359375
    assert round_float(fi, 0.0029296875) == 0.0029296875
    assert round_float(fi, 0.0078125) == 0.0078125
    assert round_float(fi, 0.017578125) == 0.017578125
    assert round_float(fi, 224.0) == 224.0
    assert round_float(fi, 240.0) == np.inf

    assert round_float(fi, 224.1, RoundMode.TowardPositive) == np.inf

    assert round_float(fi, 232.0) == 224.0
    assert round_float(fi, 232.0, RoundMode.TiesToAway) == np.inf
    assert round_float(fi, 232.0, RoundMode.TowardZero) == 224.0
    assert round_float(fi, 232.0, RoundMode.TowardNegative) == 224.0
    assert round_float(fi, 232.0, RoundMode.TowardPositive) == np.inf

    assert round_float(fi, -232.0) == -224.0
    assert round_float(fi, -232.0, RoundMode.TiesToAway) == -np.inf
    assert round_float(fi, -232.0, RoundMode.TowardZero) == -224.0
    assert round_float(fi, -232.0, RoundMode.TowardNegative) == -np.inf
    assert round_float(fi, -232.0, RoundMode.TowardPositive) == -224.0

    assert round_float(fi, 232.1) == np.inf


p4min = 2**-10  # smallest subnormal in p4


@pytest.mark.parametrize(
    "mode, vals",
    (
        (
            RoundMode.TowardZero,
            (
                (p4min, p4min),
                (p4min / 4, 0.0),
                (p4min / 2, 0.0),
                (-p4min, -p4min),
                (-p4min / 4, 0.0),
                (-p4min / 2, 0.0),
                (64.0, 64.0),
                (63.0, 60.0),
                (62.0, 60.0),
                (-64.0, -64.0),
                (-63.0, -60.0),
                (-62.0, -60.0),
            ),
        ),
        (
            RoundMode.TowardPositive,
            (
                (p4min, p4min),
                (p4min / 4, p4min),
                (p4min / 2, p4min),
                (-p4min, -p4min),
                (-p4min / 4, 0.0),
                (-p4min / 2, 0.0),
                (64.0, 64.0),
                (63.0, 64.0),
                (62.0, 64.0),
                (-64.0, -64.0),
                (-63.0, -60.0),
                (-62.0, -60.0),
            ),
        ),
        (
            RoundMode.TowardNegative,
            (
                (p4min, p4min),
                (p4min / 4, 0.0),
                (p4min / 2, 0.0),
                (-p4min, -p4min),
                (-p4min / 4, -p4min),
                (-p4min / 2, -p4min),
                (64.0, 64.0),
                (63.0, 60.0),
                (62.0, 60.0),
                (-64.0, -64.0),
                (-63.0, -64.0),
                (-62.0, -64.0),
            ),
        ),
        (
            RoundMode.TiesToEven,
            (
                (p4min, p4min),
                (p4min / 4, 0.0),
                (p4min / 2, 0.0),
                (-p4min, -p4min),
                (-p4min / 4, 0.0),
                (-p4min / 2, 0.0),
                (64.0, 64.0),
                (63.0, 64.0),
                (62.0, 64.0),
                (61.0, 60.0),
                (-64.0, -64.0),
                (-63.0, -64.0),
                (-62.0, -64.0),
                (-61.0, -60.0),
                (-58.0, -56.0),
            ),
        ),
        (
            RoundMode.TiesToAway,
            (
                (p4min, p4min),
                (p4min / 4, 0.0),
                (p4min / 2, p4min),
                (-p4min, -p4min),
                (-p4min / 4, 0.0),
                (-p4min / 2, -p4min),
                (64.0, 64.0),
                (63.0, 64.0),
                (62.0, 64.0),
                (61.0, 60.0),
                (-64.0, -64.0),
                (-63.0, -64.0),
                (-62.0, -64.0),
                (-61.0, -60.0),
                (-58.0, -60.0),
            ),
        ),
    ),
)
def test_round_p3109b(mode: RoundMode, vals: list) -> None:
    fi = format_info_p3109(4)

    for sat in (True, False):
        for val, expected in vals:
            assert round_float(fi, val, mode, sat) == expected


p4max = 224.0
p4maxup = 240.0
p4maxhalfup = (p4max + p4maxup) / 2


@pytest.mark.parametrize(
    "modesat, vals",
    (
        (
            (RoundMode.TowardZero, True),
            (
                (p4max, p4max),
                (p4maxhalfup, p4max),
                (p4maxup, p4max),
                (np.inf, p4max),
                (-p4max, -p4max),
                (-p4maxhalfup, -p4max),
                (-p4maxup, -p4max),
                (-np.inf, -p4max),
            ),
        ),
        (
            (RoundMode.TowardZero, False),
            (
                (p4max, p4max),
                (p4maxhalfup, p4max),
                (p4maxup, p4max),
                (np.inf, np.inf),
                (-p4max, -p4max),
                (-p4maxhalfup, -p4max),
                (-p4maxup, -p4max),
                (-np.inf, -np.inf),
            ),
        ),
        (
            (RoundMode.TowardPositive, True),
            (
                (p4max, p4max),
                (p4maxhalfup, p4max),
                (p4maxup, p4max),
                (np.inf, p4max),
                (-p4max, -p4max),
                (-p4maxhalfup, -p4max),
                (-p4maxup, -p4max),
                (-np.inf, -p4max),
            ),
        ),
        (
            (RoundMode.TowardPositive, False),
            (
                (p4max, p4max),
                (p4maxhalfup, np.inf),
                (p4maxup, np.inf),
                (np.inf, np.inf),
                (-p4max, -p4max),
                (-p4maxhalfup, -p4max),
                (-p4maxup, -p4max),
                (-np.inf, -np.inf),
            ),
        ),
        (
            (RoundMode.TowardNegative, True),
            (
                (p4max, p4max),
                (p4maxhalfup, p4max),
                (p4maxup, p4max),
                (np.inf, p4max),
                (-p4max, -p4max),
                (-p4maxhalfup, -p4max),
                (-p4maxup, -p4max),
                (-np.inf, -p4max),
            ),
        ),
        (
            (RoundMode.TowardNegative, False),
            (
                (p4max, p4max),
                (p4maxhalfup, p4max),
                (p4maxup, p4max),
                (np.inf, np.inf),
                (-p4max, -p4max),
                (-p4maxhalfup, -np.inf),
                (-p4maxup, -np.inf),
                (-np.inf, -np.inf),
            ),
        ),
        (
            (RoundMode.TiesToEven, True),
            (
                (p4max, p4max),
                (p4maxhalfup, p4max),
                (p4maxup, p4max),
                (np.inf, p4max),
                (-p4max, -p4max),
                (-p4maxhalfup, -p4max),
                (-p4maxup, -p4max),
                (-np.inf, -p4max),
            ),
        ),
        (
            (RoundMode.TiesToEven, False),
            (
                (p4max, p4max),
                (p4maxhalfup, p4max),
                (p4maxup, np.inf),
                (np.inf, np.inf),
                (-p4max, -p4max),
                (-p4maxhalfup, -p4max),
                (-p4maxup, -np.inf),
                (-np.inf, -np.inf),
            ),
        ),
        (
            (RoundMode.TiesToAway, True),
            (
                (p4max, p4max),
                (p4maxhalfup, p4max),
                (p4maxup, p4max),
                (np.inf, p4max),
                (-p4max, -p4max),
                (-p4maxhalfup, -p4max),
                (-p4maxup, -p4max),
                (-np.inf, -p4max),
            ),
        ),
        (
            (RoundMode.TiesToAway, False),
            (
                (p4max, p4max),
                (p4maxhalfup, np.inf),
                (p4maxup, np.inf),
                (np.inf, np.inf),
                (-p4max, -p4max),
                (-p4maxhalfup, -np.inf),
                (-p4maxup, -np.inf),
                (-np.inf, -np.inf),
            ),
        ),
    ),
    ids=lambda x: f"{str(x[0])}-{'Sat' if x[1] else 'Inf'}" if len(x) == 2 else None,
)
def test_round_p3109_sat(modesat: tuple[RoundMode, bool], vals: list) -> None:
    fi = format_info_p3109(4)

    for val, expected in vals:
        assert round_float(fi, val, *modesat) == expected


def test_round_e5m2() -> None:
    fi = format_info_ocp_e5m2

    assert fi.max == 57344

    assert round_float(fi, 1.5258789e-05) == 2**-16

    # Default NONSAT rounding
    assert round_float(fi, 57344.0) == 57344
    assert round_float(fi, 57344.1) == 57344
    assert round_float(fi, 61439.9) == 57344
    assert round_float(fi, 61440.0) == np.inf
    assert round_float(fi, np.inf, sat=False) == np.inf
    assert round_float(fi, -np.inf, sat=False) == -np.inf
    assert np.isnan(round_float(fi, np.nan, sat=False))

    # SAT rounding
    assert round_float(fi, 57344.0, sat=True) == 57344
    assert round_float(fi, 57344.1, sat=True) == 57344
    assert round_float(fi, 61439.9, sat=True) == 57344
    assert round_float(fi, 61440.0, sat=True) == 57344
    assert round_float(fi, np.inf, sat=True) == 57344
    assert round_float(fi, -np.inf, sat=True) == -57344
    assert np.isnan(round_float(fi, np.nan, sat=True))


def test_round_e4m3() -> None:
    fi = format_info_ocp_e4m3

    assert fi.max == 448

    # Default NONSAT rounding
    assert round_float(fi, 448.0) == 448
    assert round_float(fi, 448.1) == 448
    assert round_float(fi, 464.0) == 448
    assert np.isnan(round_float(fi, 464.01))
    assert np.isnan(round_float(fi, np.inf, sat=False))
    assert np.isnan(round_float(fi, -np.inf, sat=False))
    assert np.isnan(round_float(fi, np.nan, sat=False))

    # SAT rounding
    assert round_float(fi, 448.0, sat=True) == 448
    assert round_float(fi, 448.1, sat=True) == 448
    assert round_float(fi, 464.0, sat=True) == 448
    assert round_float(fi, 464.01, sat=True) == 448
    assert round_float(fi, np.inf, sat=True) == 448
    assert round_float(fi, -np.inf, sat=True) == -448
    assert np.isnan(round_float(fi, np.nan, sat=True))


some_positive_codepoints = (
    0x00,
    0x01,
    0x02,
    0x03,
    0x07,
    0x0F,
    0x17,
    0x21,
    0x33,
    0x40,
    0x53,
    0x65,
    0x70,
)


@pytest.mark.parametrize(
    "fi",
    [
        format_info_ocp_e5m2,
        format_info_ocp_e4m3,
        *p3109_formats,
    ],
)
def test_round(fi: FormatInfo) -> None:
    """
    Test rounding from values between exact binary8 values
    For integer code point i, let
      v0 = the float value at i
      v1 = the float value at i+1, i.e. nextUp(v0)
      dv = v1 - v0
    Then check that:
        round(v0) == v0
        round(v0 + 0.3*dv) == v0
        round(v0 + 0.6*dv) == v1
    """
    for i in some_positive_codepoints:
        v0 = decode_float(fi, i + 0).fval
        v1 = decode_float(fi, i + 1).fval
        if np.isfinite([v0, v1]).all():
            dv = v1 - v0
            np.testing.assert_equal(round_float(fi, v0), v0)
            np.testing.assert_equal(round_float(fi, v0 + 0.3 * dv), v0)
            np.testing.assert_equal(round_float(fi, v0 + 0.49 * dv), v0)
            np.testing.assert_equal(round_float(fi, v0 + 0.51 * dv), v1)
            np.testing.assert_equal(round_float(fi, v0 + 0.99 * dv), v1)
            nearest_even = v0 if (i & 1 == 0) else v1
            np.testing.assert_equal(round_float(fi, v0 + 0.50 * dv), nearest_even)


test_formats = [
    (format_info_ocp_e5m2, ml_dtypes.float8_e5m2),
    (format_info_ocp_e4m3, ml_dtypes.float8_e4m3fn),
]


def _linterp(a: float, b: float, t: float) -> float:
    return a * (1 - t) + b * t


def _mlround(v: float, dty: Type) -> float:
    """
    Round `v` using ml_dtypes library
    """
    return np.array([v]).astype(dty).astype(float).item()


@pytest.mark.parametrize("fi,mldtype", test_formats)
def test_ml_dtype_compatible(fi: FormatInfo, mldtype: Type) -> None:
    """
    Test that rounding is compatible with ml_dtypes
    """
    for i in range(255):
        # For each float v, check values at various interpolations
        # between v and nextUp(v)
        v0 = decode_float(fi, i + 0).fval
        v1 = decode_float(fi, i + 1).fval

        for alpha in (0, 0.3, 0.5, 0.6, 0.9, 1.25):
            v = _linterp(v0, v1, alpha)
            if np.isfinite(v):
                val = round_float(fi, v, RoundMode.TiesToEven)

                mlval = _mlround(v, mldtype)
                np.testing.assert_equal(val, mlval)


@pytest.mark.parametrize("fi,mldtype", test_formats)
def test_round_ints(fi: FormatInfo, mldtype: Type) -> None:
    for v in np.arange(289).astype(float):
        val = round_float(fi, v)

        mlval = _mlround(v, mldtype)
        np.testing.assert_equal(val, mlval)


@pytest.mark.parametrize("fi", all_formats)
def test_round_roundtrip(fi: FormatInfo) -> None:
    if fi.bits <= 8:
        step = 1
    elif fi.bits <= 16:
        step = 13
    elif fi.bits <= 32:
        step = 73013
    elif fi.bits <= 64:
        step = (73013 << 32) + 39

    for i in range(0, 2**fi.bits, step):
        fv = decode_float(fi, i)
        fval2 = round_float(fi, fv.fval)
        np.testing.assert_equal(fval2, fv.fval)