Skip to content

Latest commit

 

History

History
67 lines (57 loc) · 1.51 KB

File metadata and controls

67 lines (57 loc) · 1.51 KB
title OMP_NESTED | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-windows
ms.tgt_pltfrm
ms.topic article
f1_keywords
OMP_NESTED
dev_langs
C++
helpviewer_keywords
OMP_NESTED OpenMP environment variable
ms.assetid c43f5287-a548-40d0-bd54-0c6b2b9f9a53
caps.latest.revision 10
author mikeblome
ms.author mblome
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

OMP_NESTED

Specifies whether nested parallelism is enabled, unless nested parallelism is enabled or disabled with omp_set_nested.

Syntax

set OMP_NESTED[=TRUE | =FALSE]  

Remarks

The OMP_NESTED environment variable can be overridden by the omp_set_nested function.

The default value in the Visual C++ implementation of the OpenMP standard is OMP_DYNAMIC=FALSE.

For more information, see 4.4 OMP_NESTED.

Example

The following command sets the OMP_NESTED environment variable to TRUE:

set OMP_NESTED=TRUE  

The following command displays the current setting of the OMP_NESTED environment variable:

set OMP_NESTED  

See Also

Environment Variables