From: Luke Kenneth Casson Leighton Date: Wed, 24 Jul 2019 12:08:18 +0000 (+0100) Subject: add new FP32-FRSQRT regression test X-Git-Tag: ls180-24jan2020~732 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=27bcad1b21d64a70b097dd3b4e080c85c0f4bdee;p=ieee754fpu.git add new FP32-FRSQRT regression test --- diff --git a/src/ieee754/fpcommon/test/fpmux.py b/src/ieee754/fpcommon/test/fpmux.py index f07ca658..ef50f81d 100644 --- a/src/ieee754/fpcommon/test/fpmux.py +++ b/src/ieee754/fpcommon/test/fpmux.py @@ -172,6 +172,8 @@ def create_random(num_rows, width, single_op=False, n_vals=10): #op1 = 0x48f0 #op1 = 0x429 #op1 = 0x2631 + #op1 = 0x3001 + #op1 = 0x3f2ad8eb vals.append((op1,)) else: diff --git a/src/ieee754/fpdiv/test/test_fprsqrt_pipe.py b/src/ieee754/fpdiv/test/test_fprsqrt_pipe.py index b196d3ea..72e619b7 100644 --- a/src/ieee754/fpdiv/test/test_fprsqrt_pipe.py +++ b/src/ieee754/fpdiv/test/test_fprsqrt_pipe.py @@ -25,6 +25,6 @@ def test_pipe_rsqrt_fp64(): single_op=True, opcode=2, n_vals=100) if __name__ == '__main__': - test_pipe_rsqrt_fp16() test_pipe_rsqrt_fp32() + test_pipe_rsqrt_fp16() test_pipe_rsqrt_fp64()