Skip to content
Open
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
2 changes: 1 addition & 1 deletion docs/basics/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,5 +98,5 @@ $ user@machine-with-gpu
docker run --gpus all --rm --network host -v "$PWD:/work:rw" -v /var/run/docker.sock:/var/run/docker.sock -w /work -it --entrypoint bash somnergy/z6m_prover

root@instance-20250919-091229:/work#
SP1_PROVER=cuda RUST_BACKTRACE=full RUST_LOG=info z6m_prover prove --n 1 --file-name test.json
SP1_PROVER=cuda RUST_BACKTRACE=full RUST_LOG=info z6m_prover prove --block-number 1 --file-name test.json
```
2 changes: 1 addition & 1 deletion docs/testing/riscv-testing-eests-on-rv32im-via-qemu.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ git submodule foreach 'git lfs pull'

```bash
cd zilkworm/qemu_runner
make rv32im_eest_blockchain_tests
make eest-rv32
```

That would build the project for rv32im and invoke `ctest` to launch a bunch of `qemu-system-riscv32` instances in the background. Each of these instances is passed with a JSON file to run as a test.\
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const capabilities: Card[] = [

const exampleCommand = `// Create block proofs in one command
z6m_prover prove --block-number 23456789 --proof-path proof.json
z6m_prover verify proof.json`;
z6m_prover verify --proof-path proof.json --vk-path vk.bin`;
Comment on lines 105 to +107

export default function Home(): React.ReactElement {
return (
Expand Down
4 changes: 2 additions & 2 deletions static/llms-full.txt
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ $ user@machine-with-gpu
docker run --gpus all --rm --network host -v "$PWD:/work:rw" -v /var/run/docker.sock:/var/run/docker.sock -w /work -it --entrypoint bash somnergy/z6m_prover

root@instance-20250919-091229:/work#
SP1_PROVER=cuda RUST_BACKTRACE=full RUST_LOG=info z6m_prover prove --n 1 --file-name test.json
SP1_PROVER=cuda RUST_BACKTRACE=full RUST_LOG=info z6m_prover prove --block-number 1 --file-name test.json
```

---
Expand Down Expand Up @@ -388,7 +388,7 @@ git submodule foreach 'git lfs pull'

```bash
cd zilkworm/qemu_runner
make rv32im_eest_blockchain_tests
make eest-rv32
```

That would build the project for rv32im and invoke `ctest` to launch a bunch of `qemu-system-riscv32` instances in the background. Each of these instances is passed with a JSON file to run as a test.\
Expand Down