This document provides an overview of parallel programming with OpenMP. It discusses how OpenMP allows users to incrementally parallelize serial C/C++ and Fortran programs by adding compiler directives and library functions. OpenMP is based on the fork-join model where all programs start as a single thread and additional threads are created for parallel regions. Core OpenMP elements include parallel regions, work-sharing constructs like #pragma omp for to parallelize loops, and clauses to control data scoping. The document provides examples of using OpenMP for tasks like matrix-vector multiplication and numerical integration. It also covers scheduling, handling race conditions, and other runtime functions.