-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[1 changes] fix(performance): Remove redundant slice access check fro…
…m brillig (noir-lang/noir#7434) chore(docs): updating tutorials and other nits to beta.2 (noir-lang/noir#7405) feat: LSP hover for integer literals (noir-lang/noir#7368) feat(experimental): Compile match expressions (noir-lang/noir#7312) feat(acir_field): Add little-endian byte serialization for FieldElement (noir-lang/noir#7258) feat: allow unquoting TraitConstraint in trait impl position (noir-lang/noir#7395) feat(brillig): Hoist shared constants across functions to the global space (noir-lang/noir#7216) feat(LSP): auto-import via visible reexport (noir-lang/noir#7409) fix(brillig): Brillig entry point analysis and function specialization through duplication (noir-lang/noir#7277) chore: redo typo PR by maximevtush (noir-lang/noir#7425) fix(ssa): Accurately mark binary ops for hoisting and check Div/Mod against induction variable lower bound (noir-lang/noir#7396) feat!: remove bigint from stdlib (noir-lang/noir#7411) chore: bump aztec-packages commit (noir-lang/noir#7415) chore: deprecate `merkle` module of stdlib (noir-lang/noir#7413) chore(ci): lock aztec-packages commit in CI (noir-lang/noir#7414) feat: while statement (noir-lang/noir#7280)
- Loading branch information
Showing
438 changed files
with
24,715 additions
and
5,655 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
130d99125a09110a3ee3e877d88d83b5aa37f369 | ||
49a095ded5cd33795bcdac60cbd98ce7c5ab9198 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Download Nargo | ||
description: Downloads the nargo binary from an artifact and adds it to the path | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Download nargo binary | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: nargo | ||
path: ./nargo | ||
|
||
- name: Set nargo on PATH | ||
shell: bash | ||
run: | | ||
nargo_binary="${{ github.workspace }}/nargo/nargo" | ||
chmod +x $nargo_binary | ||
echo "$(dirname $nargo_binary)" >> $GITHUB_PATH |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
define: &AZ_COMMIT 6c0b83d4b73408f87acfa080d52a81c411e47336 | ||
projects: | ||
private-kernel-inner: | ||
repo: AztecProtocol/aztec-packages | ||
ref: *AZ_COMMIT | ||
path: noir-projects/noir-protocol-circuits/crates/private-kernel-inner | ||
num_runs: 5 | ||
compilation-timeout: 2.5 | ||
execution-timeout: 0.08 | ||
compilation-memory-limit: 300 | ||
execution-memory-limit: 250 | ||
private-kernel-tail: | ||
repo: AztecProtocol/aztec-packages | ||
ref: *AZ_COMMIT | ||
path: noir-projects/noir-protocol-circuits/crates/private-kernel-tail | ||
num_runs: 5 | ||
timeout: 4 | ||
compilation-timeout: 1.2 | ||
execution-timeout: 0.02 | ||
compilation-memory-limit: 250 | ||
execution-memory-limit: 200 | ||
private-kernel-reset: | ||
repo: AztecProtocol/aztec-packages | ||
ref: *AZ_COMMIT | ||
path: noir-projects/noir-protocol-circuits/crates/private-kernel-reset | ||
num_runs: 5 | ||
timeout: 250 | ||
compilation-timeout: 8 | ||
execution-timeout: 0.35 | ||
compilation-memory-limit: 750 | ||
execution-memory-limit: 300 | ||
rollup-base-private: | ||
repo: AztecProtocol/aztec-packages | ||
ref: *AZ_COMMIT | ||
path: noir-projects/noir-protocol-circuits/crates/rollup-base-private | ||
num_runs: 5 | ||
timeout: 15 | ||
compilation-timeout: 10 | ||
execution-timeout: 0.5 | ||
compilation-memory-limit: 1100 | ||
execution-memory-limit: 500 | ||
rollup-base-public: | ||
repo: AztecProtocol/aztec-packages | ||
ref: *AZ_COMMIT | ||
path: noir-projects/noir-protocol-circuits/crates/rollup-base-public | ||
num_runs: 5 | ||
timeout: 15 | ||
compilation-timeout: 8 | ||
execution-timeout: 0.4 | ||
compilation-memory-limit: 1000 | ||
execution-memory-limit: 500 | ||
rollup-block-root-empty: | ||
repo: AztecProtocol/aztec-packages | ||
ref: *AZ_COMMIT | ||
path: noir-projects/noir-protocol-circuits/crates/rollup-block-root-empty | ||
cannot_execute: true | ||
num_runs: 5 | ||
timeout: 60 | ||
compilation-timeout: 1.5 | ||
compilation-memory-limit: 400 | ||
rollup-block-root-single-tx: | ||
repo: AztecProtocol/aztec-packages | ||
ref: *AZ_COMMIT | ||
path: noir-projects/noir-protocol-circuits/crates/rollup-block-root-single-tx | ||
cannot_execute: true | ||
num_runs: 1 | ||
timeout: 60 | ||
compilation-timeout: 100 | ||
compilation-memory-limit: 7000 | ||
rollup-block-root: | ||
repo: AztecProtocol/aztec-packages | ||
ref: *AZ_COMMIT | ||
path: noir-projects/noir-protocol-circuits/crates/rollup-block-root | ||
num_runs: 1 | ||
timeout: 60 | ||
compilation-timeout: 100 | ||
execution-timeout: 40 | ||
compilation-memory-limit: 7000 | ||
execution-memory-limit: 1500 | ||
rollup-merge: | ||
repo: AztecProtocol/aztec-packages | ||
ref: *AZ_COMMIT | ||
path: noir-projects/noir-protocol-circuits/crates/rollup-merge | ||
num_runs: 5 | ||
timeout: 300 | ||
compilation-timeout: 1.5 | ||
execution-timeout: 0.01 | ||
compilation-memory-limit: 400 | ||
execution-memory-limit: 400 | ||
rollup-root: | ||
repo: AztecProtocol/aztec-packages | ||
ref: *AZ_COMMIT | ||
path: noir-projects/noir-protocol-circuits/crates/rollup-root | ||
num_runs: 5 | ||
timeout: 300 | ||
compilation-timeout: 2 | ||
execution-timeout: 0.6 | ||
compilation-memory-limit: 450 | ||
execution-memory-limit: 400 |
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains 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
Oops, something went wrong.