[memprof] Upgrade a unit test to MemProf Version 3 (#117063)
[llvm-project.git] / openmp / runtime / src / i18n / en_US.txt
blob08e837d3dea11ea17d76f3a85e47a80f7dc5398e
1 # en_US.txt #
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 #//===----------------------------------------------------------------------===//
13 # Default messages, embedded into the OpenMP RTL, and source for English catalog.
16 # Compatible changes (which does not require version bumping):
17 #     * Editing message (number and type of placeholders must remain, relative order of
18 #       placeholders may be changed, e.g. "File %1$s line %2$d" may be safely edited to
19 #       "Line %2$d file %1$s").
20 #     * Adding new message to the end of section.
21 # Incompatible changes (version must be bumbed by 1):
22 #     * Introducing new placeholders to existing messages.
23 #     * Changing type of placeholders (e.g. "line %1$d" -> "line %1$s").
24 #     * Rearranging order of messages.
25 #     * Deleting messages.
26 # Use special "OBSOLETE" pseudoidentifier for obsolete entries, which is kept only for backward
27 # compatibility. When version is bumped, do not forget to delete all obsolete entries.
30 # --------------------------------------------------------------------------------------------------
31 -*- META -*-
32 # --------------------------------------------------------------------------------------------------
34 # Meta information about message catalog.
36 Language "English"
37 Country  "USA"
38 LangId   "1033"
39 Version  "2"
40 Revision "20170523"
44 # --------------------------------------------------------------------------------------------------
45 -*- STRINGS -*-
46 # --------------------------------------------------------------------------------------------------
48 # Strings are not complete messages, just fragments. We need to work on it and reduce number of
49 # strings (to zero?).
51 Error                        "Error"
52 UnknownFile                  "(unknown file)"
53 NotANumber                   "not a number"
54 BadUnit                      "bad unit"
55 IllegalCharacters            "illegal characters"
56 ValueTooLarge                "value too large"
57 ValueTooSmall                "value too small"
58 NotMultiple4K                "value is not a multiple of 4k"
59 UnknownTopology              "Unknown processor topology"
60 CantOpenCpuinfo              "Cannot open /proc/cpuinfo"
61 ProcCpuinfo                  "/proc/cpuinfo"
62 NoProcRecords                "cpuinfo file invalid (No processor records)"
63 TooManyProcRecords           "cpuinfo file invalid (Too many processor records)"
64 CantRewindCpuinfo            "Cannot rewind cpuinfo file"
65 LongLineCpuinfo              "cpuinfo file invalid (long line)"
66 TooManyEntries               "cpuinfo file contains too many entries"
67 MissingProcField             "cpuinfo file missing processor field"
68 MissingPhysicalIDField       "cpuinfo file missing physical id field"
69 MissingValCpuinfo            "cpuinfo file invalid (missing val)"
70 DuplicateFieldCpuinfo        "cpuinfo file invalid (duplicate field)"
71 PhysicalIDsNotUnique         "Physical node/pkg/core/thread ids not unique"
72 ApicNotPresent               "APIC not present"
73 InvalidCpuidInfo             "Invalid cpuid info"
74 OBSOLETE                     "APIC ids not unique"
75 InconsistentCpuidInfo        "Inconsistent cpuid info"
76 OutOfHeapMemory              "Out of heap memory"
77 MemoryAllocFailed            "Memory allocation failed"
78 Core                         "core"
79 Thread                       "thread"
80 Package                      "package"
81 Node                         "node"
82 OBSOLETE                     "<undef>"
83 DecodingLegacyAPIC           "decoding legacy APIC ids"
84 OBSOLETE                     "parsing /proc/cpuinfo"
85 NotDefined                   "value is not defined"
86 EffectiveSettings            "Effective settings:"
87 UserSettings                 "User settings:"
88 StorageMapWarning            "warning: pointers or size don't make sense"
89 OBSOLETE                     "CPU"
90 OBSOLETE                     "TPU"
91 OBSOLETE                     "TPUs per package"
92 OBSOLETE                     "HT enabled"
93 OBSOLETE                     "HT disabled"
94 Decodingx2APIC               "decoding x2APIC ids"
95 NoLeaf11Support              "cpuid leaf 11 not supported"
96 NoLeaf4Support               "cpuid leaf 4 not supported"
97 ThreadIDsNotUnique           "thread ids not unique"
98 UsingPthread                 "using pthread info"
99 LegacyApicIDsNotUnique       "legacy APIC ids not unique"
100 x2ApicIDsNotUnique           "x2APIC ids not unique"
101 DisplayEnvBegin              "OPENMP DISPLAY ENVIRONMENT BEGIN"
102 DisplayEnvEnd                "OPENMP DISPLAY ENVIRONMENT END"
103 Device                       "[device]"
104 Host                         "[host]"
105 Tile                         "tile"
106 Tiles                        "tiles"
107 Threads                      "threads"
108 Cores                        "cores"
109 Socket                       "socket"
110 Sockets                      "sockets"
111 Die                          "die"
112 Dice                         "dice"
113 Module                       "module"
114 Modules                      "modules"
115 L1Cache                      "L1 cache"
116 L1Caches                     "L1 caches"
117 L2Cache                      "L2 cache"
118 L2Caches                     "L2 caches"
119 L3Cache                      "L3 cache"
120 L3Caches                     "L3 caches"
121 NumaDomain                   "NUMA domain"
122 NumaDomains                  "NUMA domains"
123 ProcGroup                    "processor group"
124 ProcGroups                   "processor groups"
125 Unknown                      "unknown"
126 NoLeaf31Support              "cpuid leaf 31 not supported"
127 HwlocFailed                  "Hwloc api failure"
128 LLCache                      "LL cache"
129 LLCaches                     "LL caches"
133 # --------------------------------------------------------------------------------------------------
134 -*- FORMATS -*-
135 # --------------------------------------------------------------------------------------------------
137 Info                         "OMP: Info #%1$d: %2$s\n"
138 Warning                      "OMP: Warning #%1$d: %2$s\n"
139 Fatal                        "OMP: Error #%1$d: %2$s\n"
140 SysErr                       "OMP: System error #%1$d: %2$s\n"
141 Hint                         "OMP: Hint %1$s\n"
143 Pragma                       "%1$s pragma (at %2$s:%3$s():%4$s)"
144     # %1 is pragma name (like "parallel" or "masked",
145     # %2 is file name,
146     # %3 is function (routine) name,
147     # %4 is the line number (as string, so "s" type specifier should be used).
151 # --------------------------------------------------------------------------------------------------
152 -*- MESSAGES -*-
153 # --------------------------------------------------------------------------------------------------
155 # Messages of any severity: informational, warning, or fatal.
156 # To maintain message numbers (they are visible to customers), add new messages to the end.
158 # Use following prefixes for messages and hints when appropriate:
159 #    Aff -- Affinity messages.
160 #    Cns -- Consistency check failures (KMP_CONSISTENCY_CHECK).
161 #    Itt -- ITT Notify-related messages.
163 LibraryIsSerial              "Library is \"serial\"."
164 CantOpenMessageCatalog       "Cannot open message catalog \"%1$s\":"
165 WillUseDefaultMessages       "Default messages will be used."
166 LockIsUninitialized          "%1$s: Lock is uninitialized"
167 LockSimpleUsedAsNestable     "%1$s: Lock was initialized as simple, but used as nestable"
168 LockNestableUsedAsSimple     "%1$s: Lock was initialized as nestable, but used as simple"
169 LockIsAlreadyOwned           "%1$s: Lock is already owned by requesting thread"
170 LockStillOwned               "%1$s: Lock is still owned by a thread"
171 LockUnsettingFree            "%1$s: Attempt to release a lock not owned by any thread"
172 LockUnsettingSetByAnother    "%1$s: Attempt to release a lock owned by another thread"
173 StackOverflow                "Stack overflow detected for OpenMP thread #%1$d"
174 StackOverlap                 "Stack overlap detected. "
175 AssertionFailure             "Assertion failure at %1$s(%2$d)."
176 CantRegisterNewThread        "Unable to register a new user thread."
177 DuplicateLibrary             "Initializing %1$s, but found %2$s already initialized."
178 CantOpenFileForReading       "Cannot open file \"%1$s\" for reading:"
179 CantGetEnvVar                "Getting environment variable \"%1$s\" failed:"
180 CantSetEnvVar                "Setting environment variable \"%1$s\" failed:"
181 CantGetEnvironment           "Getting environment failed:"
182 BadBoolValue                 "%1$s=\"%2$s\": Wrong value, boolean expected."
183 SSPNotBuiltIn                "No Helper Thread support built in this OMP library."
184 SPPSotfTerminateFailed       "Helper thread failed to soft terminate."
185 BufferOverflow               "Buffer overflow detected."
186 RealTimeSchedNotSupported    "Real-time scheduling policy is not supported."
187 RunningAtMaxPriority         "OMP application is running at maximum priority with real-time scheduling policy. "
188 CantChangeMonitorPriority    "Changing priority of the monitor thread failed:"
189 MonitorWillStarve            "Deadlocks are highly possible due to monitor thread starvation."
190 CantSetMonitorStackSize      "Unable to set monitor thread stack size to %1$lu bytes:"
191 CantSetWorkerStackSize       "Unable to set OMP thread stack size to %1$lu bytes:"
192 CantInitThreadAttrs          "Thread attribute initialization failed:"
193 CantDestroyThreadAttrs       "Thread attribute destroying failed:"
194 CantSetWorkerState           "OMP thread joinable state setting failed:"
195 CantSetMonitorState          "Monitor thread joinable state setting failed:"
196 NoResourcesForWorkerThread   "System unable to allocate necessary resources for OMP thread:"
197 NoResourcesForMonitorThread  "System unable to allocate necessary resources for the monitor thread:"
198 CantTerminateWorkerThread    "Unable to terminate OMP thread:"
199 ScheduleKindOutOfRange       "Wrong schedule type %1$d, see <omp.h> or <omp_lib.h> file for the list of values supported."
200 UnknownSchedulingType        "Unknown scheduling type \"%1$d\"."
201 InvalidValue                 "%1$s value \"%2$s\" is invalid."
202 SmallValue                   "%1$s value \"%2$s\" is too small."
203 LargeValue                   "%1$s value \"%2$s\" is too large."
204 StgInvalidValue              "%1$s: \"%2$s\" is an invalid value; ignored."
205 BarrReleaseValueInvalid      "%1$s release value \"%2$s\" is invalid."
206 BarrGatherValueInvalid       "%1$s gather value \"%2$s\" is invalid."
207 OBSOLETE                     "%1$s supported only on debug builds; ignored."
208 ParRangeSyntax               "Syntax error: Usage: %1$s=[ routine=<func> | filename=<file> | range=<lb>:<ub> "
209                              "| excl_range=<lb>:<ub> ],..."
210 UnbalancedQuotes             "Unbalanced quotes in %1$s."
211 EmptyString                  "Empty string specified for %1$s; ignored."
212 LongValue                    "%1$s value is too long; ignored."
213 InvalidClause                "%1$s: Invalid clause in \"%2$s\"."
214 EmptyClause                  "Empty clause in %1$s."
215 InvalidChunk                 "%1$s value \"%2$s\" is invalid chunk size."
216 LargeChunk                   "%1$s value \"%2$s\" is to large chunk size."
217 IgnoreChunk                  "%1$s value \"%2$s\" is ignored."
218 CantGetProcFreq              "Cannot get processor frequency, using zero KMP_ITT_PREPARE_DELAY."
219 EnvParallelWarn              "%1$s must be set prior to first parallel region; ignored."
220 AffParamDefined              "%1$s: parameter has been specified already, ignoring \"%2$s\"."
221 AffInvalidParam              "%1$s: parameter invalid, ignoring \"%2$s\"."
222 AffManyParams                "%1$s: too many integer parameters specified, ignoring \"%2$s\"."
223 AffManyParamsForLogic        "%1$s: too many integer parameters specified for logical or physical type, ignoring \"%2$d\"."
224 AffNoParam                   "%1$s: '%2$s' type does not take any integer parameters, ignoring them."
225 AffNoProcList                "%1$s: proclist not specified with explicit affinity type, using \"none\"."
226 AffProcListNoType            "%1$s: proclist specified, setting affinity type to \"explicit\"."
227 AffProcListNotExplicit       "%1$s: proclist specified without \"explicit\" affinity type, proclist ignored."
228 AffSyntaxError               "%1$s: syntax error, not using affinity."
229 AffZeroStride                "%1$s: range error (zero stride), not using affinity."
230 AffStartGreaterEnd           "%1$s: range error (%2$d > %3$d), not using affinity."
231 AffStrideLessZero            "%1$s: range error (%2$d < %3$d & stride < 0), not using affinity."
232 AffRangeTooBig               "%1$s: range error ((%2$d-%3$d)/%4$d too big), not using affinity."
233 OBSOLETE                     "%1$s: %2$s is defined. %3$s will be ignored."
234 AffNotSupported              "%1$s: affinity not supported, using \"disabled\"."
235 OBSOLETE                     "%1$s: affinity only supported for Intel(R) Architecture Processors."
236 GetAffSysCallNotSupported    "%1$s: getaffinity system call not supported."
237 SetAffSysCallNotSupported    "%1$s: setaffinity system call not supported."
238 OBSOLETE                     "%1$s: pthread_aff_set_np call not found."
239 OBSOLETE                     "%1$s: pthread_get_num_resources_np call not found."
240 OBSOLETE                     "%1$s: the OS kernel does not support affinity."
241 OBSOLETE                     "%1$s: pthread_get_num_resources_np returned %2$d."
242 AffCantGetMaskSize           "%1$s: cannot determine proper affinity mask size."
243 ParseSizeIntWarn             "%1$s=\"%2$s\": %3$s."
244 ParseExtraCharsWarn          "%1$s: extra trailing characters ignored: \"%2$s\"."
245 UnknownForceReduction        "%1$s: unknown method \"%2$s\"."
246 TimerUseGettimeofday         "KMP_STATS_TIMER: clock_gettime is undefined, using gettimeofday."
247 TimerNeedMoreParam           "KMP_STATS_TIMER: \"%1$s\" needs additional parameter, e.g. 'clock_gettime,2'. Using gettimeofday."
248 TimerInvalidParam            "KMP_STATS_TIMER: clock_gettime parameter \"%1$s\" is invalid, using gettimeofday."
249 TimerGettimeFailed           "KMP_STATS_TIMER: clock_gettime failed, using gettimeofday."
250 TimerUnknownFunction         "KMP_STATS_TIMER: clock function unknown (ignoring value \"%1$s\")."
251 UnknownSchedTypeDetected     "Unknown scheduling type detected."
252 DispatchManyThreads          "Too many threads to use analytical guided scheduling - switching to iterative guided scheduling."
253 IttLookupFailed              "ittnotify: Lookup of \"%1$s\" function in \"%2$s\" library failed."
254 IttLoadLibFailed             "ittnotify: Loading \"%1$s\" library failed."
255 IttAllNotifDisabled          "ittnotify: All itt notifications disabled."
256 IttObjNotifDisabled          "ittnotify: Object state itt notifications disabled."
257 IttMarkNotifDisabled         "ittnotify: Mark itt notifications disabled."
258 IttUnloadLibFailed           "ittnotify: Unloading \"%1$s\" library failed."
259 CantFormThrTeam              "Cannot form a team with %1$d threads, using %2$d instead."
260 ActiveLevelsNegative         "Requested number of active parallel levels \"%1$d\" is negative; ignored."
261 ActiveLevelsExceedLimit      "Requested number of active parallel levels \"%1$d\" exceeds supported limit; "
262                              "the following limit value will be used: \"%1$d\"."
263 SetLibraryIncorrectCall      "kmp_set_library must only be called from the top level serial thread; ignored."
264 FatalSysError                "Fatal system error detected."
265 OutOfHeapMemory              "Out of heap memory."
266 OBSOLETE                     "Clearing __KMP_REGISTERED_LIB env var failed."
267 OBSOLETE                     "Registering library with env var failed."
268 Using_int_Value              "%1$s value \"%2$d\" will be used."
269 Using_uint_Value             "%1$s value \"%2$u\" will be used."
270 Using_uint64_Value           "%1$s value \"%2$s\" will be used."
271 Using_str_Value              "%1$s value \"%2$s\" will be used."
272 BarrierPatternOverride       "Mixing other barrier patterns with dist is prohibited. Using dist for all barrier patterns."
273 MaxValueUsing                "%1$s maximum value \"%2$d\" will be used."
274 MinValueUsing                "%1$s minimum value \"%2$d\" will be used."
275 MemoryAllocFailed            "Memory allocation failed."
276 FileNameTooLong              "File name too long."
277 OBSOLETE                     "Lock table overflow."
278 ManyThreadsForTPDirective    "Too many threads to use threadprivate directive."
279 AffinityInvalidMask          "%1$s: invalid mask."
280 WrongDefinition              "Wrong definition."
281 TLSSetValueFailed            "Windows* OS: TLS Set Value failed."
282 TLSOutOfIndexes              "Windows* OS: TLS out of indexes."
283 OBSOLETE                     "PDONE directive must be nested within a DO directive."
284 CantGetNumAvailCPU           "Cannot get number of available CPUs."
285 AssumedNumCPU                "Assumed number of CPUs is 2."
286 ErrorInitializeAffinity      "Error initializing affinity - not using affinity."
287 AffThreadsMayMigrate         "Threads may migrate across all available OS procs (granularity setting too coarse)."
288 AffIgnoreInvalidProcID       "Ignoring invalid OS proc ID %1$d."
289 AffNoValidProcID             "No valid OS proc IDs specified - not using affinity."
290 UsingFlatOS                  "%1$s - using \"flat\" OS <-> physical proc mapping."
291 UsingFlatOSFile              "%1$s: %2$s - using \"flat\" OS <-> physical proc mapping."
292 UsingFlatOSFileLine          "%1$s, line %2$d: %3$s - using \"flat\" OS <-> physical proc mapping."
293 FileMsgExiting               "%1$s: %2$s - exiting."
294 FileLineMsgExiting           "%1$s, line %2$d: %3$s - exiting."
295 ConstructIdentInvalid        "Construct identifier invalid."
296 ThreadIdentInvalid           "Thread identifier invalid."
297 RTLNotInitialized            "runtime library not initialized."
298 TPCommonBlocksInconsist      "Inconsistent THREADPRIVATE common block declarations are non-conforming "
299                              "and are unsupported. Either all threadprivate common blocks must be declared "
300                              "identically, or the largest instance of each threadprivate common block "
301                              "must be referenced first during the run."
302 CantSetThreadAffMask         "Cannot set thread affinity mask."
303 CantSetThreadPriority        "Cannot set thread priority."
304 CantCreateThread             "Cannot create thread."
305 CantCreateEvent              "Cannot create event."
306 CantSetEvent                 "Cannot set event."
307 CantCloseHandle              "Cannot close handle."
308 UnknownLibraryType           "Unknown library type: %1$d."
309 ReapMonitorError             "Monitor did not reap properly."
310 ReapWorkerError              "Worker thread failed to join."
311 ChangeThreadAffMaskError     "Cannot change thread affinity mask."
312 ThreadsMigrate               "%1$s: Threads may migrate across %2$d innermost levels of machine"
313 DecreaseToThreads            "%1$s: decrease to %2$d threads"
314 IncreaseToThreads            "%1$s: increase to %2$d threads"
315 OBSOLETE                     "%1$s: Internal thread %2$d bound to OS proc set %3$s"
316 AffCapableUseCpuinfo         "%1$s: Affinity capable, using cpuinfo file"
317 AffUseGlobCpuid              "%1$s: Affinity capable, using global cpuid info"
318 AffCapableUseFlat            "%1$s: Affinity capable, using default \"flat\" topology"
319 AffNotCapableUseLocCpuid     "%1$s: Affinity not capable, using local cpuid info"
320 AffNotCapableUseCpuinfo      "%1$s: Affinity not capable, using cpuinfo file"
321 AffFlatTopology              "%1$s: Affinity not capable, assuming \"flat\" topology"
322 InitOSProcSetRespect         "%1$s: Initial OS proc set respected: %2$s"
323 InitOSProcSetNotRespect      "%1$s: Initial OS proc set not respected: %2$s"
324 AvailableOSProc              "%1$s: %2$d available OS procs"
325 Uniform                      "%1$s: Uniform topology"
326 NonUniform                   "%1$s: Nonuniform topology"
327 Topology                     "%1$s: %2$d packages x %3$d cores/pkg x %4$d threads/core (%5$d total cores)"
328 OBSOLETE                     "%1$s: OS proc to physical thread map ([] => level not in map):"
329 OSProcToPackage              "%1$s: OS proc <n> maps to <n>th package core 0"
330 OBSOLETE                     "%1$s: OS proc %2$d maps to package %3$d [core %4$d] [thread %5$d]"
331 OBSOLETE                     "%1$s: OS proc %2$d maps to [package %3$d] [core %4$d] [thread %5$d]"
332 OBSOLETE                     "%1$s: OS proc %2$d maps to [package %3$d] [core %4$d] thread %5$d"
333 OBSOLETE                     "%1$s: OS proc %2$d maps to [package %3$d] core %4$d [thread %5$d]"
334 OBSOLETE                     "%1$s: OS proc %2$d maps to package %3$d [core %4$d] [thread %5$d]"
335 OBSOLETE                     "%1$s: OS proc %2$d maps to [package %3$d] core %4$d thread %5$d"
336 OBSOLETE                     "%1$s: OS proc %2$d maps to package %3$d core %4$d [thread %5$d]"
337 OBSOLETE                     "%1$s: OS proc %2$d maps to package %3$d [core %4$d] thread %5$d"
338 OBSOLETE                     "%1$s: OS proc %2$d maps to package %3$d core %4$d thread %5$d"
339 OSProcMapToPack              "%1$s: OS proc %2$d maps to %3$s"
340 OBSOLETE                     "%1$s: Internal thread %2$d changed affinity mask from %3$s to %4$s"
341 OBSOLETE                     "%1$s: OS proc %2$d maps to package %3$d, CPU %4$d, TPU %5$d"
342 OBSOLETE                     "%1$s: OS proc %2$d maps to package %3$d, CPU %4$d"
343 OBSOLETE                     "%1$s: HT enabled; %2$d packages; %3$d TPU; %4$d TPUs per package"
344 OBSOLETE                     "%1$s: HT disabled; %2$d packages"
345 BarriersInDifferentOrder     "Threads encountered barriers in different order. "
346 FunctionError                "Function %1$s failed:"
347 TopologyExtra                "%1$s: %2$s packages x %3$d cores/pkg x %4$d threads/core (%5$d total cores)"
348 WrongMessageCatalog          "Incompatible message catalog \"%1$s\": Version \"%2$s\" found, version \"%3$s\" expected."
349 StgIgnored                   "%1$s: ignored because %2$s has been defined"
350                                  # %1, -- name of ignored variable, %2 -- name of variable with higher priority.
351 OBSOLETE                     "%1$s: overrides %3$s specified before"
352                                  # %1, %2 -- name and value of the overriding variable, %3 -- name of overridden variable.
353 AffTilesNoHWLOC              "%1$s: Tiles are only supported if KMP_TOPOLOGY_METHOD=hwloc, using granularity=package instead"
354 AffTilesNoTiles              "%1$s: Tiles requested but were not detected on this HW, using granularity=package instead"
355 TopologyExtraTile            "%1$s: %2$d packages x %3$d tiles/pkg x %4$d cores/tile x %5$d threads/core (%6$d total cores)"
356 TopologyExtraNode            "%1$s: %2$d packages x %3$d nodes/pkg x %4$d cores/node x %5$d threads/core (%6$d total cores)"
357 TopologyExtraNoTi            "%1$s: %2$d packages x %3$d nodes/pkg x %4$d tiles/node x %5$d cores/tile x %6$d threads/core (%7$d total cores)"
358 OmptOutdatedWorkshare        "OMPT: Cannot determine workshare type; using the default (loop) instead. "
359                              "This issue is fixed in an up-to-date compiler."
360 OmpNoAllocator               "Allocator %1$s is not available, will use default allocator."
361 TopologyGeneric              "%1$s: %2$s (%3$d total cores)"
362 AffGranularityBad            "%1$s: granularity setting: %2$s does not exist in topology.  Using granularity=%3$s instead."
363 TopologyHybrid               "%1$s: hybrid core type detected: %2$d %3$s cores."
364 TopologyHybridCoreEff        "%1$s:   %2$d with core efficiency %3$d."
366 # --- OpenMP errors detected at runtime ---
368 #    %1 is the name of OpenMP construct (formatted with "Pragma" format).
370 CnsBoundToWorksharing        "%1$s must be bound to a work-sharing or work-queuing construct with an \"ordered\" clause"
371 CnsDetectedEnd               "Detected end of %1$s without first executing a corresponding beginning."
372 CnsIterationRangeTooLarge    "Iteration range too large in %1$s."
373 CnsLoopIncrZeroProhibited    "%1$s must not have a loop increment that evaluates to zero."
375 #    %1 is the name of the first OpenMP construct, %2 -- the name of the second one (both formatted with "Pragma" format).
377 CnsExpectedEnd               "Expected end of %1$s; %2$s, however, has most recently begun execution."
378 CnsInvalidNesting            "%1$s is incorrectly nested within %2$s"
379 CnsMultipleNesting           "%1$s cannot be executed multiple times during execution of one parallel iteration/section of %2$s"
380 CnsNestingSameName           "%1$s is incorrectly nested within %2$s of the same name"
381 CnsNoOrderedClause           "%1$s is incorrectly nested within %2$s that does not have an \"ordered\" clause"
382 CnsNotInTaskConstruct        "%1$s is incorrectly nested within %2$s but not within any of its \"task\" constructs"
383 CnsThreadsAtBarrier          "One thread at %1$s while another thread is at %2$s."
385 # New errors
386 CantConnect                  "Cannot connect to %1$s"
387 CantConnectUsing             "Cannot connect to %1$s - Using %2$s"
388 LibNotSupport                "%1$s does not support %2$s. Continuing without using %2$s."
389 LibNotSupportFor             "%1$s does not support %2$s for %3$s. Continuing without using %2$s."
390 StaticLibNotSupport          "Static %1$s does not support %2$s. Continuing without using %2$s."
391 OBSOLETE                     "KMP_DYNAMIC_MODE=irml cannot be used with KMP_USE_IRML=0"
392 IttUnknownGroup              "ittnotify: Unknown group \"%2$s\" specified in environment variable \"%1$s\"."
393 IttEnvVarTooLong             "ittnotify: Environment variable \"%1$s\" too long: Actual lengths is %2$lu, max allowed length is %3$lu."
394 OBSOLETE                     "%1$s: Affinity capable, using global cpuid leaf 11 info"
395 OBSOLETE                     "%1$s: Affinity not capable, using local cpuid leaf 11 info"
396 AffInfoStr                   "%1$s: %2$s."
397 AffInfoStrStr                "%1$s: %2$s - %3$s."
398 OSProcToPhysicalThreadMap    "%1$s: OS proc to physical thread map:"
399 AffUsingFlatOS               "%1$s: using \"flat\" OS <-> physical proc mapping."
400 AffParseFilename             "%1$s: parsing %2$s."
401 MsgExiting                   "%1$s - exiting."
402 IncompatibleLibrary          "Incompatible %1$s library with version %2$s found."
403 IttFunctionError             "ittnotify: Function %1$s failed:"
404 IttUnknownError              "ittnotify: Error #%1$d."
405 EnvMiddleWarn                "%1$s must be set prior to first parallel region or certain API calls; ignored."
406 CnsLockNotDestroyed          "Lock initialized at %1$s(%2$d) was not destroyed"
407                                  # %1, %2, %3, %4 -- file, line, func, col
408 CantLoadBalUsing             "Cannot determine machine load balance - Using %1$s"
409 AffNotCapableUsePthread      "%1$s: Affinity not capable, using pthread info"
410 AffUsePthread                "%1$s: Affinity capable, using pthread info"
411 OBSOLETE                     "Loading \"%1$s\" library failed:"
412 OBSOLETE                     "Lookup of \"%1$s\" function failed:"
413 OBSOLETE                     "Buffer too small."
414 OBSOLETE                     "Error #%1$d."
415 NthSyntaxError               "%1$s: Invalid symbols found. Check the value \"%2$s\"."
416 NthSpacesNotAllowed          "%1$s: Spaces between digits are not allowed \"%2$s\"."
417 AffStrParseFilename          "%1$s: %2$s - parsing %3$s."
418 OBSOLETE                     "%1$s cannot be specified via kmp_set_defaults() on this machine because it has more than one processor group."
419 AffTypeCantUseMultGroups     "Cannot use affinity type \"%1$s\" with multiple Windows* OS processor groups, using \"%2$s\"."
420 AffGranCantUseMultGroups     "Cannot use affinity granularity \"%1$s\" with multiple Windows* OS processor groups, using \"%2$s\"."
421 AffWindowsProcGroupMap       "%1$s: Mapping Windows* OS processor group <i> proc <j> to OS proc 64*<i>+<j>."
422 AffOSProcToGroup             "%1$s: OS proc %2$d maps to Windows* OS processor group %3$d proc %4$d"
423 AffBalancedNotAvail          "%1$s: Affinity balanced is not available."
424 OBSOLETE                     "%1$s: granularity=core will be used."
425 EnvLockWarn                  "%1$s must be set prior to first OMP lock call or critical section; ignored."
426 FutexNotSupported            "futex system call not supported; %1$s=%2$s ignored."
427 AffGranUsing                 "%1$s: granularity=%2$s will be used."
428 AffHWSubsetInvalid           "%1$s: invalid value \"%2$s\", valid format is \"N<item>[@N][,...][,Nt] "
429                              "(<item> can be S, N, L2, C, T  for Socket, NUMA Node, L2 Cache, Core, Thread)\"."
430 AffHWSubsetUnsupported       "KMP_HW_SUBSET ignored: unsupported architecture."
431 AffHWSubsetManyCores         "KMP_HW_SUBSET ignored: too many cores requested."
432 SyntaxErrorUsing             "%1$s: syntax error, using %2$s."
433 AdaptiveNotSupported         "%1$s: Adaptive locks are not supported; using queuing."
434 EnvSyntaxError               "%1$s: Invalid symbols found. Check the value \"%2$s\"."
435 EnvSpacesNotAllowed          "%1$s: Spaces between digits are not allowed \"%2$s\"."
436 BoundToOSProcSet             "%1$s: pid %2$d tid %3$d thread %4$d bound to OS proc set %5$s"
437 CnsLoopIncrIllegal           "%1$s error: parallel loop increment and condition are inconsistent."
438 NoGompCancellation           "libgomp cancellation is not currently supported."
439 AffHWSubsetNonUniform        "KMP_HW_SUBSET ignored: non-uniform topology."
440 AffHWSubsetNonThreeLevel     "KMP_HW_SUBSET ignored: only three-level topology is supported."
441 AffGranTopGroup              "%1$s: granularity=%2$s is not supported with KMP_TOPOLOGY_METHOD=group. Using \"granularity=fine\"."
442 AffGranGroupType             "%1$s: granularity=group is not supported with KMP_AFFINITY=%2$s. Using \"granularity=core\"."
443 AffHWSubsetManySockets       "KMP_HW_SUBSET ignored: too many sockets requested."
444 AffHWSubsetDeprecated        "KMP_HW_SUBSET \"o\" offset designator deprecated, please use @ prefix for offset value."
445 AffUsingHwloc                "%1$s: Affinity capable, using hwloc."
446 AffIgnoringHwloc             "%1$s: Ignoring hwloc mechanism."
447 AffHwlocErrorOccurred        "%1$s: Hwloc failed in %2$s. Relying on internal affinity mechanisms."
448 EnvSerialWarn                "%1$s must be set prior to OpenMP runtime library initialization; ignored."
449 EnvMwaitWarn                 "You have enabled the use of umonitor/umwait. If the CPU doesn't have that enabled "
450                              "you'll get an illegal instruction exception."
451 EnvVarDeprecated             "%1$s variable deprecated, please use %2$s instead."
452 RedMethodNotSupported        "KMP_FORCE_REDUCTION: %1$s method is not supported; using critical."
453 AffHWSubsetNoHWLOC           "KMP_HW_SUBSET ignored: unsupported item requested for non-HWLOC topology method (KMP_TOPOLOGY_METHOD)"
454 AffHWSubsetManyNodes         "KMP_HW_SUBSET ignored: too many NUMA Nodes requested."
455 AffHWSubsetManyTiles         "KMP_HW_SUBSET ignored: too many L2 Caches requested."
456 AffHWSubsetManyProcs         "KMP_HW_SUBSET ignored: too many Procs requested."
457 HierSchedInvalid             "Hierarchy ignored: unsupported level: %1$s."
458 AffFormatDefault             "OMP: pid %1$s tid %2$s thread %3$s bound to OS proc set {%4$s}"
459 APIDeprecated                "%1$s routine deprecated, please use %2$s instead."
460 GompFeatureNotSupported      "libgomp compatibility layer does not support OpenMP feature: %1$s"
461 AffHWSubsetManyDies          "KMP_HW_SUBSET ignored: too many Dies requested."
462 AffUseGlobCpuidL             "%1$s: Affinity capable, using global cpuid leaf %2$d info"
463 AffNotCapableUseLocCpuidL    "%1$s: Affinity not capable, using local cpuid leaf %2$d info"
464 AffNotUsingHwloc             "%1$s: Affinity not capable, using hwloc."
465 UserDirectedError            "%1$s: Encountered user-directed error: %2$s."
466 UserDirectedWarning          "%1$s: Encountered user-directed warning: %2$s."
467 FailedToCreateTeam           "Failed to create teams between lower bound (%1$d) and upper bound (%2$d)."
468 AffHWSubsetManyGeneric       "KMP_HW_SUBSET ignored: %1$s: too many requested."
469 AffHWSubsetNotExistGeneric   "KMP_HW_SUBSET ignored: %1$s: level not detected in machine topology."
470 AffHWSubsetEqvLayers         "KMP_HW_SUBSET ignored: %1$s, %2$s: layers are equivalent, please only specify one."
471 AffHWSubsetOutOfOrder        "KMP_HW_SUBSET ignored: %1$s layer should come after %2$s."
472 AffEqualTopologyTypes        "%1$s: topology layer \"%2$s\" is equivalent to \"%3$s\"."
473 AffGranTooCoarseProcGroup    "%1$s: granularity=%2$s is too coarse, setting granularity=group."
474 StgDeprecatedValue           "%1$s: \"%2$s\" value is deprecated. Please use \"%3$s\" instead."
475 NumTeamsNotPositive          "num_teams value must be positive, it is %1$d, using %2$d instead."
476 AffHWSubsetIncompat          "KMP_HW_SUBSET ignored: %1$s, %2$s: attributes are ambiguous, please only specify one."
477 AffHWSubsetAttrRepeat        "KMP_HW_SUBSET ignored: %1$s: attribute specified more than once."
478 AffHWSubsetAttrInvalid       "KMP_HW_SUBSET ignored: %1$s: attribute value %2$s is invalid."
479 AffHWSubsetAllFiltered       "KMP_HW_SUBSET ignored: all hardware resources would be filtered, please reduce the filter."
480 AffHWSubsetAttrsNonHybrid    "KMP_HW_SUBSET ignored: Too many attributes specified. This machine is not a hybrid architecutre."
481 AffHWSubsetIgnoringAttr      "KMP_HW_SUBSET: ignoring %1$s attribute. This machine is not a hybrid architecutre."
482 TargetMemNotAvailable        "Target memory not available, will use default allocator."
483 AffIgnoringNonHybrid         "%1$s ignored: This machine is not a hybrid architecutre. Using \"%2$s\" instead."
484 AffIgnoringNotAvailable      "%1$s ignored: %2$s is not available. Using \"%3$s\" instead."
486 # --------------------------------------------------------------------------------------------------
487 -*- HINTS -*-
488 # --------------------------------------------------------------------------------------------------
490 # Hints. Hint may be printed after a message. Usually it is longer explanation text or suggestion.
491 # To maintain hint numbers (they are visible to customers), add new hints to the end.
493 SubmitBugReport              "Please submit a bug report with this message, compile and run "
494                              "commands used, and machine configuration info including native "
495                              "compiler and operating system versions. Faster response will be "
496                              "obtained by including all program sources. For information on "
497                              "submitting this issue, please see "
498                              "https://github.com/llvm/llvm-project/issues/."
499 OBSOLETE                     "Check NLSPATH environment variable, its value is \"%1$s\"."
500 ChangeStackLimit             "Please try changing the shell stack limit or adjusting the "
501                              "OMP_STACKSIZE environment variable."
502 Unset_ALL_THREADS            "Consider unsetting KMP_DEVICE_THREAD_LIMIT (KMP_ALL_THREADS), KMP_TEAMS_THREAD_LIMIT, and OMP_THREAD_LIMIT (if any are set)."
503 Set_ALL_THREADPRIVATE        "Consider setting KMP_ALL_THREADPRIVATE to a value larger than %1$d."
504 PossibleSystemLimitOnThreads "This could also be due to a system-related limit on the number of threads."
505 DuplicateLibrary             "This means that multiple copies of the OpenMP runtime have been "
506                              "linked into the program. That is dangerous, since it can degrade "
507                              "performance or cause incorrect results. "
508                              "The best thing to do is to ensure that only a single OpenMP runtime is "
509                              "linked into the process, e.g. by avoiding static linking of the OpenMP "
510                              "runtime in any library. As an unsafe, unsupported, undocumented workaround "
511                              "you can set the environment variable KMP_DUPLICATE_LIB_OK=TRUE to allow "
512                              "the program to continue to execute, but that may cause crashes or "
513                              "silently produce incorrect results. "
514                              "For more information, please see http://openmp.llvm.org/"
515 NameComesFrom_CPUINFO_FILE   "This name is specified in environment variable KMP_CPUINFO_FILE."
516 NotEnoughMemory              "Seems application required too much memory."
517 ValidBoolValues              "Use \"0\", \"FALSE\". \".F.\", \"off\", \"no\" as false values, "
518                              "\"1\", \"TRUE\", \".T.\", \"on\", \"yes\" as true values."
519 BufferOverflow               "Perhaps too many threads."
520 RunningAtMaxPriority         "Decrease priority of application. "
521                              "This will allow the monitor thread run at higher priority than other threads."
522 ChangeMonitorStackSize       "Try changing KMP_MONITOR_STACKSIZE or the shell stack limit."
523 ChangeWorkerStackSize        "Try changing OMP_STACKSIZE and/or the shell stack limit."
524 IncreaseWorkerStackSize      "Try increasing OMP_STACKSIZE or the shell stack limit."
525 DecreaseWorkerStackSize      "Try decreasing OMP_STACKSIZE."
526 Decrease_NUM_THREADS         "Try decreasing the value of OMP_NUM_THREADS."
527 IncreaseMonitorStackSize     "Try increasing KMP_MONITOR_STACKSIZE."
528 DecreaseMonitorStackSize     "Try decreasing KMP_MONITOR_STACKSIZE."
529 DecreaseNumberOfThreadsInUse "Try decreasing the number of threads in use simultaneously."
530 DefaultScheduleKindUsed      "Will use default schedule type (%1$s)."
531 GetNewerLibrary              "It could be a result of using an older OMP library with a newer "
532                              "compiler or memory corruption. You may check the proper OMP library "
533                              "is linked to the application."
534 CheckEnvVar                  "Check %1$s environment variable, its value is \"%2$s\"."
535 OBSOLETE                     "You may want to use an %1$s library that supports %2$s interface with version %3$s."
536 OBSOLETE                     "You may want to use an %1$s library with version %2$s."
537 BadExeFormat                 "System error #193 is \"Bad format of EXE or DLL file\". "
538                              "Usually it means the file is found, but it is corrupted or "
539                              "a file for another architecture. "
540                              "Check whether \"%1$s\" is a file for %2$s architecture."
541 SystemLimitOnThreads         "System-related limit on the number of threads."
542 SetNewBound                  "Try setting new bounds (preferably less than or equal to %1$d) for num_teams clause."
543 ValidValuesRange             "Valid values are from %1$d to %2$d."
546 # --------------------------------------------------------------------------------------------------
547 # end of file #
548 # --------------------------------------------------------------------------------------------------