Home
last modified time | relevance | path

Searched refs:sockets (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/openmp/runtime/test/affinity/
H A Dkmp-hw-subset.c53 place_list_t *threads, *cores, *sockets, *openmp_places; in check_places() local
56 sockets = topology_alloc_type_places(TOPOLOGY_OBJ_SOCKET); in check_places()
85 } else if (sockets->num_places <= 0) { in check_places()
91 int ncores_per_socket = cores->num_places / sockets->num_places; in check_places()
92 int nsockets = sockets->num_places; in check_places()
121 topology_free_places(sockets); in check_places()
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A DRNBSocket.cpp57 std::map<int, lldb_private::SocketAddress> sockets; in Listen() local
98 sockets[sock_fd] = address; in Listen()
101 if (sockets.size() == 0) { in Listen()
111 events.resize(sockets.size()); in Listen()
113 for (auto socket : sockets) { in Listen()
133 auto socket_pair = sockets.find(sock_fd); in Listen()
134 if (socket_pair == sockets.end()) in Listen()
170 for (auto socket : sockets) { in Listen()
/llvm-project-15.0.7/openmp/docs/design/
H A DRuntimes.rst171 * ``sockets:`` Each place corresponds to a single socket (consisting of one or more cores).
469 unit starting from top layer downwards. E.g. the number of sockets (top layer
485 | ``num_units`` specifies the requested number of sockets.
551 * ``2s,4c,2t``: Use the first 2 sockets (s0 and s1), the first 4 cores on each
553 * ``2s@2,4c@8,2t``: Skip the first 2 sockets (s0 and s1) and use 2 sockets
556 * ``5C@1,3T``: Use all available sockets, skip the first core and use 5 cores,
558 * ``1T``: Use all cores on all sockets, 1 thread per core.
561 * ``4c:intel_atom,5c:intel_core``: Use all available sockets and use 4
563 * ``2c:eff0@1,3c:eff1``: Use all available sockets, skip the first core with efficiency 0
571 * ``*c:eff1@3``: Use all available sockets, skip the first three cores of
/llvm-project-15.0.7/lld/test/wasm/lto/
H A Dthinlto.ll29 ; Test with all threads, on all cores, on all CPU sockets
/llvm-project-15.0.7/lld/test/ELF/lto/
H A Dthinlto.ll37 ; Test with all threads, on all cores, on all CPU sockets
/llvm-project-15.0.7/lldb/docs/man/
H A Dlldb-server.rst61 Communicate over the given file descriptor instead of sockets.
/llvm-project-15.0.7/llvm/lib/Support/Windows/
H A DThreading.inc268 // need to dispatch threads to other CPU sockets.
/llvm-project-15.0.7/lldb/docs/design/
H A Doverview.rst137 - Various OS primitives like pipes and sockets
/llvm-project-15.0.7/openmp/runtime/src/i18n/
H A Den_US.txt110 Sockets "sockets"
443 AffHWSubsetManySockets "KMP_HW_SUBSET ignored: too many sockets requested."
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp3287 int sockets[2]; /* the pair of socket descriptors */ in LaunchAndConnectToDebugserver() local
3288 if (socketpair(AF_UNIX, SOCK_STREAM, 0, sockets) == -1) { in LaunchAndConnectToDebugserver()
3293 int our_socket = sockets[0]; in LaunchAndConnectToDebugserver()
3294 int gdb_socket = sockets[1]; in LaunchAndConnectToDebugserver()
/llvm-project-15.0.7/llvm/docs/
H A DORCv2.rst910 file descriptors / sockets.
H A DJITLink.rst718 sockets or TCP.
/llvm-project-15.0.7/lldb/docs/
H A Dlldb-gdb-remote.txt31 communication interfaces (like sockets). Below GDB or LLDB will send this
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DAttrDocs.td6099 Handles are a way to identify resources like files, sockets, and processes.