Shared memory parallelization

XL Fortran supports application development for multiprocessor system architectures.

You can use any of the following methods to develop your parallelized applications with XL Fortran:
  • Directive-based shared memory parallelization
  • Instructing the compiler to automatically generate shared memory parallelization
  • Message passing based shared or distributed memory parallelization (MPI)

For more information, see Parallel programming with XL Fortran.

OpenMP directives

OpenMP directives are a set of API-based commands supported by XL Fortran and many other IBM and non-IBM C, C++, and Fortran compilers.

You can use OpenMP directives to instruct the compiler how to parallelize a particular loop. The existence of the directives in the source removes the need for the compiler to perform any parallel analysis on the parallel code. OpenMP directives require the presence of Pthread libraries to provide the necessary infrastructure for parallelization.

OpenMP directives address three important issues of parallelizing an application:
  1. Clauses and directives are available for scoping variables. Frequently, variables should not be shared; that is, each processor should have its own copy of the variable.
  2. Work sharing directives specify how the work contained in a parallel region of code should be distributed across the processors.
  3. Directives are available to control synchronization between the processors.

As of IBM® XL Fortran for Linux, V15.1, XL Fortran supports OpenMP API Version 3.1 and selected features of the OpenMP API Version 4.0 specification. For details, see OpenMP 4.0.

For more information about program performance optimization, see: