Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OpenLane for SwiSH
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Artem Ageev
OpenLane for SwiSH
Commits
6c80fdbc
Unverified
Commit
6c80fdbc
authored
1 year ago
by
Kareem Farid
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Fixed Step Increment Order in Global Placement (#2072)
+ Also indicate in the logs if `skip_io` was passed to global placement.
parent
d6734ca8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/tcl_commands/placement.tcl
+5
-3
5 additions, 3 deletions
scripts/tcl_commands/placement.tcl
with
5 additions
and
3 deletions
scripts/tcl_commands/placement.tcl
+
5
−
3
View file @
6c80fdbc
...
...
@@ -25,17 +25,19 @@ proc global_placement_or {args} {
set_if_unset arg_values
(
-log
)
$::env
(
placement_logs
)
/global.log
set_if_unset arg_values
(
-outdir
)
$::env
(
placement_tmpfiles
)
increment_index
TIMER::timer_start
set log
[
index_file $arg_values
(
-log
)]
puts_info
"Running Global Placement (log:
[
relpath . $log
]
)..."
# random initial placement
if
{
$::env
(
PL_RANDOM_INITIAL_PLACEMENT
)
}
{
random_global_placement
set ::env
(
PL_SKIP_INITIAL_PLACEMENT
)
1
}
increment_index
TIMER::timer_start
if
{
[
info exists flags_map
(
-skip_io
)]
}
{
set ::env
(
__PL_SKIP_IO
)
1
puts_info
"Running Global Placement (skip_io) (log:
[
relpath . $log
]
)..."
}
else
{
puts_info
"Running Global Placement (log:
[
relpath . $log
]
)..."
}
run_openroad_script $::env
(
SCRIPTS_DIR
)
/openroad/gpl.tcl
\
...
...
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