Skip to content

Commit

Permalink
Merge pull request #2126 from ThalesSiliconSecurity/ci-synth-less-res…
Browse files Browse the repository at this point in the history
…trictive

ci: widens the window of expected gate count
  • Loading branch information
JeanRochCoulon authored Aug 16, 2023
2 parents 26f1bcd + 045f6b9 commit e4e595c
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) >= 100:
if abs(diff) >= 300:
result_metric.fail()
else:
raise Exception("unexpected target: {target}")
Expand Down

0 comments on commit e4e595c

Please sign in to comment.