Update area + widen valitidy window (#1524)

Widen area validity window to ±500 gates
This commit is contained in:
Côme 2023-10-11 08:13:22 +02:00 committed by GitHub
parent 589c3f1e6a
commit 483b498486
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1,2 +1,2 @@
cv32a6_embedded:
gates: 128552
gates: 129232

View file

@ -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}")