Summary: Parallel Algorithms
Explore the fundamentals of parallel algorithms in C++ and how to analyze, measure, and optimize their efficiency using execution policies. Understand the balance between performance and code quality to write effective, maintainable software. This lesson prepares you to apply these techniques in real-world high-performance C++ applications.
We'll cover the following...
We'll cover the following...
In this chapter, you have learned about the complexity of handcrafting an algorithm to execute in parallel. You also now know how to analyze, measure, and tune the efficiency of parallel algorithms. The insights you gained ...