From 9e534922cce015764a95a0cfc63a2866183b9362 Mon Sep 17 00:00:00 2001 From: David Peter Date: Sun, 1 Sep 2019 14:39:07 +0200 Subject: [PATCH] Add '--parameter-step-size' to README --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 184e8df..be7ffa5 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,11 @@ threads), you can use the `-P`/`--parameter-scan` option and call: ``` bash hyperfine --prepare 'make clean' --parameter-scan num_threads 1 12 'make -j {num_threads}' ``` +This also works with decimal numbers. The `-D`/`--parameter-step-size` option can be used +to control the step size: +``` bash +hyperfine -P time 0.2 0.8 -D 0.2 'sleep {time}' +``` ### Export results