Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Aardvark Design Sweep
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mikael Henriksson
Aardvark Design Sweep
Commits
92a37bb7
Commit
92a37bb7
authored
2 years ago
by
Mikael Henriksson
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
place-and-route.tcl
+6
-4
6 additions, 4 deletions
place-and-route.tcl
with
6 additions
and
4 deletions
place-and-route.tcl
+
6
−
4
View file @
92a37bb7
...
@@ -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
#
#
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment