From 57dc460ff772cba099f9dff186ca9015cbb681e4 Mon Sep 17 00:00:00 2001 From: Daniel Lubarov Date: Thu, 19 Aug 2021 08:27:14 -0700 Subject: [PATCH] Update running example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b44cd070..7191486e 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,10 @@ plonky2 is largely focused on recursion performance. We use custom gates to miti ## Running -To run the recursion benchmark, +To see recursion performance, one can run this test, which generates a chain of three recursion proofs: ```sh -RUSTFLAGS=-Ctarget-cpu=native cargo run --release +RUST_LOG=debug RUSTFLAGS=-Ctarget-cpu=native cargo test --release test_recursive_recursive_verifier -- --ignored ```