remove debug prints
[ieee754fpu.git] / src / ieee754 / fpdiv / test / test_fpsqrt_pipe.py
index 84cd4dadc86f7b4494dc272c75f8f902b97dd6cd..38b1f3609a0f0715a113c9844b6eda8a011ed3ee 100644 (file)
@@ -12,17 +12,17 @@ def sqrt(x):
 def test_pipe_sqrt_fp16():
     dut = FPDIVMuxInOut(16, 4)
     runfp(dut, 16, "test_fpsqrt_pipe_fp16", Float16, sqrt,
-          single_op=True, opcode=1)
+          single_op=True, opcode=1, n_vals=100)
 
 def test_pipe_sqrt_fp32():
     dut = FPDIVMuxInOut(32, 4)
     runfp(dut, 32, "test_fpsqrt_pipe_fp32", Float32, sqrt,
-          single_op=True, opcode=1)
+          single_op=True, opcode=1, n_vals=100)
 
 def test_pipe_sqrt_fp64():
     dut = FPDIVMuxInOut(64, 4)
     runfp(dut, 64, "test_fpsqrt_pipe_fp64", Float64, sqrt,
-          single_op=True, opcode=1)
+          single_op=True, opcode=1, n_vals=100)
 
 if __name__ == '__main__':
     test_pipe_sqrt_fp16()