Skip to content

Commit

Permalink
feat(ssa): Hoist add and mul binary ops using known induction variabl…
Browse files Browse the repository at this point in the history
…es (noir-lang/noir#6910)

chore: fix warning (noir-lang/noir#6927)
chore(ci): Memory reports for execution (noir-lang/noir#6907)
chore: use ssa parser in flattening pass tests (noir-lang/noir#6868)
feat(LSP): suggest trait methods from where clauses (noir-lang/noir#6915)
feat: warn on trait method visibility (noir-lang/noir#6923)
feat!: Switch to using `jsonrpsee` for foreign calls; refactor `run_test`; foreign call layering (noir-lang/noir#6849)
chore: add rollup circuits to memory reports (noir-lang/noir#6897)
chore: remove unused dependency (noir-lang/noir#6922)
chore: add if/loop tip (separate from no-predicate #5657) (noir-lang/noir#6806)
chore: move implementation of print foreign call into `nargo` (noir-lang/noir#6865)
chore: document format strings (noir-lang/noir#6920)
  • Loading branch information
AztecBot committed Jan 3, 2025
2 parents d77d0b0 + a794838 commit 82cadd6
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .noir-sync-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ebc4d2cf2b91658a10393733407f33d50a0faaf1
ebc4d2cf2b91658a10393733407f33d50a0faaf1
22 changes: 22 additions & 0 deletions noir/noir-repo/.github/workflows/reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,28 @@ jobs:
mv /home/runner/work/noir/noir/scripts/test_programs/execution_report.sh ./execution_report.sh
./execution_report.sh 1 1
- name: Generate compilation report with averages
working-directory: ./test-repo/${{ matrix.project.path }}
if: ${{ matrix.project.take_average }}
run: |
mv /home/runner/work/noir/noir/scripts/test_programs/compilation_report.sh ./compilation_report.sh
chmod +x ./compilation_report.sh
./compilation_report.sh 1 1
- name: Generate execution report without averages
working-directory: ./test-repo/${{ matrix.project.path }}
if: ${{ !matrix.project.is_library && !matrix.project.take_average }}
run: |
mv /home/runner/work/noir/noir/scripts/test_programs/execution_report.sh ./execution_report.sh
./execution_report.sh 1
- name: Generate execution report with averages
working-directory: ./test-repo/${{ matrix.project.path }}
if: ${{ !matrix.project.is_library && matrix.project.take_average }}
run: |
mv /home/runner/work/noir/noir/scripts/test_programs/execution_report.sh ./execution_report.sh
./execution_report.sh 1 1
- name: Move compilation report
id: compilation_report
shell: bash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,4 @@ More complex expressions are not allowed inside `{...}`:

```rust
let s = f"Two plus two is: {2 + 2}" // Error: invalid format string
```
```

0 comments on commit 82cadd6

Please sign in to comment.