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

Prototypes for hint IO (WIP) #631

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
76f30f8
Example
matthiasgoergens Nov 25, 2024
322cab7
Initial test
matthiasgoergens Nov 25, 2024
fefe850
Merge remote-tracking branch 'origin/master' into matthias/ceno_host
matthiasgoergens Nov 26, 2024
ab03b62
Unaligned works
matthiasgoergens Nov 26, 2024
5544372
Example
matthiasgoergens Nov 26, 2024
2541db1
Typo
matthiasgoergens Nov 26, 2024
5502b31
Clean up names
matthiasgoergens Nov 26, 2024
9fd1b7e
Remove notes
matthiasgoergens Nov 26, 2024
ddb65f7
Merge remote-tracking branch 'origin/master' into matthias/ceno_host
matthiasgoergens Nov 26, 2024
5d457fb
Merge remote-tracking branch 'origin/master' into matthias/ceno_host
matthiasgoergens Nov 27, 2024
1faae5c
Alternative design
matthiasgoergens Nov 27, 2024
c5db8de
Aligned
matthiasgoergens Nov 27, 2024
7d3f54c
rkyv simpler
matthiasgoergens Nov 27, 2024
90f1742
Polish
matthiasgoergens Nov 27, 2024
d2a92f8
More lifetimes
matthiasgoergens Nov 27, 2024
289f2b3
More polish
matthiasgoergens Nov 27, 2024
8421bf8
Polished
matthiasgoergens Nov 27, 2024
5bc1be7
Clean up
matthiasgoergens Nov 27, 2024
9f685d7
Read slice
matthiasgoergens Nov 27, 2024
f238b8b
Explain
matthiasgoergens Nov 27, 2024
c7487fb
Less hard coding
matthiasgoergens Nov 27, 2024
f5b79b5
Move definitions into test
matthiasgoergens Nov 27, 2024
3d61d4c
Remove commented out code
matthiasgoergens Nov 27, 2024
a9a208e
Implmented TODO
matthiasgoergens Nov 27, 2024
35f24cd
Merge branch 'master' into matthias/ceno_host
matthiasgoergens Nov 27, 2024
cb0351d
Merge branch 'master' into matthias/ceno_host
matthiasgoergens Nov 29, 2024
1eec669
Merge remote-tracking branch 'origin/master' into matthias/ceno_host
matthiasgoergens Nov 29, 2024
f0a4ce9
Fix cargo.toml clippy
matthiasgoergens Nov 29, 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
147 changes: 147 additions & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ members = [
"transcript",
"ceno_zkvm",
"poseidon",
"ceno_host",
]
resolver = "2"

Expand Down
12 changes: 12 additions & 0 deletions ceno_host/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[package]
edition.workspace = true
license.workspace = true
name = "ceno_host"
version.workspace = true

[dependencies]
itertools.workspace = true
rkyv = "0.8.9"

[dev-dependencies]
rand.workspace = true
Loading