NAG FL Interface
x06ajf (set_​max_​active_​levels)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

x06ajf sets the number of nested active parallel regions.

2 Specification

Fortran Interface
Subroutine x06ajf ( num, ifail)
Integer, Intent (In) :: num
Integer, Intent (Inout) :: ifail
C Header Interface
#include <nag.h>
void  x06ajf_ (const Integer *num, Integer *ifail)
The routine may be called by the names x06ajf or nagf_omp_set_max_active_levels.

3 Description

x06ajf, for multithreaded implementations, sets the maximum number of nested active parallel regions to num.
When num is set to zero parallelism is disabled, if set to one then only the outermost parallel region is active and nested regions are inactive (i.e., no new threads are created when entering the nested parallel region and it is executed in serial.) If num is set to n, where n2 then n parallel regions can be active and n-1 nested regions can be active.
In serial implementations of the NAG Library this routine has no effect. See the the X06 Chapter Introduction for a discussion of the behaviour of these routines when called in serial.

4 References

The OpenMP API Specification for Parallel Programming
Chapman B, Jost G and van der Pas R (2008) Using OpenMP Portable Shared Memory Parallel Programming The MIT Press

5 Arguments

1: num Integer Input
On entry: n, the number of active parallel regions allowed.
If num=0
parallelism is disabled.
If num=1
the outermost parallel region is active and nested regions are inactive (i.e., no new threads are created when entering the nested parallel region and it is executed in serial.)
If num2
num parallel regions can be active and num-1 nested regions can be active.
Constraint: num0.
2: ifail Integer Input/Output
On entry: ifail must be set to 0, -1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of -1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value -1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6 Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, num=value.
Constraint: num0.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

Not applicable.

8 Parallelism and Performance

x06ajf is not threaded in any implementation.

9 Further Comments

None.

10 Example

In this example we presume a multithreaded implementation of the NAG Library.
We first show the default behaviour for nested active parallel regions of the implementation being used. We have a counter inside a nested parallel region which is incremented by each thread and whose final value is the number of threads in the nested parallel region multiplied by the number of threads in the outer parallel region. Thus showing whether the nested region is active or not.
We then repeat the same text but call x06ajf and set num=2 which enables 1 level of nesting, which is all that is used in this example.
Finally, we call x06ajf again, this time num=1 which disables nested parallel regions.
If you use a serial implementation of the NAG Library, regardless of whether the code is compiled with OpenMP or not, calling x06ajf has no effect. The appropriate result file will be included with the distribution material for your implementation.

10.1 Program Text

Program Text (x06ajfe.f90)

10.2 Program Data

None.

10.3 Program Results

Program Results (x06ajfe.r)