Skip to content

Commit

Permalink
Merge branch 'main' into uma/rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
puma314 committed Apr 24, 2024
2 parents 0825594 + 97d4ae2 commit f482fb2
Show file tree
Hide file tree
Showing 174 changed files with 13,006 additions and 2,560 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ benchmark.csv
.env

# Build Artifacts
recursion/groth16-ffi/build
recursion/gnark-ffi/build
prover/build
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
// "tests/sha-compress/Cargo.toml",
// "tests/sha-extend/Cargo.toml",
// "tests/sha2/Cargo.toml",
// "tests/verify-proof/Cargo.toml",
// // Eval.
// "eval/Cargo.toml"
],
Expand Down
16 changes: 13 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = [
"recursion/circuit",
"recursion/compiler",
"recursion/core",
"recursion/groth16-ffi",
"recursion/gnark-ffi",
"recursion/program",
"sdk",
"zkvm/*",
Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ tempfile = "3.9.0"
tracing = "0.1.40"
tracing-forest = { version = "0.1.6", features = ["ansi", "smallvec"] }
tracing-subscriber = { version = "0.3.17", features = ["std", "env-filter"] }
strum_macros = "0.26.2"
strum = "0.26.2"
strum_macros = "0.26"
strum = "0.26"
web-time = "1.1.0"
rayon-scan = "0.1.1"

Expand Down
4 changes: 2 additions & 2 deletions core/benches/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use sp1_core::io::SP1Stdin;
use sp1_core::runtime::{Program, Runtime};
use sp1_core::utils::{run_and_prove, BabyBearPoseidon2};

Expand All @@ -21,8 +22,7 @@ pub fn criterion_benchmark(c: &mut Criterion) {
b.iter(|| {
run_and_prove(
black_box(program.clone()),
#[allow(deprecated)]
&[],
&SP1Stdin::new(),
BabyBearPoseidon2::new(),
)
})
Expand Down
Loading

0 comments on commit f482fb2

Please sign in to comment.