From: lkcl Date: Wed, 16 Mar 2022 06:15:45 +0000 (+0000) Subject: (no commit message) X-Git-Tag: opf_rfc_ls005_v1~3044 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=37f0380b9078d184d4b0fb047b0048f95735b9c4;p=libreriscv.git --- diff --git a/openpower/sv/bitmanip/gfbinv.py b/openpower/sv/bitmanip/gfbinv.py index 648fac694..685a6d13c 100644 --- a/openpower/sv/bitmanip/gfbinv.py +++ b/openpower/sv/bitmanip/gfbinv.py @@ -5,7 +5,7 @@ from .cldivrem import degree def gfbinv(a): """compute the GF(2^m) inverse of `a`.""" # Derived from Algorithm 3, from [7] in: - # https://scholar.archive.org/work/ktlygagf6jhslhx42gpuwwzc44/access/wayback/http://acsel-lab.com/arithmetic/arith18/papers/ARITH18_Kobayashi.pdf + # https://ftp.libre-soc.org/ARITH18_Kobayashi.pdf s = decode_reducing_polynomial() m = degree(s)