[test] add a new test to validate io subtile support
This commit is contained in:
parent
294de17189
commit
e82e4f487e
|
@ -175,6 +175,7 @@ echo -e "Testing tiles with I/O in center grid";
|
|||
run-task basic_tests/tile_organization/tileable_io $@
|
||||
echo -e "Testing tiles with I/O consisting of subtiles";
|
||||
run-task basic_tests/tile_organization/io_subtile $@
|
||||
run-task basic_tests/tile_organization/io_subtile_strong $@
|
||||
echo -e "Testing tile grouping on a homogeneous FPGA fabric (Full testbench)";
|
||||
run-task basic_tests/tile_organization/homo_fabric_tile $@
|
||||
echo -e "Testing tile grouping on a homogeneous FPGA fabric (Preconfigured testbench)";
|
||||
|
|
|
@ -0,0 +1,36 @@
|
|||
# = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
|
||||
# Configuration file for running experiments
|
||||
# = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
|
||||
# timeout_each_job : FPGA Task script splits fpga flow into multiple jobs
|
||||
# Each job execute fpga_flow script on combination of architecture & benchmark
|
||||
# timeout_each_job is timeout for each job
|
||||
# = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
|
||||
|
||||
[GENERAL]
|
||||
run_engine=openfpga_shell
|
||||
power_tech_file = ${PATH:OPENFPGA_PATH}/openfpga_flow/tech/PTM_45nm/45nm.xml
|
||||
power_analysis = true
|
||||
spice_output=false
|
||||
verilog_output=true
|
||||
timeout_each_job = 20*60
|
||||
fpga_flow=yosys_vpr
|
||||
|
||||
[OpenFPGA_SHELL]
|
||||
openfpga_shell_template=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_shell_scripts/fix_device_example_script.openfpga
|
||||
openfpga_arch_file=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_arch/k4_N4_40nm_IoSubtile_cc_openfpga.xml
|
||||
openfpga_sim_setting_file=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_simulation_settings/auto_sim_openfpga.xml
|
||||
openfpga_vpr_device_layout=3x3
|
||||
|
||||
[ARCHITECTURES]
|
||||
arch0=${PATH:OPENFPGA_PATH}/openfpga_flow/vpr_arch/k4_N4_tileable_IoSubtile_40nm.xml
|
||||
|
||||
[BENCHMARKS]
|
||||
bench0=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/micro_benchmark/or2/or2.v
|
||||
|
||||
[SYNTHESIS_PARAM]
|
||||
bench_read_verilog_options_common = -nolatches
|
||||
bench0_top = or2
|
||||
|
||||
[SCRIPT_PARAM_MIN_ROUTE_CHAN_WIDTH]
|
||||
end_flow_with_test=
|
||||
vpr_fpga_verilog_formal_verification_top_netlist=
|
|
@ -29,6 +29,34 @@
|
|||
</model>
|
||||
</models>
|
||||
<tiles>
|
||||
<tile name="hybrid_io_tile_center" area="0">
|
||||
<sub_tile name="fpga_input_center" capacity="6">
|
||||
<equivalent_sites>
|
||||
<site pb_type="fpga_input_center"/>
|
||||
</equivalent_sites>
|
||||
<output name="inpad" num_pins="1"/>
|
||||
<fc in_type="frac" in_val="0.15" out_type="frac" out_val="0.10"/>
|
||||
<pinlocations pattern="custom">
|
||||
<loc side="left">fpga_input_center[1:0].inpad</loc>
|
||||
<loc side="top">fpga_input_center[3:2].inpad</loc>
|
||||
<loc side="right">fpga_input_center[4:4].inpad</loc>
|
||||
<loc side="bottom">fpga_input_center[5:5].inpad</loc>
|
||||
</pinlocations>
|
||||
</sub_tile>
|
||||
<sub_tile name="fpga_output_center" capacity="4">
|
||||
<equivalent_sites>
|
||||
<site pb_type="fpga_output_center"/>
|
||||
</equivalent_sites>
|
||||
<input name="outpad" num_pins="1"/>
|
||||
<fc in_type="frac" in_val="0.15" out_type="frac" out_val="0.10"/>
|
||||
<pinlocations pattern="custom">
|
||||
<loc side="left">fpga_output_center[1:0].outpad</loc>
|
||||
<loc side="top"></loc>
|
||||
<loc side="right">fpga_output_center[3:2].outpad</loc>
|
||||
<loc side="bottom"></loc>
|
||||
</pinlocations>
|
||||
</sub_tile>
|
||||
</tile>
|
||||
<tile name="hybrid_io_tile" area="0">
|
||||
<sub_tile name="fpga_input" capacity="4">
|
||||
<equivalent_sites>
|
||||
|
@ -89,6 +117,14 @@
|
|||
<!--Fill with 'clb'-->
|
||||
<fill type="clb" priority="10"/>
|
||||
</fixed_layout>
|
||||
<fixed_layout name="3x3" width="5" height="5">
|
||||
<!--Perimeter of 'io' blocks with 'EMPTY' blocks at corners-->
|
||||
<perimeter type="hybrid_io_tile" priority="100"/>
|
||||
<single type="hybrid_io_tile_center" x="2" y="2" priority="100"/>
|
||||
<corners type="EMPTY" priority="101"/>
|
||||
<!--Fill with 'clb'-->
|
||||
<fill type="clb" priority="10"/>
|
||||
</fixed_layout>
|
||||
</layout>
|
||||
<device>
|
||||
<sizing R_minW_nmos="8926" R_minW_pmos="16067"/>
|
||||
|
|
Loading…
Reference in New Issue