diff options
author | David Robillard <d@drobilla.net> | 2023-12-01 18:31:30 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-12-02 18:49:08 -0500 |
commit | 94879f376f1d2b8fbb2322bf2a7dab5c3bb9e098 (patch) | |
tree | 6db087ffdb3c76fac0492b771bc25aee6291a3e7 /scripts | |
parent | ed12fd8066ed47c1ee675a69dfed21751313f197 (diff) | |
download | serd-94879f376f1d2b8fbb2322bf2a7dab5c3bb9e098.tar.gz serd-94879f376f1d2b8fbb2322bf2a7dab5c3bb9e098.tar.bz2 serd-94879f376f1d2b8fbb2322bf2a7dab5c3bb9e098.zip |
[TESTED] Replace -b and -e options with a block size option
This is more powerful, and reduces the number of command line options that
almost nobody needs to care about.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/serd_bench.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/serd_bench.py b/scripts/serd_bench.py index 1bd61855..d764cbda 100755 --- a/scripts/serd_bench.py +++ b/scripts/serd_bench.py @@ -271,7 +271,7 @@ example: args = ap.parse_args(sys.argv[1:]) - progs = ["serd-pipe -b -f -i turtle -o turtle"] + args.run + progs = ["serd-pipe -f -i turtle -o turtle"] + args.run min_n = int(args.max / args.steps) max_n = args.max step = min_n |