Skip to content

Commit

Permalink
widen area validity window to ±500 gates
Browse files Browse the repository at this point in the history
  • Loading branch information
cathales committed Oct 10, 2023
1 parent e04dbfe commit 69af78f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .gitlab-ci/scripts/report_synth.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
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}")
Expand Down

0 comments on commit 69af78f

Please sign in to comment.