2020-01-30 22:39:44 -06:00
|
|
|
# Run VPR for the s298 design
|
2020-01-31 17:39:40 -06:00
|
|
|
vpr ./test_vpr_arch/k6_frac_N10_40nm.xml ./test_blif/s298.blif --write_rr_graph example_rr_graph.xml
|
2020-01-30 22:39:44 -06:00
|
|
|
|
|
|
|
# Read OpenFPGA architecture definition
|
|
|
|
read_openfpga_arch -f ./test_openfpga_arch/k6_frac_N10_40nm_openfpga.xml
|
|
|
|
|
|
|
|
# Annotate the OpenFPGA architecture to VPR data base
|
|
|
|
link_openfpga_arch
|
|
|
|
|
|
|
|
# Check and correct any naming conflicts in the BLIF netlist
|
|
|
|
check_netlist_naming_conflict --fix --report ./netlist_renaming.xml
|
|
|
|
|
2020-02-05 22:50:52 -06:00
|
|
|
# Apply fix-up to clustering nets based on routing results
|
2020-02-12 16:49:47 -06:00
|
|
|
pb_pin_fixup #--verbose
|
2020-02-05 22:50:52 -06:00
|
|
|
|
2020-02-06 18:14:29 -06:00
|
|
|
# Apply fix-up to Look-Up Table truth tables based on packing results
|
2020-02-12 16:49:47 -06:00
|
|
|
lut_truth_table_fixup #--verbose
|
2020-02-06 18:14:29 -06:00
|
|
|
|
2020-02-12 16:49:47 -06:00
|
|
|
# Build the module graph
|
|
|
|
# - Enabled compression on routing architecture modules
|
|
|
|
# - Enable pin duplication on grid modules
|
|
|
|
build_fabric --compress_routing --duplicate_grid_pin --verbose
|
2020-02-11 18:40:37 -06:00
|
|
|
|
2020-01-30 22:39:44 -06:00
|
|
|
# Finish and exit OpenFPGA
|
|
|
|
exit
|