Skip to content

Commit 7d801e5

Browse files
committed
Merge branch 'master' into secure-yosys0.48
Signed-off-by: Eder Monteiro <[email protected]>
2 parents 71589e0 + b18f57c commit 7d801e5

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

flow/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,7 @@ klayout:
10531053

10541054
.phony: run
10551055
run:
1056-
$(OPENROAD_CMD) -no_splash $(if $(filter %.py,$(RUN_SCRIPT)),-python) $(RUN_SCRIPT)
1056+
($(OPENROAD_CMD) -no_splash $(if $(filter %.py,$(RUN_SCRIPT)),-python) $(RUN_SCRIPT) 2>&1 | tee $(abspath $(LOG_DIR)/run.log))
10571057

10581058
# Utilities
10591059
#-------------------------------------------------------------------------------

flow/designs/nangate45/swerv_wrapper/config.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ export TNS_END_PERCENT = 100
3333

3434
export FASTROUTE_TCL = $(DESIGN_HOME)/$(PLATFORM)/$(DESIGN_NAME)/fastroute.tcl
3535

36+
export GPL_KEEP_OVERFLOW = 0

flow/scripts/global_place.tcl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ if {$::env(GPL_ROUTABILITY_DRIVEN)} {
1717
# Parameters for timing driven mode in global placement
1818
if {$::env(GPL_TIMING_DRIVEN)} {
1919
lappend global_placement_args {-timing_driven}
20+
if {[info exists ::env(GPL_KEEP_OVERFLOW)]} {
21+
lappend global_placement_args -keep_resize_below_overflow $::env(GPL_KEEP_OVERFLOW)
22+
}
2023
}
2124

2225
proc do_placement {global_placement_args} {

0 commit comments

Comments
 (0)