3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-22 13:53:40 +00:00

select once

This commit is contained in:
Eddie Hung 2019-09-26 10:15:05 -07:00
parent 27e5bf5aad
commit 781dda6175
2 changed files with 12 additions and 8 deletions

View file

@ -346,9 +346,11 @@ struct SynthXilinxPass : public ScriptPass
"-D DSP_A_MINWIDTH=2 -D DSP_B_MINWIDTH=2 " // Blocks Nx1 multipliers
"-D DSP_Y_MINWIDTH=9 " // UG901 suggests small multiplies are those 4x4 and smaller
"-D DSP_SIGNEDONLY=1 -D DSP_NAME=$__MUL25X18");
run("opt_expr -fine a:mul2dsp");
run("wreduce a:mul2dsp");
run("setattr -unset mul2dsp a:mul2dsp");
run("select a:mul2dsp");
run("opt_expr -fine"):
run("wreduce");
run("setattr -unset mul2dsp");
run("select -clear");
run("xilinx_dsp");
run("chtype -set $mul t:$__soft_mul");
}