Skip to content

Commit 89604c3

Browse files
committed
Merge branch 'master' of https://github.com/The-OpenROAD-Project-private/OpenROAD-flow-scripts into secure-fix-issue-5988
Signed-off-by: Jaehyun Kim <jhkim@precisioninno.com>
2 parents fe587b3 + 75efeff commit 89604c3

6 files changed

Lines changed: 10 additions & 9 deletions

File tree

flow/designs/gf12/ariane/config.mk

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,5 @@ export REMOVE_ABC_BUFFERS = 1
3737

3838
export SWAP_ARITH_OPERATORS = 1
3939
export OPENROAD_HIERARCHICAL = 1
40+
41+
export LEC_CHECK = 0

flow/designs/gf12/tinyRocket/config.mk

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,5 @@ endif
4141

4242
export SWAP_ARITH_OPERATORS = 1
4343
export OPENROAD_HIERARCHICAL = 1
44+
45+
export LEC_CHECK = 0

flow/designs/rapidus2hp/cva6/rules-base.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"compare": ">="
3333
},
3434
"cts__timing__setup__tns": {
35-
"value": -317.0,
35+
"value": -287.0,
3636
"compare": ">="
3737
},
3838
"cts__timing__hold__ws": {
@@ -52,7 +52,7 @@
5252
"compare": ">="
5353
},
5454
"globalroute__timing__setup__tns": {
55-
"value": -526.0,
55+
"value": -680.0,
5656
"compare": ">="
5757
},
5858
"globalroute__timing__hold__ws": {
@@ -68,7 +68,7 @@
6868
"compare": ">="
6969
},
7070
"finish__timing__setup__tns": {
71-
"value": -526.0,
71+
"value": -680.0,
7272
"compare": ">="
7373
},
7474
"finish__timing__hold__ws": {

flow/designs/src/bp_quad/bsg_chip_block.sv2v.v

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241513,7 +241513,8 @@ module bsg_mem_1rw_sync_width_p48_els_p256
241513241513
.wd_in(data_i),
241514241514
.rd_out(data_o),
241515241515
.ce_in(_0_net_),
241516-
.we_in(_1_net_)
241516+
.we_in(_1_net_),
241517+
.w_mask_in(48'b0)
241517241518
);
241518241519

241519241520
assign _1_net_ = ~w_i;

flow/scripts/load.tcl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ source $::env(SCRIPTS_DIR)/util.tcl
33
source $::env(SCRIPTS_DIR)/report_metrics.tcl
44

55
proc load_design { design_file sdc_file } {
6-
# Workaround for flaky STA under mutlithreading starting
7-
# with the rel_3.0 upgrade
8-
sta::set_thread_count 1
9-
106
# Do not reload if design is already loaded
117
set db [ord::get_db]
128
if { [$db getChip] != "NULL" && [[$db getChip] getBlock] != "NULL" } {

flow/util/genElapsedTime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def print_log_dir_times(logdir, args):
4343

4444
# Loop on all log files in the directory
4545
for f in sorted(pathlib.Path(logdir).glob("**/*.log")):
46-
if "eqy_output" in str(f):
46+
if any(x in str(f) for x in ["eqy_output", "rsz_lec_check"]):
4747
continue
4848
# Extract Elapsed Time line from log file
4949
stem = os.path.splitext(os.path.basename(str(f)))[0]

0 commit comments

Comments
 (0)