benchsuite: fix formatting

This commit is contained in:
Andrew Gallant 2018-01-08 19:23:43 -05:00
parent 5aed0522e8
commit 01b7859399
No known key found for this signature in database
GPG Key ID: B2E3A4923F8B0D44

View File

@ -2,62 +2,58 @@ This directory contains updated benchmarks as of 2018-01-08. They were captured
via the benchsuite script at `benchsuite/benchsuite` from the root of this via the benchsuite script at `benchsuite/benchsuite` from the root of this
repository. The command that was run: repository. The command that was run:
./benchsuite \ $ ./benchsuite \
--dir /tmp/benchsuite \ --dir /tmp/benchsuite \
--raw runs/2018-01-08-archlinux-cheetah/raw.csv \ --raw runs/2018-01-08-archlinux-cheetah/raw.csv \
--warmup-iter 1 \ --warmup-iter 1 \
--bench-iter 5 --bench-iter 5
These results are most directly comparable to the These results are most directly comparable to the
`2016-09-22-archlinux-cheetah` run in the parent directory. `2016-09-22-archlinux-cheetah` run in the parent directory.
The versions of each tool are as follows: The versions of each tool are as follows:
``` $ grep -V
$ grep -V grep (GNU grep) 3.1
grep (GNU grep) 3.1
$ ag -V $ ag -V
ag version 2.1.0 ag version 2.1.0
Features: Features:
+jit +lzma +zlib +jit +lzma +zlib
$ sift -V $ sift -V
sift 0.8.0 (linux/amd64) sift 0.8.0 (linux/amd64)
built from commit 2ca94717 (which seems to be 0.9.0) built from commit 2ca94717 (which seems to be 0.9.0)
$ pt --version $ pt --version
pt version 2.1.4 pt version 2.1.4
$ ucg -V $ ucg -V
UniversalCodeGrep 0.3.3 UniversalCodeGrep 0.3.3
[...] [...]
Build info Build info
Repo version: 0.3.3-251-g9b5a3e3 Repo version: 0.3.3-251-g9b5a3e3
Compiler info: Compiler info:
Name ($(CXX)): "g++ -std=gnu++1z" Name ($(CXX)): "g++ -std=gnu++1z"
Version string: "g++ (GCC) 7.2.1 20171224" Version string: "g++ (GCC) 7.2.1 20171224"
ISA extensions in use: ISA extensions in use:
sse4.2: yes sse4.2: yes
popcnt: yes popcnt: yes
libpcre info: libpcre info:
Not linked against libpcre. Not linked against libpcre.
libpcre2-8 info: libpcre2-8 info:
Version: 10.30 2017-08-14 Version: 10.30 2017-08-14
JIT support built in?: yes JIT support built in?: yes
JIT target architecture: x86 64bit (little endian + unaligned) JIT target architecture: x86 64bit (little endian + unaligned)
Newline style: LF Newline style: LF
```
The version of ripgrep was compiled from source on commit 85d463c0, with the The version of ripgrep was compiled from source on commit 85d463c0, with the
simd-accel and avx-accel features enabled: simd-accel and avx-accel features enabled:
``` $ export RUSTFLAGS="-C target-cpu=native"
export RUSTFLAGS="-C target-cpu=native" $ cargo build --release --features 'simd-accel avx-accel'
cargo build --release --features 'simd-accel avx-accel'
```