NAG FL Interface
x06aaf (set_​num_​threads)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

x06aaf sets the number of threads requested for subsequent OpenMP parallel regions.

2 Specification

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

3 Description

x06aaf, for multithreaded implementations, sets the number of threads to be requested for subsequent parallel regions to num. The first element of the list held by the OpenMP Internal Control Variable (ICV) used in determining the number of threads is set. See the Users' Note for your implementation for details of the scope of this routine.
The number of threads used in parallel regions will be equal to, or less than, the value of the ICV. The actual number of threads used is dependent on several factors, such as the presence of a num_threads clause on the parallel directive or the number of threads already in use by the program. Please refer to Section 4 for a full description of how the number of threads is chosen for a particular parallel region.
In serial implementations of the NAG Library this routine has no effect. See 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: the number of threads requested for subsequent OpenMP parallel regions.
Constraint: num1.
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: num1.
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

x06aaf 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 set the OpenMP Internal Control Variable used in determining the number of threads to 5 with a call to x06aaf and retrieve it again with x06acf.
We then, using x06abf, display the number of threads in use both outside, and inside, the OpenMP parallel region.
We expect to see x06abf returning 1 outside of the parallel region, as the current team of threads there will consist of a single thread, and 5 from within it.
If you use a serial implementation of the NAG Library, regardless of whether the code is compiled with OpenMP or not, calling x06aaf has no effect and x06abf and x06acf will always return 1. The appropriate results file will be included with the distribution material for your implementation.

10.1 Program Text

Program Text (x06aafe.f90)

10.2 Program Data

None.

10.3 Program Results

Program Results (x06aafe.r)