mirror of https://github.com/YosysHQ/yosys.git
quicklogic: ql_dsp_simd add dspv1 test
This commit is contained in:
parent
6e1ba9206f
commit
7e3122848f
|
@ -0,0 +1,63 @@
|
|||
read_verilog <<EOT
|
||||
module foo(
|
||||
input [7:0] A,
|
||||
input [7:0] B,
|
||||
input [7:0] C,
|
||||
input [7:0] D,
|
||||
output reg [7:0] X,
|
||||
output reg [7:0] Y);
|
||||
assign X = A * B;
|
||||
assign Y = C * D;
|
||||
endmodule
|
||||
EOT
|
||||
|
||||
synth_quicklogic -run :map_dsp
|
||||
|
||||
# this is just taken from map_dsp step
|
||||
wreduce t:$mul
|
||||
ql_dsp_macc
|
||||
techmap -map +/mul2dsp.v -D DSP_A_MAXWIDTH=20 -D DSP_B_MAXWIDTH=18 -D DSP_A_MINWIDTH=11 -D DSP_B_MINWIDTH=10 -D DSP_NAME=$__QL_MUL20X18
|
||||
chtype -set $mul t:$__soft_mul
|
||||
techmap -map +/mul2dsp.v -D DSP_A_MAXWIDTH=10 -D DSP_B_MAXWIDTH=9 -D DSP_A_MINWIDTH=4 -D DSP_B_MINWIDTH=4 -D DSP_NAME=$__QL_MUL10X9
|
||||
techmap -map +/quicklogic/qlf_k6n10f/dspv1_map.v -D USE_DSP_CFG_PARAMS=0
|
||||
read_verilog -lib +/quicklogic/qlf_k6n10f/dspv1_sim.v
|
||||
|
||||
select -assert-count 2 t:dsp_t1_10x9x32_cfg_ports
|
||||
select -assert-count 0 t:dsp_t1_20x18x64_cfg_ports
|
||||
equiv_opt -assert -async2sync -map +/quicklogic/qlf_k6n10f/dspv1_sim.v ql_dsp_simd
|
||||
design -load postopt
|
||||
select -assert-count 0 t:dsp_t1_10x9x32_cfg_ports
|
||||
select -assert-count 1 t:dsp_t1_20x18x64_cfg_ports
|
||||
|
||||
design -reset
|
||||
|
||||
read_verilog <<EOT
|
||||
module foo(
|
||||
input [7:0] A,
|
||||
input [7:0] B,
|
||||
input [7:0] C,
|
||||
input [7:0] D,
|
||||
input [7:0] E,
|
||||
output reg [7:0] X,
|
||||
output reg [7:0] Y);
|
||||
assign X = A * B;
|
||||
assign Y = C * (D + E); // <-- look here
|
||||
endmodule
|
||||
EOT
|
||||
|
||||
synth_quicklogic -run :map_dsp
|
||||
|
||||
wreduce t:$mul
|
||||
ql_dsp_macc
|
||||
techmap -map +/mul2dsp.v -D DSP_A_MAXWIDTH=20 -D DSP_B_MAXWIDTH=18 -D DSP_A_MINWIDTH=11 -D DSP_B_MINWIDTH=10 -D DSP_NAME=$__QL_MUL20X18
|
||||
chtype -set $mul t:$__soft_mul
|
||||
techmap -map +/mul2dsp.v -D DSP_A_MAXWIDTH=10 -D DSP_B_MAXWIDTH=9 -D DSP_A_MINWIDTH=4 -D DSP_B_MINWIDTH=4 -D DSP_NAME=$__QL_MUL10X9
|
||||
techmap -map +/quicklogic/qlf_k6n10f/dspv1_map.v -D USE_DSP_CFG_PARAMS=0
|
||||
read_verilog -lib +/quicklogic/qlf_k6n10f/dspv1_sim.v
|
||||
|
||||
select -assert-count 2 t:dsp_t1_10x9x32_cfg_ports
|
||||
select -assert-count 0 t:dsp_t1_20x18x64_cfg_ports
|
||||
equiv_opt -assert -async2sync -map +/quicklogic/qlf_k6n10f/dspv1_sim.v ql_dsp_simd
|
||||
design -load postopt
|
||||
select -assert-count 0 t:dsp_t1_10x9x32_cfg_ports
|
||||
select -assert-count 1 t:dsp_t1_20x18x64_cfg_ports
|
Loading…
Reference in New Issue