Skip to content

Commit 70cec21

Browse files
committed
stable gcd sky130hd params
Signed-off-by: luarss <[email protected]>
1 parent 4115450 commit 70cec21

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

flow/designs/sky130hd/gcd/autotuner.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"type": "int",
1313
"minmax": [
1414
5,
15-
100
15+
60
1616
],
1717
"step": 1
1818
},
@@ -52,7 +52,7 @@
5252
"type": "float",
5353
"minmax": [
5454
0.1,
55-
0.7
55+
0.3
5656
],
5757
"step": 0
5858
},

flow/scripts/cts.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,14 @@ append_env_var additional_args SKIP_PIN_SWAP -skip_pin_swap 0
7979
append_env_var additional_args SKIP_GATE_CLONING -skip_gate_cloning 0
8080

8181
if {[info exists ::env(SKIP_CTS_REPAIR_TIMING)] == 0 || $::env(SKIP_CTS_REPAIR_TIMING) == 0} {
82-
if { [info exists ::env(EQUIVALENCE_CHECK)] } {
82+
if {[info exists ::env(EQUIVALENCE_CHECK)] && $::env(EQUIVALENCE_CHECK) == 1} {
8383
write_eqy_verilog 4_before_rsz.v
8484
}
8585

8686
puts "repair_timing [join $additional_args " "]"
8787
repair_timing {*}$additional_args
8888

89-
if { [info exists ::env(EQUIVALENCE_CHECK)] } {
89+
if {[info exists ::env(EQUIVALENCE_CHECK)] && $::env(EQUIVALENCE_CHECK) == 1} {
9090
run_equivalence_test
9191
}
9292

tools/AutoTuner/src/autotuner/distributed.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,7 @@ def openroad(base_dir, parameters, flow_variant, path=''):
487487
make_command += f'make -C {base_dir}/flow DESIGN_CONFIG=designs/'
488488
make_command += f'{args.platform}/{args.design}/config.mk'
489489
make_command += f' FLOW_VARIANT={flow_variant} {parameters}'
490+
make_command += f' EQUIVALENCE_CHECK=0'
490491
make_command += f' NPROC={args.openroad_threads} SHELL=bash'
491492
run_command(make_command,
492493
timeout=args.timeout,

0 commit comments

Comments
 (0)