Skip to content

Commit

Permalink
enable cuda for sp1 & add constants
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas089 committed Dec 9, 2024
1 parent 7f33231 commit 88f7c58
Show file tree
Hide file tree
Showing 10 changed files with 45 additions and 4 deletions.
40 changes: 40 additions & 0 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[workspace]
members = [
"crypto-ops",
"circuits/merkle-proof",
"circuits/merkle-proof-recursive",
"circuits/sp1-merkle-proof",
"circuits/sp1-merkle-proof-recursive",
"trie-utils",
"prover",
]
Expand Down
2 changes: 1 addition & 1 deletion circuits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[workspace]
members = ["merkle-proof", "merkle-proof-recursive"]
members = ["sp1-merkle-proof", "sp1-merkle-proof-recursive"]
Binary file modified circuits/elf/riscv32im-succinct-zkvm-elf
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ sp1-helper = "3.0.0"

[features]
sp1 = ["crypto-ops/sp1"]
cuda = ["sp1-sdk/cuda"]
2 changes: 1 addition & 1 deletion prover/build.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use sp1_helper::build_program_with_args;

fn main() {
build_program_with_args("../circuits/merkle-proof", Default::default())
build_program_with_args("../circuits/sp1-merkle-proof", Default::default())
}

0 comments on commit 88f7c58

Please sign in to comment.