Home
last modified time | relevance | path

Searched refs:Affinity (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/Windows/
H A DThreading.inc138 uint64_t Affinity;
181 G.Affinity = El.GroupInfo[J].ActiveProcessorMask;
220 NewG.Affinity = ProcessAffinityMask;
288 GROUP_AFFINITY Affinity{};
289 Affinity.Group = Groups[*Socket].ID;
290 Affinity.Mask = Groups[*Socket].Affinity;
291 SetThreadGroupAffinity(GetCurrentThread(), &Affinity, nullptr);
295 GROUP_AFFINITY Affinity{};
296 GetThreadGroupAffinity(GetCurrentThread(), &Affinity);
304 return G.ID < Affinity.Group ? G.AllThreads : 0;
[all …]
/llvm-project-15.0.7/llvm/unittests/Support/
H A DThreadPool.cpp431 BitVector Affinity; in TEST_F() local
432 Affinity.resize(4); in TEST_F()
433 Affinity.set(0, 4); // Use CPUs 0,1,2,3. in TEST_F()
435 &ExecutionFailed, nullptr, &Affinity); in TEST_F()
/llvm-project-15.0.7/openmp/runtime/src/i18n/
H A Den_US.txt159 # Aff -- Affinity messages.
316 AffCapableUseCpuinfo "%1$s: Affinity capable, using cpuinfo file"
317 AffUseGlobCpuid "%1$s: Affinity capable, using global cpuid info"
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"
409 AffNotCapableUsePthread "%1$s: Affinity not capable, using pthread info"
410 AffUsePthread "%1$s: Affinity capable, using pthread info"
423 AffBalancedNotAvail "%1$s: Affinity balanced is not available."
445 AffUsingHwloc "%1$s: Affinity capable, using hwloc."
[all …]
/llvm-project-15.0.7/llvm/lib/Support/
H A DHost.cpp1548 cpu_set_t Affinity, Enabled; in computeHostNumPhysicalCores() local
1549 if (sched_getaffinity(0, sizeof(Affinity), &Affinity) != 0) in computeHostNumPhysicalCores()
1583 if (CPU_ISSET(CurProcessor, &Affinity)) in computeHostNumPhysicalCores()
1591 cpu_set_t Affinity; in computeHostNumPhysicalCores() local
1592 if (sched_getaffinity(0, sizeof(Affinity), &Affinity) == 0) in computeHostNumPhysicalCores()
1593 return CPU_COUNT(&Affinity); in computeHostNumPhysicalCores()
/llvm-project-15.0.7/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h331 PointerAffinity Affinity = PointerAffinity::None; member
464 PointerAffinity Affinity = PointerAffinity::None; member
548 PointerAffinity Affinity = PointerAffinity::None; member
/llvm-project-15.0.7/llvm/test/tools/llvm-objdump/COFF/
H A Dprivate-headers-old.test73 LOADCFG-NEXT: Process Affinity Mask: 0
/llvm-project-15.0.7/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp204 else if (Affinity == PointerAffinity::Pointer) in output()
509 switch (Affinity) { in outputPre()
H A DMicrosoftDemangle.cpp2014 std::tie(Pointer->Quals, Pointer->Affinity) = in demanglePointerType()
2032 std::tie(Pointer->Quals, Pointer->Affinity) = in demangleMemberPointerType()
2034 assert(Pointer->Affinity == PointerAffinity::Pointer); in demangleMemberPointerType()
2251 TPRN->Affinity = PointerAffinity::Pointer; in demangleTemplateParameterList()
2258 TPRN->Affinity = PointerAffinity::Reference; in demangleTemplateParameterList()
/llvm-project-15.0.7/openmp/runtime/src/include/
H A Domp.h.var452 /* OpenMP 5.0 Affinity Format */
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dcheck-omp-structure.cpp1804 CHECK_SIMPLE_CLAUSE(Affinity, OMPC_affinity) in CHECK_SIMPLE_CLAUSE()