From 1758ec614081e4607e68ba481501fc6bc621b319 Mon Sep 17 00:00:00 2001 From: Harry Ma Date: Wed, 16 Feb 2022 20:37:23 +0800 Subject: [PATCH] fix wrong sector size on readme.md (#1566) * fix wrong sector size on readme.md * change 2048 to 2KiB --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 047c765c0..c98bfe46c 100644 --- a/README.md +++ b/README.md @@ -106,9 +106,9 @@ $ cargo +nightly build -p filecoin-proofs --release --target aarch64-unknown-lin The main benchmarking tool is called `benchy`. `benchy` has several subcommands, including `merkleproofs`, `prodbench`, `winning_post` and `window_post`. You can run them with various configuration options, but some examples are below: ``` -> cargo run --release --bin benchy -- merkleproofs --size 2 -> cargo run --release --bin benchy -- winning-post --size 2 -> cargo run --release --bin benchy -- window-post --size 2 +> cargo run --release --bin benchy -- merkleproofs --size 2KiB +> cargo run --release --bin benchy -- winning-post --size 2KiB +> cargo run --release --bin benchy -- window-post --size 2KiB > cargo run --release --bin benchy -- prodbench ```