1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-08-04 21:52:54 +02:00
Files
ripgrep/benchsuite/runs/2018-01-08-archlinux-cheetah/README

60 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

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