Home
last modified time | relevance | path

Searched refs:affinity (Results 1 – 18 of 18) sorted by relevance

/llvm-project-15.0.7/clang/test/OpenMP/
H A Dtask_affinity_messages.cpp25 #pragma omp task affinity(arr[0]) in main()
26 #pragma omp task affinity // expected-error {{expected '(' after 'affinity'}} in main()
28 #pragma omp task affinity () // expected-error {{expected expression}} in main()
32 #pragma omp task affinity (S1) // expected-error {{'S1' does not refer to a value}} in main()
33 #pragma omp task affinity(argv[1][1] = '2') in main()
36 #pragma omp task affinity (main) in main()
45 #pragma omp task affinity (argv[-1:0]) in main()
52 #pragma omp task affinity(argv[ : argc][1 : argc - 1]) in main()
53 #pragma omp task affinity(arr[0]) in main()
58 #pragma omp task affinity(([])a) // expected-error {{expected expression}} in main()
[all …]
H A Dtask_affinity_codegen.cpp41 #pragma omp task affinity(([a][10][a])p) in main()
127 #pragma omp task affinity(iterator(i=0:a): p[i]) affinity(a) in main()
H A Dtask_ast_print.cpp37 …evt) depend(iterator(i=0:10:1, T *k = &a:&b), in: c[i], d[(int)(k-&a)]) affinity(iterator(i=0:10:1… in S7()
105 …rivate(argv) shared(d) if (argc > 0) final(S<T>::TS > 0) priority(argc) affinity(argc, argv[b:argc… in tmain()
/llvm-project-15.0.7/openmp/runtime/src/i18n/
H A Den_US.txt226 AffProcListNoType "%1$s: proclist specified, setting affinity type to \"explicit\"."
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."
234 AffNotSupported "%1$s: affinity not supported, using \"disabled\"."
240 OBSOLETE "%1$s: the OS kernel does not support affinity."
242 AffCantGetMaskSize "%1$s: cannot determine proper affinity mask size."
286 ErrorInitializeAffinity "Error initializing affinity - not using affinity."
289 AffNoValidProcID "No valid OS proc IDs specified - not using affinity."
302 CantSetThreadAffMask "Cannot set thread affinity mask."
[all …]
/llvm-project-15.0.7/openmp/runtime/test/affinity/format/
H A Daffinity_values.c60 void list_to_ids(const char* affinity, int* ids, int ids_size) { in list_to_ids() argument
63 aff = strdup(affinity); in list_to_ids()
/llvm-project-15.0.7/clang/test/CodeGen/
H A Ddecl.c71 unsigned char affinity; member
/llvm-project-15.0.7/openmp/docs/design/
H A DRuntimes.rst191 Sets the thread affinity policy to be used for parallel regions at the
206 OpenMP places, thread affinity is disabled, and ``proc_bind`` clauses on
208 not move OpenMP threads between OpenMP places, thread affinity is enabled, and
293 and any affinity API calls.
323 ``type`` is the thread affinity policy to choose.
328 OpenMP thread affinity interface to determine machine topology.
344 for this affinity type.
367 On Windows with multiple processor groups, the norespect affinity modifier
368 is assumed when the process affinity mask equals a single processor group
471 application, as an alternative to writing complicated explicit affinity settings
[all …]
/llvm-project-15.0.7/llvm/lib/Support/Windows/
H A DThreading.inc203 // If there's an affinity mask set, assume the user wants to constrain the
205 // possible for affinity masks to cross CPU group boundaries.
262 // Only one CPU socket in the system or process affinity was set, no need to
H A DProgram.inc340 // Set the affinity mask
/llvm-project-15.0.7/clang/docs/
H A DOpenMPSupport.rst143 | thread affinity | thread affinity | :go…
147 …task affinity | :part:`not upstream` | https://…
/llvm-project-15.0.7/openmp/runtime/src/include/
H A Domp.h.var260 /* Intel affinity API */
272 /* OpenMP 4.0 affinity API */
283 /* OpenMP 4.5 affinity API */
/llvm-project-15.0.7/openmp/runtime/test/
H A Dlit.cfg109 config.available_features.add('affinity')
/llvm-project-15.0.7/llvm/docs/CommandGuide/
H A Dlit.rst265 LIT_XFAIL="affinity/kmp-hw-subset.c;offloading/memory_manager.cpp"
271 libomp :: affinity/kmp-hw-subset.c
282 …LIT_XFAIL="affinity/kmp-hw-subset.c;libomptarget :: x86_64-pc-linux-gnu :: offloading/memory_manag…
/llvm-project-15.0.7/openmp/runtime/
H A DCMakeLists.txt137 "Use Hwloc (http://www.open-mpi.org/projects/hwloc/) library for affinity?")
/llvm-project-15.0.7/openmp/
H A DREADME.rst212 topology detection and affinity.
/llvm-project-15.0.7/llvm/lib/Support/Unix/
H A DProgram.inc187 assert(!AffinityMask && "Starting a process with an affinity mask is "
/llvm-project-15.0.7/mlir/include/mlir/Dialect/OpenMP/
H A DOpenMPOps.td84 The optional $proc_bind_val attribute controls the thread affinity for the execution
523 // TODO: depend, affinity and detach clauses
/llvm-project-15.0.7/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td352 def OMPC_Affinity : Clause<"affinity"> {