format code
authorJacob Lifshay <programmerjake@gmail.com>
Wed, 15 May 2024 06:24:31 +0000 (23:24 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Wed, 15 May 2024 06:36:55 +0000 (23:36 -0700)
gf_reference/gfpinv.py
src/nmigen_gf/hdl/cldivrem.py

index 69718d1c1ba30507062149e65b2d6138e21ee669..b6663b7c6f8153bc642e7b9432f3879245840c75 100644 (file)
@@ -27,7 +27,7 @@ def gfpinv(a):
                 r += p
             u >>= 1
             r >>= 1
-            continue # loop again
+            continue  # loop again
         # implementations could use count-zeros on
         # both v and s to save cycles
         if v & 1 == 0:
@@ -35,7 +35,7 @@ def gfpinv(a):
                 s += p
             v >>= 1
             s >>= 1
-            continue # loop again
+            continue  # loop again
         # both LSB of u and v are 1
         x = u - v
         if x > 0:
index 7b77acce9ffd3113a2d26d1a7fbf4bebf7fd43ea..ad7f618d099864a18f23377275579e23d82d0df4 100644 (file)
@@ -148,6 +148,7 @@ class CLDivRemShape:
 @plain_data(frozen=True, eq=False)
 class CLDivRemState:
     __slots__ = "shape", "name", "clock", "substep", "d", "r", "q", "shift"
+
     def __init__(self, shape, *, name=None, src_loc_at=0):
         assert isinstance(shape, CLDivRemShape)
         if name is None: