- Dhrystone v 2.1
- Whetstone
- Whetstone MP - multi-thread version of classic Whetstone benchmark
- Memspeed - simple single-threaded memory speed test
- Linpack - classical computational benchmark, this is classic C version on small arrays (100x100).
- Lloops - Livermore loops, classic benchmark for supercomputers for late 80-s.
- Busspeed
- MP MFlops - syntethic benchmark that tries to achieve peak FP performance on CPU. Significantly benefits from SIMD and it's highly recommended that you modify march/mtune flag for your CPU and recompile it
- Coremark - industry standard benchmark that stresses CPU Pipeline
- Scimark 2 - C version of classic Java scientific/computational benchmark
- SuperPI - classic software that computes Pi up to N digits.
- STREAM - multicore memory bandwidth benchmark
- GSynth - contributed benchmark that evaluates CPU on audio synthesis tasks, code was taken from real-world software.
There are some already precompiled binaries in bin/
directory.
So you can just
cd src/
./run.sh
However, it's highly recommended compiling your own binaries with platform-specific flags set and run them.
This repo uses git submodules, if cloning:
git clone --recurse-submodules https://github.com/EntityFX/anybench.git
Alternatively:
git clone https://github.com/EntityFX/anybench.git
cd anybench
git submodule update --init --recursive
If you want to modify compile flags, please edit corresponding make-<arch>.sh
script and add them to corresponding parameter:
targetToFlags
- script will iterate over each flag specified there and compile a single version.targetToFPU
- for the same key specified intargetToFlags
all the flags will be used
There are separate scripts that set some optimization specific flags for particular CPU architecture. Some examples are:
cd src/
./make-arm.sh
cd src/
./make-mac-arm.sh
NOTE: By default it will try to compile binary optimized for AMD Zen2, so if your CPU is different please modify script. That might still be ok for any other modern AMD CPU (it must support AVX2) and Intel CPUs that doesn't support AVX-512.
cd src/
./make-amd64.sh
NOTE: By default it will try to compile binary optimized for AMD Zen2, so if your CPU is different please modify script. That might still be ok for any other modern AMD CPU (it must support AVX2) and Intel CPUs that doesn't support AVX-512.
cd src/
./make-amd64_clang.sh
For e2k architecture
cd src/
./make-e2k.sh
You can see results in results/<your-arch>
direcotry.
Please rename them to some identifiable thing before submitting. Recommended format: <cpu-vendor>-<cpu-architecture>-<cpu-model>[-<optional-identifiers>]
Some examples:
apple-arm-m1-max-perf-auto
- contains results from Apple M1 Max CPU on OSX with performance mode set toauto
.intel-x86-core_i7_2600-clang
- contains results from Intel Core i7 2600, compiled with clang.nvidia-arm-tegra_xavier_t194-jetson_agx
- contains results obtained on NVidia ARM CPU Tegra T194, board Xavier AGX.
Those benchmarks requires certain software or libraries installed and might be hard to run on devices like smartphones
- HashTableBenchmark - benchmark that tries to simulate typical in-memory database patterns. Basically it benchmarks performance of several hash table implementations, like
std::unordered_map
,tsl::sparse_map
and others.
Currently there is no pre-build binaries for advanced benchmarks, as well as currently there is no single script to build them.
This benchmark requires CMake 3.x installed and it also require internet connection to fetch it's dependencies (it uses particular commits of gtest and gbenchmark libraries).
cd src/benchmarks/advanced/HashTableBenchmark
mkdir -p build && cmake -DCMAKE_BUILD_TYPE=Release -B ./build && make -j4 -C ./build
You must be in repository root
mkdir -p results/$(uname -m)
src/benchmarks/advanced/HashTableBenchmark/build/build/bin/mixed_ops 2>&1 | tee results/$(uname -m)/HashTableBenchmark-mixed_ops.log
src/benchmarks/advanced/HashTableBenchmark/build/build/bin/ram_speed 2>&1 | tee results/$(uname -m)/HashTableBenchmark-ram_speed.log