Skip to content

Commit cdc2a44

Browse files
committed
update aes and cts scripts for disabling eqy check
Signed-off-by: luarss <[email protected]>
1 parent bf24c34 commit cdc2a44

File tree

3 files changed

+14
-30
lines changed

3 files changed

+14
-30
lines changed

flow/designs/asap7/aes-block/autotuner.json

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"CORE_UTILIZATION": {
1212
"type": "int",
1313
"minmax": [
14-
30,
15-
100
14+
0,
15+
20
1616
],
1717
"step": 1
1818
},
@@ -64,14 +64,6 @@
6464
],
6565
"step": 0
6666
},
67-
"_PINS_DISTANCE": {
68-
"type": "int",
69-
"minmax": [
70-
1,
71-
4
72-
],
73-
"step": 1
74-
},
7567
"CTS_CLUSTER_SIZE": {
7668
"type": "int",
7769
"minmax": [

flow/designs/asap7/aes/autotuner.json

Lines changed: 10 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
{
2+
"EQUIVALENCE_CHECK": {
3+
"type": "int",
4+
"minmax": [
5+
0,
6+
0
7+
],
8+
"step": 1
9+
},
210
"_SDC_FILE_PATH": "constraint.sdc",
311
"_SDC_CLK_PERIOD": {
412
"type": "float",
@@ -12,7 +20,7 @@
1220
"type": "int",
1321
"minmax": [
1422
30,
15-
100
23+
40
1624
],
1725
"step": 1
1826
},
@@ -56,23 +64,7 @@
5664
],
5765
"step": 0
5866
},
59-
"PLACE_DENSITY_LB_ADDON": {
60-
"type": "float",
61-
"minmax": [
62-
0.0,
63-
0.99
64-
],
65-
"step": 0
66-
},
67-
"_PINS_DISTANCE": {
68-
"type": "int",
69-
"minmax": [
70-
1,
71-
4
72-
],
73-
"step": 1
74-
},
75-
"CTS_CLUSTER_SIZE": {
67+
"CTS_CLUSTER_SIZE": {
7668
"type": "int",
7769
"minmax": [
7870
10,

flow/scripts/cts.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ append_env_var additional_args TNS_END_PERCENT -repair_tns 1
7878
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

81-
if { [info exists ::env(EQUIVALENCE_CHECK)] } {
81+
if {[info exists ::env(EQUIVALENCE_CHECK)] && $::env(EQUIVALENCE_CHECK) == 1} {
8282
write_eqy_verilog 4_before_rsz.v
8383
}
8484

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

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

0 commit comments

Comments
 (0)