Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/benchmark_projects.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
define: &AZ_COMMIT 4fede8303a84cc32c3bf58f86c01f80a7aef228b
define: &AZ_COMMIT 950a441ebe4820807c50fef11be4fa793086baf2
projects:
private-kernel-inner:
repo: AztecProtocol/aztec-packages
Expand Down Expand Up @@ -47,8 +47,8 @@ projects:
timeout: 15
compilation-timeout: 20
execution-timeout: 0.75
compilation-memory-limit: 1500
execution-memory-limit: 550
compilation-memory-limit: 1700
execution-memory-limit: 600
rollup-block-root-empty:
repo: AztecProtocol/aztec-packages
ref: *AZ_COMMIT
Expand All @@ -57,7 +57,7 @@ projects:
num_runs: 5
timeout: 60
compilation-timeout: 2
compilation-memory-limit: 410
compilation-memory-limit: 450
rollup-block-root-single-tx:
repo: AztecProtocol/aztec-packages
ref: *AZ_COMMIT
Expand Down Expand Up @@ -85,7 +85,7 @@ projects:
timeout: 300
compilation-timeout: 1.5
execution-timeout: 0.01
compilation-memory-limit: 400
compilation-memory-limit: 450
execution-memory-limit: 400
rollup-root:
repo: AztecProtocol/aztec-packages
Expand All @@ -95,8 +95,8 @@ projects:
timeout: 300
compilation-timeout: 2
execution-timeout: 0.6
compilation-memory-limit: 450
execution-memory-limit: 400
compilation-memory-limit: 500
execution-memory-limit: 450
semaphore-depth-10:
repo: noir-lang/noir
path: test_programs/benchmarks/semaphore_depth_10
Expand Down
2 changes: 1 addition & 1 deletion EXTERNAL_NOIR_LIBRARIES.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
define: &AZ_COMMIT 4fede8303a84cc32c3bf58f86c01f80a7aef228b
define: &AZ_COMMIT 950a441ebe4820807c50fef11be4fa793086baf2
libraries:
noir_check_shuffle:
repo: noir-lang/noir_check_shuffle
Expand Down
4 changes: 3 additions & 1 deletion scripts/bump-aztec-packages-commit.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/bin/bash

AZTEC_COMMIT=$(git ls-remote https://github.com/AztecProtocol/aztec-packages.git HEAD | grep -oE '^\b[0-9a-f]{40}\b')
AZTEC_REPO="https://github.com/AztecProtocol/aztec-packages.git"
AZTEC_BRANCH="next"
AZTEC_COMMIT=$(git ls-remote $AZTEC_REPO $AZTEC_BRANCH | grep -oE '^\b[0-9a-f]{40}\b')

function bump_commit() {
FILE=$1
Expand Down
Loading