Skip to content

Commit e6b74de

Browse files
committed
Merge remote-tracking branch 'origin/master' into HEAD
2 parents eca5efe + b8c21d7 commit e6b74de

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

flow/scripts/cts.tcl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if {[info exist ::env(CTS_CLUSTER_DIAMETER)]} {
2121
proc save_progress {stage} {
2222
puts "Run 'make gui_$stage.odb' to load progress snapshot"
2323
write_db $::env(RESULTS_DIR)/$stage.odb
24-
write_sdc $::env(RESULTS_DIR)/$stage.sdc
24+
write_sdc -no_timestamp $::env(RESULTS_DIR)/$stage.sdc
2525
}
2626

2727
set cts_args [list \
@@ -126,7 +126,7 @@ if { [info exists ::env(POST_CTS_TCL)] } {
126126
}
127127

128128
if {[info exists ::env(GALLERY_REPORT)] && $::env(GALLERY_REPORT) != 0} {
129-
write_def $::env(RESULTS_DIR)/4_1_cts.def
129+
write_def $::env(RESULTS_DIR)/4_1_cts.def
130130
}
131131
write_db $::env(RESULTS_DIR)/4_1_cts.odb
132-
write_sdc $::env(RESULTS_DIR)/4_cts.sdc
132+
write_sdc -no_timestamp $::env(RESULTS_DIR)/4_cts.sdc

flow/scripts/floorplan.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ if { [info exists ::env(POST_FLOORPLAN_TCL)] } {
152152
}
153153

154154
if {[info exists ::env(GALLERY_REPORT)] && $::env(GALLERY_REPORT) != 0} {
155-
write_def $::env(RESULTS_DIR)/2_1_floorplan.def
155+
write_def $::env(RESULTS_DIR)/2_1_floorplan.def
156156
}
157157
write_db $::env(RESULTS_DIR)/2_1_floorplan.odb
158-
write_sdc $::env(RESULTS_DIR)/2_floorplan.sdc
158+
write_sdc -no_timestamp $::env(RESULTS_DIR)/2_floorplan.sdc

flow/scripts/write_ref_sdc.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if { [llength $clks] == 0 } {
2525
create_clock -name $clk_name -period $ref_period $sources
2626
# Undo the set_propagated_clock so SDC at beginning of flow uses ideal clocks.
2727
unset_propagated_clock [all_clocks]
28-
write_sdc [file join $env(RESULTS_DIR) "updated_clks.sdc"]
28+
write_sdc -no_timestamp [file join $env(RESULTS_DIR) "updated_clks.sdc"]
2929
# Reset
3030
create_clock -name $clk_name -period $period $sources
3131
set_propagated_clock [all_clocks]

0 commit comments

Comments
 (0)