Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[wip] Sync halo2 lib 0.4.0 #80

Merged
merged 31 commits into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
7bedb67
feat: call synthesize in `MockProver` multiple times to behave same a…
han0110 Jan 19, 2023
4c12249
modify previous commit
Velaciela Oct 8, 2023
323f403
Expose mod `permutation` and re-export `permutation::keygen::Assembly…
han0110 Feb 22, 2023
233dbc6
change: Migrate workspace to pasta_curves-0.5 (#157)
CPerezz Mar 7, 2023
6adc633
fix previous commit
Velaciela Oct 9, 2023
b26a0ae
Extend Circuit trait to take parameters in config (#168)
ed255 Apr 20, 2023
e577808
Allow halo2 constraint names to have non static names (#156)
CeciliaZ030 Apr 20, 2023
b05bc4d
Improve halo2 query calls (#154)
CeciliaZ030 Apr 26, 2023
dd22b61
Implement Clone trait for Hash, Absorbing, and Sponge structs (#171)
enricobottazzi Apr 27, 2023
e56d03f
fix: Fix serialization for VerifyingKey (#178)
CPerezz May 3, 2023
828b21a
Add more getters to expose internal fields
ed255 May 10, 2023
f88dc85
add a constructor (#164)
Ethan-000 May 18, 2023
b2450cd
feat: send sync region (#180)
alexander-camuto Jun 1, 2023
57831cc
fix previous commit
Velaciela Oct 9, 2023
7a80259
Fix `parallelize` workload imbalance (#186)
mratsim Jun 19, 2023
d171a04
Updates halo2_curves dependency to released package (#190)
huitseeker Jul 30, 2023
669a670
fix: explicitly define mds diff type (#196)
alexander-camuto Aug 26, 2023
d19480a
feat: expose `transcript_repr` of `VerifyingKey` and reduce the trait…
han0110 Sep 4, 2023
fe426ae
implement native shuffle argument and api
kilic May 21, 2023
b590427
feat: public cells to allow for implementations of custom `Layouter` …
alexander-camuto Aug 25, 2023
657f98b
Synchronize with upstream (#199)
han0110 Sep 6, 2023
bf08bb4
chore: Update rust-toolchain to 1.66 for testing (#208)
CPerezz Sep 18, 2023
f47c31d
fix: clippy (#203)
thor314 Sep 18, 2023
75be70d
Implement Sum and Product for Expression (#209)
pnyda Sep 27, 2023
6f40fa9
chore: update poseidon dependency
zhenfeizhang Oct 16, 2023
e5acb7d
fix: compiling bug with feautes=parallel_syn
zhenfeizhang Oct 16, 2023
2b92df9
feat(MockProver): replace errors by asserts(privacy-scaling-explorati…
Velaciela Oct 25, 2023
3d44389
boundary offset lost when resolving conflict
Velaciela Oct 25, 2023
5178dc4
disable multiphase prover
zhenfeizhang Dec 19, 2023
b837de6
Sync halo2 lib 0.4.0 merging (#81)
lispc Jan 9, 2024
109522e
Merge branch 'v1.1' into sync-halo2-lib-0.4.0
kunxian-xia Jan 12, 2024
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
79 changes: 75 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
name: CI checks

on: [pull_request, push]
on:
merge_group:
pull_request:
push:
branches:
- main

jobs:
test:
name: Test on ${{ matrix.os }}
name: Test on ${{ matrix.os }} with ${{ matrix.feature_set }} features
runs-on: ${{ matrix.os }}
strategy:
matrix:
feature_set: [basic, all]
os: [ubuntu-latest, windows-latest, macOS-latest]
include:
- feature_set: basic
features: batch,dev-graph,gadget-traces
- feature_set: all
features: batch,dev-graph,gadget-traces,multicore,test-dev-graph,thread-safe-region,sanity-checks,circuit-params

steps:
- uses: actions/checkout@v3
Expand All @@ -19,8 +30,67 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --release --all --all-features
if: ${{ false }}
args: --verbose --release --workspace --no-default-features --features "${{ matrix.features }}"

build:
name: Build target ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
matrix:
target:
- wasm32-unknown-unknown
- wasm32-wasi

steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
override: false
- name: Add target
run: rustup target add ${{ matrix.target }}
- name: cargo build
uses: actions-rs/cargo@v1
with:
command: build
args: --no-default-features --features batch,dev-graph,gadget-traces --target ${{ matrix.target }}

bitrot:
name: Bitrot check
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
override: false
# Build benchmarks to prevent bitrot
- name: Build benchmarks
uses: actions-rs/cargo@v1
with:
command: build
args: --benches --examples --all-features

doc-links:
name: Intra-doc links
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
override: false
- name: cargo fetch
uses: actions-rs/cargo@v1
with:
command: fetch

# Ensure intra-documentation links all resolve correctly
# Requires #![deny(intra_doc_link_resolution_failure)] in crates.
- name: Check intra-doc links
uses: actions-rs/cargo@v1
with:
command: doc
args: --all --document-private-items

fmt:
name: Rustfmt
Expand All @@ -36,3 +106,4 @@ jobs:
with:
command: fmt
args: --all -- --check

106 changes: 0 additions & 106 deletions .github/workflows/ci_main.yml

This file was deleted.

Loading
Loading