Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
136 changes: 130 additions & 6 deletions Cargo.lock

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

28 changes: 28 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,22 @@ uint = "0.8"
ceno_gpu = { path = "utils/cuda_hal", package = "cuda_hal" }
cudarc = { version = "0.17.3", features = ["driver", "cuda-version-from-build-system"] }

# ceno-recursion dependencies
openvm = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-circuit = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-continuations = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-instructions = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-native-circuit = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-native-compiler = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-native-compiler-derive = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-native-recursion = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-rv32im-circuit = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-sdk = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }

openvm-stark-backend = { git = "https://github.com/openvm-org/stark-backend.git", tag = "v1.2.1", default-features = false }
openvm-stark-sdk = { git = "https://github.com/openvm-org/stark-backend.git", tag = "v1.2.1", default-features = false }
openvm-cuda-backend = { git = "https://github.com/openvm-org/stark-backend.git", tag = "v1.2.1", default-features = false }

[profile.dev]
lto = "thin"
# We are running our tests with optimizations turned on to make them faster.
Expand Down Expand Up @@ -114,3 +130,15 @@ lto = "thin"
#transcript = { path = "../gkr-backend/crates/transcript", package = "transcript" }
#whir = { path = "../gkr-backend/crates/whir", package = "whir" }
#witness = { path = "../gkr-backend/crates/witness", package = "witness" }

# [patch."https://github.com/scroll-tech/openvm.git"]
# openvm = { path = "../openvm-scroll-tech/crates/toolchain/openvm", default-features = false }
# openvm-circuit = { path = "../openvm-scroll-tech/crates/vm", default-features = false }
# openvm-continuations = { path = "../openvm-scroll-tech/crates/continuations", default-features = false }
# openvm-instructions = { path = "../openvm-scroll-tech/crates/toolchain/instructions", default-features = false }
# openvm-native-circuit = { path = "../openvm-scroll-tech/extensions/native/circuit", default-features = false }
# openvm-native-compiler = { path = "../openvm-scroll-tech/extensions/native/compiler", default-features = false }
# openvm-native-compiler-derive = { path = "../openvm-scroll-tech/extensions/native/compiler/derive", default-features = false }
# openvm-native-recursion = { path = "../openvm-scroll-tech/extensions/native/recursion", default-features = false }
# openvm-rv32im-circuit = { path = "../openvm-scroll-tech/extensions/rv32im/circuit", default-features = false }
# openvm-sdk = { path = "../openvm-scroll-tech/crates/sdk", default-features = false }
43 changes: 18 additions & 25 deletions ceno_recursion/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,37 +33,30 @@ tracing-subscriber.workspace = true
transcript.workspace = true
whir.workspace = true
witness.workspace = true
openvm.workspace = true
openvm-circuit.workspace = true
openvm-continuations.workspace = true
openvm-instructions.workspace = true
openvm-native-circuit.workspace = true
openvm-native-compiler.workspace = true
openvm-native-compiler-derive.workspace = true
openvm-native-recursion.workspace = true
openvm-rv32im-circuit.workspace = true
openvm-sdk.workspace = true
openvm-stark-sdk.workspace = true
openvm-stark-backend.workspace = true
openvm-cuda-backend.workspace = true

# openvm
openvm = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-circuit = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-continuations = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-instructions = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-native-circuit = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-native-compiler = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-native-compiler-derive = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-native-recursion = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-rv32im-circuit = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }
openvm-sdk = { git = "https://github.com/scroll-tech/openvm.git", branch = "feat/v1.4.1-scroll-ext", default-features = false }

# openvm = { path = "../../openvm-scroll-tech/crates/toolchain/openvm", default-features = false }
# openvm-circuit = { path = "../../openvm-scroll-tech/crates/vm", default-features = false }
# openvm-continuations = { path = "../../openvm-scroll-tech/crates/continuations", default-features = false }
# openvm-instructions = { path = "../../openvm-scroll-tech/crates/toolchain/instructions", default-features = false }
# openvm-native-circuit = { path = "../../openvm-scroll-tech/extensions/native/circuit", default-features = false }
# openvm-native-compiler = { path = "../../openvm-scroll-tech/extensions/native/compiler", default-features = false }
# openvm-native-compiler-derive = { path = "../../openvm-scroll-tech/extensions/native/compiler/derive", default-features = false }
# openvm-native-recursion = { path = "../../openvm-scroll-tech/extensions/native/recursion", default-features = false }
# openvm-rv32im-circuit = { path = "../../openvm-scroll-tech/extensions/rv32im/circuit", default-features = false }
# openvm-sdk = { path = "../../openvm-scroll-tech/crates/sdk", default-features = false }

openvm-stark-backend = { git = "https://github.com/openvm-org/stark-backend.git", tag = "v1.2.1", default-features = false }
openvm-stark-sdk = { git = "https://github.com/openvm-org/stark-backend.git", tag = "v1.2.1", default-features = false }
p3-monty-31 = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }

[[bin]]
name = "e2e_aggregate"
path = "src/bin/e2e_aggregate.rs"

[features]
# bench-metrics = ["openvm-circuit/bench-metrics"]
default = ["parallel", "nightly-features"]
gpu = ["openvm-circuit/cuda", "openvm-native-circuit/cuda"]
nightly-features = [
"ceno_zkvm/nightly-features",
"openvm-stark-sdk/nightly-features",
Expand Down
Loading
Loading