Skip to content
Snippets Groups Projects
Commit 92a37bb7 authored by Mikael Henriksson's avatar Mikael Henriksson
Browse files

place-and-route.tcl: force routing in parent process (do not run router in separate process)

parent 5a4caea4
No related branches found
No related tags found
No related merge requests found
...@@ -3,15 +3,16 @@ ...@@ -3,15 +3,16 @@
# Author: Mikael Henriksson and Olle Hansson (2022) # Author: Mikael Henriksson and Olle Hansson (2022)
# #
set DESIGN_NAME "cd_top" set DESIGN_NAME "cd_top_reg"
set MW_LIBRARY_NAME "${DESIGN_NAME}-lib" set MW_LIBRARY_NAME "${DESIGN_NAME}-lib"
set VERILOG_NETLIST [list "${DESIGN_NAME}-post-synth.v"] set VERILOG_NETLIST [list "${DESIGN_NAME}-post-synth.v"]
set SDC_CONSTRAINT [list "${DESIGN_NAME}-post-synth.sdc"] set SDC_CONSTRAINT [list "${DESIGN_NAME}-post-synth.sdc"]
# #
# Maximum number of allowed cores during place-and-route # Maximum number of allowed cores during place-and-route. Linköping University (ISY) has a license limit of 16 cores
# per place-and-route operation (as of Nov. 2022).
# #
set_host_options -max_cores 20 set_host_options -max_cores 16
# #
# From the user manual 'Foundation_Synopsys_BE_TechnoKit_cmos028FDSOI_6U1x_2U2x_2T8x_LB_um.pdf': # From the user manual 'Foundation_Synopsys_BE_TechnoKit_cmos028FDSOI_6U1x_2U2x_2T8x_LB_um.pdf':
...@@ -47,7 +48,7 @@ read_sdc "$SDC_CONSTRAINT" ...@@ -47,7 +48,7 @@ read_sdc "$SDC_CONSTRAINT"
# icc_shell> man create_floorplan # icc_shell> man create_floorplan
# icc_shell> man create_rectilinear_rings # icc_shell> man create_rectilinear_rings
# #
create_floorplan -control_type aspect_ratio -core_utilization 0.8 create_floorplan -control_type aspect_ratio -core_utilization 0.5
# #
# Place the cells within the floorplan. If placement fails # Place the cells within the floorplan. If placement fails
...@@ -60,6 +61,7 @@ place_opt -effort high ...@@ -60,6 +61,7 @@ place_opt -effort high
# Route all wires between the . # Route all wires between the .
# icc_shell> man route_opt # icc_shell> man route_opt
# #
set_separate_process_option -routing false
route_opt -effort high route_opt -effort high
# #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment