forked from risc0/risc0
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add example for datasheet + verbiage (risc0#2242)
Based on what Paul wrote to me > wrote some verbiage for the datasheet: > The data on this page can be used to estimate the total time and work required for proving zkVM applications. We recommend reading about our [recursive proving architecture](https://dev.risczero.com/api/recursion) as a companion for this page. > Example > To prove 6 million cycles (6 segments), the work required is… > 6 million cycles of `execute` > 6 calls to `rv32im` (1M cycles) > 6 calls to `lift` > 5 calls to `join` > 1 call to `identity_p254`(optional) > 1 call to stark2snark (optional) > The last two steps are only required if you’d like to verify your proofs on-chain. The row labelled `succinct` shows the cost for execute + rv32im + lift. The row labelled `groth16` shows the cost for execute + rv32im + lift + identity_p254 + stark2snark. On Bonsai, calls to rv32im, lift, and join are parallellized. Screenshots: <img width="1472" alt="image" src="https://github.com/user-attachments/assets/bf2e8d67-b57b-44bd-9363-7b16bd885ee0"> <img width="1466" alt="image" src="https://github.com/user-attachments/assets/b9cd3590-4e49-4e45-9d09-a10a16a25e36"> --------- Co-authored-by: Frank Laub <[email protected]>
- Loading branch information
Showing
3 changed files
with
92 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,17 +11,17 @@ | |
}, | ||
"dependencies": { | ||
"@joshdavenport/tailwindcss-filter-order": "0.2.0", | ||
"@poppinss/intl-formatter": "3.0.2", | ||
"@poppinss/intl-formatter": "3.0.3", | ||
"@risc0/ui": "0.0.89", | ||
"@t3-oss/env-nextjs": "0.11.0", | ||
"@tanstack/match-sorter-utils": "8.15.1", | ||
"@tanstack/react-table": "8.19.3", | ||
"@tanstack/match-sorter-utils": "8.19.4", | ||
"@tanstack/react-table": "8.20.1", | ||
"@vercel/analytics": "1.3.1", | ||
"@vercel/speed-insights": "1.0.12", | ||
"chart.js": "2.9.4", | ||
"deepmerge": "4.3.1", | ||
"framer-motion": "11.3.19", | ||
"lucide-react": "0.417.0", | ||
"framer-motion": "11.3.28", | ||
"lucide-react": "0.428.0", | ||
"next": "14.2.5", | ||
"next-themes": "0.3.0", | ||
"prism-react-renderer": "2.3.1", | ||
|
@@ -31,7 +31,7 @@ | |
"react-dom": "18.3.1", | ||
"react-rainbow-ascii": "1.0.3", | ||
"sharp": "0.33.4", | ||
"turbo": "2.0.10", | ||
"turbo": "2.0.14", | ||
"typescript": "5.5.4", | ||
"zod": "3.23.8" | ||
}, | ||
|
@@ -40,9 +40,9 @@ | |
"@next/bundle-analyzer": "14.2.5", | ||
"@types/chart.js": "2.9.41", | ||
"@types/jest": "29.5.12", | ||
"@types/node": "22.0.0", | ||
"@types/node": "22.3.0", | ||
"@types/react": "18.3.3", | ||
"@types/react-dom": "18.3.0" | ||
}, | ||
"packageManager": "[email protected].15" | ||
"packageManager": "[email protected].24" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters