Search⌘ K

Introduction

Explore practical applications of modern C++ concurrency concepts by learning how to calculate the sum of a std::vector. Understand and compare single-threaded and multithreaded methods using atomics, locks, thread local data, and tasks to improve performance on large datasets.

We'll cover the following...

After providing the theory on the memory model and the multithreading interface, I will now apply the theory in practice and provide you a few performance numbers. ...