Skip to content

Commit edc6292

Browse files
committedAug 25, 2024··
Merge branch 'aviad/blake2s_cpu' of github.com:ingonyama-zk/icicle into aviad/blake2s_cpu
2 parents 7dcfe60 + 8d79cb7 commit edc6292

File tree

105 files changed

+1962
-1293
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+1962
-1293
lines changed
 

‎.github/workflows/v3.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
- name: Run C++ curve Tests
9090
working-directory: ./icicle_v3/build/tests
9191
if: needs.check-changed-files.outputs.cpp_cuda == 'true'
92-
run: ctest --verbose
92+
run: ctest
9393

9494
test-linux-field:
9595
name: Test on Linux
@@ -123,4 +123,4 @@ jobs:
123123
- name: Run C++ field Tests
124124
working-directory: ./icicle_v3/build/tests
125125
if: needs.check-changed-files.outputs.cpp_cuda == 'true'
126-
run: ctest --verbose
126+
run: ctest

‎.github/workflows/v3_rust.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
if: needs.check-changed-files.outputs.rust == 'true' || needs.check-changed-files.outputs.cpp_cuda == 'true'
7777
# tests are split to phases since NTT domain is global but tests have conflicting requirements
7878
run: |
79-
cargo build --release --verbose --features=g2,ec_ntt
80-
cargo test --workspace --release --verbose --features=g2,ec_ntt,cuda_backend -- --skip phase
81-
cargo test phase2 --workspace --release --verbose --features=g2,ec_ntt,cuda_backend
82-
cargo test phase3 --workspace --release --verbose --features=g2,ec_ntt,cuda_backend
79+
cargo build --workspace --release --features=cuda_backend
80+
cargo test --workspace --release --verbose --features=cuda_backend -- --skip phase
81+
cargo test phase2 --workspace --release --features=cuda_backend
82+
cargo test phase3 --workspace --release --features=cuda_backend

0 commit comments

Comments
 (0)
Please sign in to comment.