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 0 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 0 48 #define OMPD_SUPPORT LIBOMP_OMPD_SUPPORT 49 #define LIBOMP_PROFILING_SUPPORT 0 50 #define OMP_PROFILING_SUPPORT LIBOMP_PROFILING_SUPPORT 51 #define LIBOMP_OMPT_OPTIONAL 1 52 #define OMPT_OPTIONAL LIBOMP_OMPT_OPTIONAL 53 #if KMP_ARCH_X86 || KMP_ARCH_X86_64 // FreeBSD customization { 54 #define LIBOMP_USE_ADAPTIVE_LOCKS 1 55 #else 56 #define LIBOMP_USE_ADAPTIVE_LOCKS 0 57 #endif // } FreeBSD customization 58 #define KMP_USE_ADAPTIVE_LOCKS LIBOMP_USE_ADAPTIVE_LOCKS 59 #define KMP_DEBUG_ADAPTIVE_LOCKS 0 60 #define LIBOMP_USE_INTERNODE_ALIGNMENT 0 61 #define KMP_USE_INTERNODE_ALIGNMENT LIBOMP_USE_INTERNODE_ALIGNMENT 62 #define LIBOMP_ENABLE_ASSERTIONS 1 63 #define KMP_USE_ASSERT LIBOMP_ENABLE_ASSERTIONS 64 #define LIBOMP_USE_HIER_SCHED 0 65 #define KMP_USE_HIER_SCHED LIBOMP_USE_HIER_SCHED 66 #define STUBS_LIBRARY 0 67 #define LIBOMP_USE_HWLOC 0 68 #define KMP_USE_HWLOC LIBOMP_USE_HWLOC 69 #define LIBOMP_ENABLE_SHARED 1 70 #define KMP_DYNAMIC_LIB LIBOMP_ENABLE_SHARED 71 #if KMP_ARCH_X86 // FreeBSD customization { 72 #define KMP_ARCH_STR "IA-32" 73 #elif KMP_ARCH_X86_64 74 #define KMP_ARCH_STR "Intel(R) 64" 75 #elif KMP_ARCH_AARCH64 76 #define KMP_ARCH_STR "AARCH64" 77 #elif KMP_ARCH_PPC64 78 #define KMP_ARCH_STR "PPC64BE" 79 #elif KMP_ARCH_MIPS 80 #define KMP_ARCH_STR "MIPS" 81 #elif KMP_ARCH_MIPS64 82 #define KMP_ARCH_STR "MIPS64" 83 #elif KMP_ARCH_RISCV64 84 #define KMP_ARCH_STR "RISCV64" 85 #else 86 #error Unknown KMP_ARCH value 87 #endif // } FreeBSD customization 88 #define KMP_LIBRARY_FILE "libomp.so" 89 #define KMP_VERSION_MAJOR 5 90 #define KMP_VERSION_MINOR 0 91 #define MSVC 0 92 #define KMP_MSVC_COMPAT MSVC 93 #if KMP_ARCH_X86 || KMP_ARCH_X86_64 // FreeBSD customization { 94 #define LIBOMP_HAVE_WAITPKG_INTRINSICS 1 95 #else 96 #define LIBOMP_HAVE_WAITPKG_INTRINSICS 0 97 #endif // } FreeBSD customization 98 #define KMP_HAVE_WAITPKG_INTRINSICS LIBOMP_HAVE_WAITPKG_INTRINSICS 99 #if KMP_ARCH_X86 || KMP_ARCH_X86_64 // FreeBSD customization { 100 #define LIBOMP_HAVE_RTM_INTRINSICS 1 101 #else 102 #define LIBOMP_HAVE_RTM_INTRINSICS 0 103 #endif // } FreeBSD customization 104 #define KMP_HAVE_RTM_INTRINSICS LIBOMP_HAVE_RTM_INTRINSICS 105 #if KMP_ARCH_X86 || KMP_ARCH_X86_64 // FreeBSD customization { 106 #define LIBOMP_HAVE_IMMINTRIN_H 1 107 #else 108 #define LIBOMP_HAVE_IMMINTRIN_H 0 109 #endif // } FreeBSD customization 110 #define KMP_HAVE_IMMINTRIN_H LIBOMP_HAVE_IMMINTRIN_H 111 #define LIBOMP_HAVE_INTRIN_H 0 112 #define KMP_HAVE_INTRIN_H LIBOMP_HAVE_INTRIN_H 113 #if KMP_ARCH_X86 || KMP_ARCH_X86_64 // FreeBSD customization { 114 #define LIBOMP_HAVE_ATTRIBUTE_WAITPKG 1 115 #else 116 #define LIBOMP_HAVE_ATTRIBUTE_WAITPKG 0 117 #endif // } FreeBSD customization 118 #define KMP_HAVE_ATTRIBUTE_WAITPKG LIBOMP_HAVE_ATTRIBUTE_WAITPKG 119 #if KMP_ARCH_X86 || KMP_ARCH_X86_64 // FreeBSD customization { 120 #define LIBOMP_HAVE_ATTRIBUTE_RTM 1 121 #else 122 #define LIBOMP_HAVE_ATTRIBUTE_RTM 0 123 #endif // } FreeBSD customization 124 #define KMP_HAVE_ATTRIBUTE_RTM LIBOMP_HAVE_ATTRIBUTE_RTM 125 #define LIBOMP_ARCH_AARCH64_A64FX 0 126 #define KMP_ARCH_AARCH64_A64FX LIBOMP_ARCH_AARCH64_A64FX 127 #if KMP_ARCH_X86 || KMP_ARCH_X86_64 // FreeBSD customization { 128 #define LIBOMP_HAVE_XMMINTRIN_H 1 129 #else 130 #define LIBOMP_HAVE_XMMINTRIN_H 0 131 #endif // } FreeBSD customization 132 #define KMP_HAVE_XMMINTRIN_H LIBOMP_HAVE_XMMINTRIN_H 133 #if KMP_ARCH_X86 || KMP_ARCH_X86_64 // FreeBSD customization { 134 #define LIBOMP_HAVE__MM_MALLOC 1 135 #else 136 #define LIBOMP_HAVE__MM_MALLOC 0 137 #endif // } FreeBSD customization 138 #define KMP_HAVE__MM_MALLOC LIBOMP_HAVE__MM_MALLOC 139 #define LIBOMP_HAVE_ALIGNED_ALLOC 1 140 #define KMP_HAVE_ALIGNED_ALLOC LIBOMP_HAVE_ALIGNED_ALLOC 141 #define LIBOMP_HAVE_POSIX_MEMALIGN 1 142 #define KMP_HAVE_POSIX_MEMALIGN LIBOMP_HAVE_POSIX_MEMALIGN 143 #define LIBOMP_HAVE__ALIGNED_MALLOC 0 144 #define KMP_HAVE__ALIGNED_MALLOC LIBOMP_HAVE__ALIGNED_MALLOC 145 146 // Configured cache line based on architecture 147 #if KMP_ARCH_PPC64 148 # define CACHE_LINE 128 149 #elif KMP_ARCH_AARCH64_A64FX 150 # define CACHE_LINE 256 151 #else 152 # define CACHE_LINE 64 153 #endif 154 155 #if ! KMP_32_BIT_ARCH 156 # define BUILD_I8 1 157 #endif 158 159 #define KMP_NESTED_HOT_TEAMS 1 160 #define KMP_ADJUST_BLOCKTIME 1 161 #define BUILD_PARALLEL_ORDERED 1 162 #define KMP_ASM_INTRINS 1 163 #define USE_ITT_BUILD LIBOMP_USE_ITT_NOTIFY 164 #define INTEL_ITTNOTIFY_PREFIX __kmp_itt_ 165 #if ! KMP_MIC 166 # define USE_LOAD_BALANCE 1 167 #endif 168 #if ! (KMP_OS_WINDOWS || KMP_OS_DARWIN) 169 # define KMP_TDATA_GTID 1 170 #endif 171 #if STUBS_LIBRARY 172 # define KMP_STUB 1 173 #endif 174 #if DEBUG_BUILD || RELWITHDEBINFO_BUILD 175 # define KMP_DEBUG 1 176 #endif 177 178 #if KMP_OS_WINDOWS 179 # define KMP_WIN_CDECL 180 #else 181 # define BUILD_TV 182 # define KMP_GOMP_COMPAT 183 #endif 184 185 // use shared memory with dynamic library (except Android, where shm_* 186 // functions don't exist). 187 #if KMP_OS_UNIX && KMP_DYNAMIC_LIB && !__ANDROID__ 188 #define KMP_USE_SHM 189 #endif 190 #endif // KMP_CONFIG_H 191