mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-22 05:07:21 -04:00
Update area + widen valitidy window (#1524)
Widen area validity window to ±500 gates
This commit is contained in:
parent
589c3f1e6a
commit
483b498486
2 changed files with 2 additions and 2 deletions
|
@ -1,2 +1,2 @@
|
|||
cv32a6_embedded:
|
||||
gates: 128552
|
||||
gates: 129232
|
||||
|
|
|
@ -65,7 +65,7 @@ if match:
|
|||
target = match.group(1)
|
||||
if target in expected:
|
||||
diff = gates - expected[target]['gates']
|
||||
if abs(diff) >= 300:
|
||||
if abs(diff) >= 500:
|
||||
result_metric.fail()
|
||||
else:
|
||||
raise Exception(f"unexpected target: {target}")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue