Skip to content

Commit 603dece

Browse files
committed
Turn off EQY by default for autotuner
Signed-off-by: luarss <[email protected]>
1 parent 703240d commit 603dece

File tree

3 files changed

+1
-16
lines changed

3 files changed

+1
-16
lines changed

flow/designs/asap7/aes/autotuner.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
11
{
2-
"EQUIVALENCE_CHECK": {
3-
"type": "int",
4-
"minmax": [
5-
0,
6-
0
7-
],
8-
"step": 1
9-
},
102
"_SDC_FILE_PATH": "constraint.sdc",
113
"_SDC_CLK_PERIOD": {
124
"type": "float",

flow/designs/asap7/jpeg/autotuner.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,6 @@
88
],
99
"step": 0
1010
},
11-
"EQUIVALENCE_CHECK": {
12-
"type": "int",
13-
"minmax": [
14-
0,
15-
0
16-
],
17-
"step": 0
18-
},
1911
"CORE_UTILIZATION": {
2012
"type": "int",
2113
"minmax": [

tools/AutoTuner/src/autotuner/distributed.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -491,6 +491,7 @@ def openroad(base_dir, parameters, flow_variant, path=''):
491491
make_command += f'make -C {base_dir}/flow DESIGN_CONFIG=designs/'
492492
make_command += f'{args.platform}/{args.design}/config.mk'
493493
make_command += f' FLOW_VARIANT={flow_variant} {parameters}'
494+
make_command += f' EQUIVALENCE_CHECK=0'
494495
make_command += f' NPROC={args.openroad_threads} SHELL=bash'
495496
run_command(make_command,
496497
timeout=args.timeout,

0 commit comments

Comments
 (0)