Merge pull request #310 from lnis-uofu/micro_benchmarks
Introduce Micro benchmark: 1-bit Blinking
This commit is contained in:
commit
9f58f926c8
|
@ -0,0 +1,17 @@
|
|||
// ------------------------------
|
||||
// Design Name: Blinking
|
||||
// Functionality: 1-bit blinking
|
||||
// ------------------------------
|
||||
module blinking(
|
||||
clk,
|
||||
out
|
||||
);
|
||||
|
||||
input clk;
|
||||
output out;
|
||||
|
||||
always @(posedge clk) begin
|
||||
out = ~out;
|
||||
end
|
||||
|
||||
endmodule
|
|
@ -27,6 +27,7 @@ arch0=${PATH:OPENFPGA_PATH}/openfpga_flow/vpr_arch/k4_N4_tileable_40nm.xml
|
|||
bench0=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/micro_benchmark/and2/and2.v
|
||||
bench1=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/micro_benchmark/or2/or2.v
|
||||
bench2=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/micro_benchmark/and2_latch/and2_latch.v
|
||||
bench3=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/micro_benchmark/blinking/blinking.v
|
||||
|
||||
[SYNTHESIS_PARAM]
|
||||
bench0_top = and2
|
||||
|
@ -38,5 +39,8 @@ bench1_chan_width = 300
|
|||
bench2_top = and2_latch
|
||||
bench2_chan_width = 300
|
||||
|
||||
bench3_top = blinking
|
||||
bench3_chan_width = 300
|
||||
|
||||
[SCRIPT_PARAM_MIN_ROUTE_CHAN_WIDTH]
|
||||
end_flow_with_test=
|
||||
|
|
Loading…
Reference in New Issue