NAG Library Function Document

nag_omp_set_nested (x06agc)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

nag_omp_set_nested (x06agc) enables or disables nested OpenMP parallelism.

2
Specification

#include <nag.h>
#include <nagx06.h>
void  nag_omp_set_nested (Integer nesting)

3
Description

nag_omp_set_nested (x06agc), for multi-threaded implementations, enables or disables the nesting of OpenMP parallel regions by setting an OpenMP Internal Control Variable (ICV) and any vendor library specific options where that is possible. See the Users' Note for your implementation for details of the scope of nag_omp_set_nested (x06agc).
Nesting is disabled by default in OpenMP.
In serial implementations of the NAG C Library nag_omp_set_nested (x06agc) has no effect. See the Chapter x06 for a discussion of the behaviour of these functions when called in serial.

4
References

OpenMP Specifications http://openmp.org/
Chapman B, Jost G and van der Pas R (2008) Using OpenMP Portable Shared Memory Parallel Programming The MIT Press

5
Arguments

1:     nesting IntegerInput
On entry: if nesting=0, nesting of OpenMP parallel regions is disabled, otherwise it is enabled.

6
Error Indicators and Warnings

None.

7
Accuracy

Not applicable.

8
Parallelism and Performance

nag_omp_set_nested (x06agc) is not threaded in any implementation.

9
Further Comments

None.

10
Example

In this example we presume a multi-threaded implementation of the NAG Library. We call nag_omp_set_nested (x06agc) to enable the nesting of OpenMP parallel regions by setting an ICV. Inside a first, or ‘outer’, parallel region we call nag_omp_get_nested (x06ahc) to display the status of nesting, and expect to see it return the value 1.
Each thread then spawns a second ‘inner’ parallel region. Within this region we have each thread increment the value total. As there are 5 threads in the outer region and 3 threads in each inner region we expect the final value of this variable to be 15.
If you use a serial implementation of the NAG library, regardless of whether the code is compiled with OpenMP or not, nag_omp_set_nested (x06agc) will have no effect and nag_omp_get_nested (x06ahc) will always return 0. The total number of threads will be 1. The appropriate results file will be included with the distribution material for your implementation.

10.1
Program Text

Program Text (x06agce.c)

10.2
Program Data

None.

10.3
Program Results

Program Results (x06agce.r)

© The Numerical Algorithms Group Ltd, Oxford, UK. 2017