diff options
author | David Robillard <d@drobilla.net> | 2021-08-08 14:24:59 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-01-28 21:57:07 -0500 |
commit | 5aa146e1ce58d295b5f45446bbbbdbb30c8e557d (patch) | |
tree | c8b49564b251bf2c3ff63bbfdc932986bea8d0b6 /scripts | |
parent | baa2e4e768f542953144cfa6ebe5713ecad389fc (diff) | |
download | serd-5aa146e1ce58d295b5f45446bbbbdbb30c8e557d.tar.gz serd-5aa146e1ce58d295b5f45446bbbbdbb30c8e557d.tar.bz2 serd-5aa146e1ce58d295b5f45446bbbbdbb30c8e557d.zip |
Replace serdi -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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/serd_bench.py b/scripts/serd_bench.py index 018734c4..8a10dab0 100755 --- a/scripts/serd_bench.py +++ b/scripts/serd_bench.py @@ -226,8 +226,8 @@ example: args = ap.parse_args(sys.argv[1:]) progs = [ - "serdi -b -i turtle -o turtle", - "serdi -m -b -i turtle -o turtle", + "serdi -i turtle -o turtle", + "serdi -m -i turtle -o turtle", ] + args.run min_n = int(args.max / 10) |