Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 441 Bytes

omp_get_nested.md

File metadata and controls

24 lines (16 loc) · 441 Bytes

OMP_GET_NESTED

Purpose:

Used to determine if nested parallelism is enabled or not.

Format:

Fortran

LOGICAL FUNCTION OMP_GET_NESTED

C/C++

#include <omp.h>
int omp_get_nested (void)

Notes & Restrictions:

  • For Fortran, this function returns .TRUE. if nested parallelism is enabled, and .FALSE. otherwise.

  • For C/C++, non-zero will be returned if nested parallelism is enabled, and zero otherwise.