1/*
2 * kmp_config.h -- Feature macros
3 */
4//===----------------------------------------------------------------------===//
5//
6// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
7// See https://llvm.org/LICENSE.txt for license information.
8// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
9//
10//===----------------------------------------------------------------------===//
11#ifndef KMP_CONFIG_H
12#define KMP_CONFIG_H
13
14#include "kmp_platform.h"
15
16// cmakedefine01 MACRO will define MACRO as either 0 or 1
17// cmakedefine MACRO 1 will define MACRO as 1 or leave undefined
18#define DEBUG_BUILD 1
19#define RELWITHDEBINFO_BUILD 0
20#define LIBOMP_USE_ITT_NOTIFY 1
21#define USE_ITT_NOTIFY LIBOMP_USE_ITT_NOTIFY
22#if ! LIBOMP_USE_ITT_NOTIFY
23# define INTEL_NO_ITTNOTIFY_API
24#endif
25#define LIBOMP_USE_VERSION_SYMBOLS 1
26#if LIBOMP_USE_VERSION_SYMBOLS
27# define KMP_USE_VERSION_SYMBOLS
28#endif
29#define LIBOMP_HAVE_WEAK_ATTRIBUTE 1
30#define KMP_HAVE_WEAK_ATTRIBUTE LIBOMP_HAVE_WEAK_ATTRIBUTE
31#define LIBOMP_HAVE_PSAPI 0
32#define KMP_HAVE_PSAPI LIBOMP_HAVE_PSAPI
33#define LIBOMP_STATS 0
34#define KMP_STATS_ENABLED LIBOMP_STATS
35#define LIBOMP_HAVE_X86INTRIN_H 0
36#define KMP_HAVE_X86INTRIN_H LIBOMP_HAVE_X86INTRIN_H
37#define LIBOMP_HAVE___BUILTIN_READCYCLECOUNTER 0
38#define KMP_HAVE___BUILTIN_READCYCLECOUNTER LIBOMP_HAVE___BUILTIN_READCYCLECOUNTER
39#define LIBOMP_HAVE___RDTSC 0
40#define KMP_HAVE___RDTSC LIBOMP_HAVE___RDTSC
41#define LIBOMP_USE_DEBUGGER 0
42#define USE_DEBUGGER LIBOMP_USE_DEBUGGER
43#define LIBOMP_OMPT_DEBUG 0
44#define OMPT_DEBUG LIBOMP_OMPT_DEBUG
45#define LIBOMP_OMPT_SUPPORT 1
46#define OMPT_SUPPORT LIBOMP_OMPT_SUPPORT
47#define LIBOMP_OMPD_SUPPORT 1
48#define OMPD_SUPPORT LIBOMP_OMPD_SUPPORT
49#define LIBOMP_OMPX_TASKGRAPH 0
50#define OMPX_TASKGRAPH LIBOMP_OMPX_TASKGRAPH
51#define LIBOMP_PROFILING_SUPPORT 0
52#define OMP_PROFILING_SUPPORT LIBOMP_PROFILING_SUPPORT
53#define LIBOMP_OMPT_OPTIONAL 1
54#define OMPT_OPTIONAL LIBOMP_OMPT_OPTIONAL
55#define LIBOMP_USE_ADAPTIVE_LOCKS 1
56#define KMP_USE_ADAPTIVE_LOCKS LIBOMP_USE_ADAPTIVE_LOCKS
57#define KMP_DEBUG_ADAPTIVE_LOCKS 0
58#define LIBOMP_USE_INTERNODE_ALIGNMENT 0
59#define KMP_USE_INTERNODE_ALIGNMENT LIBOMP_USE_INTERNODE_ALIGNMENT
60#define LIBOMP_ENABLE_ASSERTIONS 1
61#define KMP_USE_ASSERT LIBOMP_ENABLE_ASSERTIONS
62#define LIBOMP_USE_HIER_SCHED 0
63#define KMP_USE_HIER_SCHED LIBOMP_USE_HIER_SCHED
64#define STUBS_LIBRARY 0
65#define LIBOMP_USE_HWLOC 0
66#define KMP_USE_HWLOC LIBOMP_USE_HWLOC
67#define LIBOMP_ENABLE_SHARED 1
68#define KMP_DYNAMIC_LIB LIBOMP_ENABLE_SHARED
69#define KMP_ARCH_STR "Intel(R) 64"
70#define KMP_LIBRARY_FILE "libomp.so"
71#define KMP_VERSION_MAJOR 5
72#define KMP_VERSION_MINOR 0
73#define MSVC 0
74#define KMP_MSVC_COMPAT MSVC
75#define LIBOMP_HAVE_WAITPKG_INTRINSICS 1
76#define KMP_HAVE_WAITPKG_INTRINSICS LIBOMP_HAVE_WAITPKG_INTRINSICS
77#define LIBOMP_HAVE_RTM_INTRINSICS 1
78#define KMP_HAVE_RTM_INTRINSICS LIBOMP_HAVE_RTM_INTRINSICS
79#define LIBOMP_HAVE_IMMINTRIN_H 1
80#define KMP_HAVE_IMMINTRIN_H LIBOMP_HAVE_IMMINTRIN_H
81#define LIBOMP_HAVE_INTRIN_H 0
82#define KMP_HAVE_INTRIN_H LIBOMP_HAVE_INTRIN_H
83#define LIBOMP_HAVE_ATTRIBUTE_WAITPKG 1
84#define KMP_HAVE_ATTRIBUTE_WAITPKG LIBOMP_HAVE_ATTRIBUTE_WAITPKG
85#define LIBOMP_HAVE_ATTRIBUTE_RTM 1
86#define KMP_HAVE_ATTRIBUTE_RTM LIBOMP_HAVE_ATTRIBUTE_RTM
87#define LIBOMP_ARCH_AARCH64_A64FX 0
88#define KMP_ARCH_AARCH64_A64FX LIBOMP_ARCH_AARCH64_A64FX
89#define LIBOMP_HAVE_XMMINTRIN_H 1
90#define KMP_HAVE_XMMINTRIN_H LIBOMP_HAVE_XMMINTRIN_H
91#define LIBOMP_HAVE__MM_MALLOC 1
92#define KMP_HAVE__MM_MALLOC LIBOMP_HAVE__MM_MALLOC
93#define LIBOMP_HAVE_ALIGNED_ALLOC 1
94#define KMP_HAVE_ALIGNED_ALLOC LIBOMP_HAVE_ALIGNED_ALLOC
95#define LIBOMP_HAVE_POSIX_MEMALIGN 1
96#define KMP_HAVE_POSIX_MEMALIGN LIBOMP_HAVE_POSIX_MEMALIGN
97#define LIBOMP_HAVE__ALIGNED_MALLOC 0
98#define KMP_HAVE__ALIGNED_MALLOC LIBOMP_HAVE__ALIGNED_MALLOC
99#define OPENMP_ENABLE_LIBOMPTARGET 1
100#define ENABLE_LIBOMPTARGET OPENMP_ENABLE_LIBOMPTARGET
101
102// Configured cache line based on architecture
103#if KMP_ARCH_PPC64 || KMP_ARCH_PPC
104# define CACHE_LINE 128
105#elif KMP_ARCH_AARCH64_A64FX
106# define CACHE_LINE 256
107#elif KMP_ARCH_S390X
108# define CACHE_LINE 256
109#else
110# define CACHE_LINE 64
111#endif
112
113#if ! KMP_32_BIT_ARCH
114# define BUILD_I8 1
115#endif
116
117#define KMP_NESTED_HOT_TEAMS 1
118#define KMP_ADJUST_BLOCKTIME 1
119#define BUILD_PARALLEL_ORDERED 1
120#define KMP_ASM_INTRINS 1
121#define USE_ITT_BUILD LIBOMP_USE_ITT_NOTIFY
122#define INTEL_ITTNOTIFY_PREFIX __kmp_itt_
123#if ! KMP_MIC
124# define USE_LOAD_BALANCE 1
125#endif
126#if ! (KMP_OS_WINDOWS || KMP_OS_DARWIN)
127# define KMP_TDATA_GTID 1
128#endif
129#if STUBS_LIBRARY
130# define KMP_STUB 1
131#endif
132#if DEBUG_BUILD || RELWITHDEBINFO_BUILD
133# define KMP_DEBUG 1
134#endif
135
136#if KMP_OS_WINDOWS
137# define KMP_WIN_CDECL
138#else
139# define BUILD_TV
140# define KMP_GOMP_COMPAT
141#endif
142
143// use shared memory with dynamic library (except Android, where shm_*
144// functions don't exist).
145#if KMP_OS_UNIX && KMP_DYNAMIC_LIB && !__ANDROID__
146#define KMP_USE_SHM
147#endif
148#endif // KMP_CONFIG_H
149

source code of llvm_build/projects/openmp/runtime/src/kmp_config.h