Skip to content
Snippets Groups Projects
Commit 9552695d authored by Mathis Rosenhauer's avatar Mathis Rosenhauer
Browse files

reference performance number from haswell

parent aaf7f627
No related branches found
No related tags found
No related merge requests found
......@@ -15,9 +15,13 @@ Intel compiler settings
=======================
The Intel compiler can improve performance by vectorizing certain
parts of the code on x86 architectures.
parts of the code on x86 architectures. Assuming your CPU supports
AVX2, the following options will increase encoding speed.
./configure CC=icc
make CFLAGS="-O3 -xCORE-AVX2"
make CFLAGS="-O3 -xCORE-AVX2" bench
This assumes that you have a CPU which supports AVX2.
On a 3.4 GHz E3-1240 v3 we see more than 400 MiB/s for encoding
typical data.
Using other SIMD instruction sets on older CPUs may also help.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment