From ec4eb0b3ffee9239d043e1ad2f8c34475670abcb Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 18 Feb 2019 18:22:50 +0000 Subject: [PATCH] diff on div and mul shows corrections stage missed out --- src/add/fmul.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/add/fmul.py b/src/add/fmul.py index 73da3e4c..c5e3f9d2 100644 --- a/src/add/fmul.py +++ b/src/add/fmul.py @@ -129,6 +129,12 @@ class FPMUL(FPBase): with m.State("round"): self.roundz(m, z, of, "corrections") + # ****** + # correction stage + + with m.State("corrections"): + self.corrections(m, z, "pack") + # ****** # pack stage with m.State("pack"): -- 2.30.2