Skip to main content
Version: 1.1

Local Proving

RISC Zero offers a fully open-source prover. Users can run the zkVM locally, generating proofs using their own hardware. The feature flags include options to toggle between CPU and GPU proving.

Local vs. Remote Proving

For most use cases, we recommend remote proving using Bonsai, our scalable and highly parallel proving service.

Proving with private data is a key reason to consider using local proof generation, as whoever is generating the proofs can see all private information involved. With local proof generation your private data never leaves your machine.

Proving hardware

RISC Zero's proving system for multiple hardware targets.

info

The Groth16 prover currently only works on x86 architecture, and so Apple Silicon is currently unsupported (even via Docker).

You can find out more info in the relevant issues #1520 and #1749.

TIP: In cases where memory is constrained (i.e. less than 10 GB is availble), it may be necessary to change the segment size limit. You can find information about expected memory consumption on our benchmarks page.

NOTE: When run for the first time, the GPU (e.g. Metal or CUDA) kernels may need to be JIT compiled. This can take a few minutes, but should only happen once.

CPU

RISC Zero proving will run on nearly any modern CPU (x86 or ARM). Proving on CPU is the easiest to setup, and the most portable, but will not result in the highest performance or compute costs.

NVIDIA GPU

RISC Zero is highly optimized for running on GPUs. Currently, RISC Zero targets NVIDIA GPUs using the CUDA framework.

Running on NVIDIA GPUS requires the CUDA runtime, and building the GPU kernels requires the NVIDIA toolkit.

Using Ubuntu as an example, the following steps will install and configure the necessary dependencies, and build RISC Zero to use CUDA.

# install driver install tool
sudo apt install ubuntu-drivers-common
# install drivers
sudo ubuntu-drivers install
# install compiling tools for risc0
sudo apt install build-essential libssl-dev -y
# install the cuda toolkit to compile the required codebase
sudo apt install cuda-toolkit -y
# install rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# setup your paths
echo 'export PATH=/usr/local/cuda/bin:$PATH' >> ~/.bashrc
echo 'export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH' >> ~/.bashrc
source ~/.bashrc
# clone the risc0 repo
git clone https://github.com/risc0/risc0.git
cd risc0
# install the r0vm
cargo install --force --path risc0/cargo-risczero
cargo risczero install
# run a benchmark on your GPU!
# NOTE: Building the GPU kernels may take a long time.
RUSTFLAGS="-C target-cpu=native" cargo run -F cuda -r --example datasheet

Apple Metal

On MacOS, when using a machine with Apple Silicon (such as the M-series MacBooks), RISC Zero will use the integrated Metal compute cores. No options need to be configured to take advantage of acceleration through the use of Metal.