1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-06-30 22:23:44 +02:00

benchsuite: fix formatting

This commit is contained in:
Andrew Gallant
2018-01-08 19:23:43 -05:00
parent 5aed0522e8
commit 01b7859399

View File

@ -2,7 +2,7 @@ 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 \
@ -13,7 +13,6 @@ These results are most directly comparable to the
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
@ -52,12 +51,9 @@ libpcre2-8 info:
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'
```