Move to (recently merged) non-pipelined Divide.

This commit is contained in:
Jonathan Woodruff
2022-01-13 11:14:20 +00:00
parent 37f6dbde93
commit 1f8181d595

View File

@@ -95,7 +95,7 @@ module mkDoubleDiv(Server#(Tuple3#(Double, Double, FpuRoundMode), Tuple2#(Double
`ifdef USE_XILINX_FPU
let fpu <- mkXilinxFpDiv;
`else
let int_div <- mkDivider(1); // [sizhuo] size in RVFpu: 2
let int_div <- mkNonPipelinedDivider(3); // [sizhuo] size in RVFpu: 2
let fpu <- mkFloatingPointDivider(int_div);
`endif
return fpu;