Logical Processor Index Meaning | Generated by AI

Home 2026.07

Question: What does “12 (AMD EPYC 7443 24-Core Processor)” mean?

Answer: That’s a line from /proc/cpuinfo or lscpu -e12 is the logical processor index (0-based), and the string is the model name field for that logical CPU.

# see it yourself
grep -A0 "^processor\|^model name" /proc/cpuinfo | head -30
# or cleaner
lscpu -e

Context on the EPYC 7443:

So processor index 12 is just the 13th logical CPU (thread) on that socket — with SMT on, cores 0–23 map to physical cores 0–23 and 24–47 are their sibling threads (or interleaved, depends on topology — check lscpu -e for the actual CORE column to see which physical core owns thread 12).

If you’re pinning training/inference workloads, useful command:

lscpu -e=CPU,CORE,SOCKET,ONLINE
numactl --hardware   # check NUMA node mapping before pinning threads

7443 is a solid CPU for host-side dataloading / preprocessing alongside MI300X — just make sure you pin dataloader workers to cores on the same NUMA node as the GPU’s PCIe root complex to avoid cross-node memory traffic.


Generated by AI. Curating and sharing still takes effort. If you find it useful, feel free to donate. WeChat: @lzwjavaWeChat QR · X: @lzwjava · Say hi 👋

Back Donate