Superseded by #24137: raise AVM check-circuit timeout#23662
Closed
AztecBot wants to merge 2 commits into
Closed
Conversation
b6a8894 to
e0f791e
Compare
AztecBot
added a commit
that referenced
this pull request
Jun 1, 2026
The avm-check-circuit job runs bb-avm avm_check_circuit on every dumped e2e AVM input in parallel, each wrapped in a 30s timeout (exec_test's timeout -v $TIMEOUT). The runner uses --halt now,fail=1, so a single timeout fails the whole job. The e2e_multiple_blobs tx produces a ~700k-row AVM trace. On the default 2 CPUs, trace generation (~22s) plus the row check exceeded 30s and the check was killed with exit 124 (CI run 26755632012); every other input passed in 3-6s. Raise the per-check timeout to a 120s default and make it overridable via AVM_CHECK_CIRCUIT_TIMEOUT, so the heaviest inputs complete with margin while the common case still finishes quickly. CPU allocation stays at the default 2 (the runner core count is tuned so the parallel job count saturates it at 2 CPUs each); only wall-clock budget was the constraint. Supersedes the stale draft branch for #23662 (rebased onto current next).
380065d to
ffebd3a
Compare
ffebd3a to
24f9452
Compare
24f9452 to
0713a8d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Superseded by #24137, which carries the same AVM check-circuit timeout fix rebased onto current
nextand includes the standard CI labels.