View on GitHub

C++ Benchmarking

SSC Compact Course

C++ Profiling

License: MIT GitHub Workflow Status codecov

We use compiled languages like C++, Rust or Fortran to get good performance, so measuring and understanding the performance characteristics of our code is vital, for example to identify bottlenecks or to determine if a change to the code actually improves the performance. In this course we will cover different ways to profile and benchmark the performance of our code, and discuss the pros and cons of each method. Code examples will be in C++ but the profiling applies to most compiled languages.

Slides

download slides as pdf download course description as pdf

Getting started

To clone the repo and compile the code:

git clone --recursive https://github.com/ssciwr/cpp-benchmarking.git
cd cpp-benchmarking
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build .

This code contains two very simple map implementations, vec_map and sorted_vec_map, along with benchmarks of these and other map implementations.

Micro-benchmarks

plots/bench5.png

Profiling

perf/branch_miss.png perf/cache_miss.png

Simulation

sim/graph.png

Acknowledgements

This repo was quickly set up using the SSC C++ Project Cookiecutter.