Hot fix
This commit is contained in:
parent
633a12ee08
commit
7c3ab38410
|
@ -60,3 +60,20 @@ vpr_fpga_verilog_print_sdc_pnr=
|
||||||
vpr_fpga_verilog_print_sdc_analysis=
|
vpr_fpga_verilog_print_sdc_analysis=
|
||||||
vpr_fpga_x2p_compact_routing_hierarchy=
|
vpr_fpga_x2p_compact_routing_hierarchy=
|
||||||
end_flow_with_test=
|
end_flow_with_test=
|
||||||
|
|
||||||
|
|
||||||
|
[SCRIPT_PARAM_MIN_ROUTE_CHAN_WIDTH_EXPLICIT_MAPPING_COMPACT]
|
||||||
|
fix_route_chan_width=300
|
||||||
|
vpr_fpga_verilog_include_icarus_simulator=
|
||||||
|
vpr_fpga_verilog_formal_verification_top_netlist=
|
||||||
|
vpr_fpga_verilog_include_timing=
|
||||||
|
vpr_fpga_verilog_include_signal_init=
|
||||||
|
vpr_fpga_verilog_print_autocheck_top_testbench=
|
||||||
|
vpr_fpga_bitstream_generator=
|
||||||
|
vpr_fpga_verilog_print_user_defined_template=
|
||||||
|
vpr_fpga_verilog_print_report_timing_tcl=
|
||||||
|
vpr_fpga_verilog_print_sdc_pnr=
|
||||||
|
vpr_fpga_verilog_print_sdc_analysis=
|
||||||
|
vpr_fpga_x2p_compact_routing_hierarchy=
|
||||||
|
vpr_fpga_verilog_explicit_mapping=
|
||||||
|
end_flow_with_test=
|
||||||
|
|
|
@ -1319,20 +1319,15 @@ void dump_compact_verilog_top_netlist(t_sram_orgz_info* cur_sram_orgz_info,
|
||||||
|
|
||||||
/* Quote Routing structures: Channels */
|
/* Quote Routing structures: Channels */
|
||||||
if (TRUE == compact_routing_hierarchy ) {
|
if (TRUE == compact_routing_hierarchy ) {
|
||||||
fprintf(fp, "//TEST1\n");
|
|
||||||
dump_compact_verilog_defined_channels(fp, is_explicit_mapping);
|
dump_compact_verilog_defined_channels(fp, is_explicit_mapping);
|
||||||
} else {
|
} else {
|
||||||
fprintf(fp, "//TEST2\n");
|
|
||||||
dump_compact_verilog_defined_channels(fp, is_explicit_mapping);
|
|
||||||
dump_verilog_defined_channels(fp, LL_num_rr_nodes, LL_rr_node, LL_rr_node_indices, is_explicit_mapping);
|
dump_verilog_defined_channels(fp, LL_num_rr_nodes, LL_rr_node, LL_rr_node_indices, is_explicit_mapping);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Quote Routing structures: Switch Boxes */
|
/* Quote Routing structures: Switch Boxes */
|
||||||
if (TRUE == compact_routing_hierarchy ) {
|
if (TRUE == compact_routing_hierarchy ) {
|
||||||
fprintf(fp, "//TEST3\n");
|
|
||||||
dump_compact_verilog_defined_switch_boxes(cur_sram_orgz_info, fp, is_explicit_mapping);
|
dump_compact_verilog_defined_switch_boxes(cur_sram_orgz_info, fp, is_explicit_mapping);
|
||||||
} else {
|
} else {
|
||||||
fprintf(fp, "//TEST4\n");
|
|
||||||
dump_verilog_defined_switch_boxes(cur_sram_orgz_info, fp, is_explicit_mapping); /* BC: Explicit mapping not done because we will erase this in the future*/
|
dump_verilog_defined_switch_boxes(cur_sram_orgz_info, fp, is_explicit_mapping); /* BC: Explicit mapping not done because we will erase this in the future*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue