We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2347e1c commit 81b49cbCopy full SHA for 81b49cb
src/gfloat/__init__.py
@@ -2,10 +2,10 @@
2
3
from .block import (
4
BlockFormatInfo,
5
+ compute_scale_amax,
6
decode_block,
7
encode_block,
8
quantize_block,
- compute_scale_amax,
9
)
10
from .decode import decode_float
11
from .printing import float_pow2str, float_tilde_unless_roundtrip_str
src/gfloat/block.py
@@ -4,7 +4,8 @@
# https://en.wikipedia.org/wiki/Block_floating_point
from dataclasses import dataclass
-from typing import Iterable, Callable
+from typing import Callable, Iterable
+
import numpy as np
import numpy.typing as npt
0 commit comments