From d521dcdbcce68f7f87fceccde5223c57e9b66e70 Mon Sep 17 00:00:00 2001 From: "Md. Mekayel Anik" <32511246+MekayelAnik@users.noreply.github.com> Date: Wed, 8 Apr 2026 06:42:07 +0600 Subject: [PATCH] docs: clarify SMT and OMP acronyms in CpuPlatform (#39085) --- vllm/platforms/cpu.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vllm/platforms/cpu.py b/vllm/platforms/cpu.py index af7bee041..cd6c093ce 100644 --- a/vllm/platforms/cpu.py +++ b/vllm/platforms/cpu.py @@ -76,7 +76,9 @@ class CpuPlatform(Platform): dist_backend: str = "gloo" device_control_env_var = "CPU_VISIBLE_MEMORY_NODES" omp_process_manager = None - smt = 1 # SMT level for OMP - 4 threads on PowerPC, 1 on others + # Simultaneous Multithreading (SMT) level for OpenMP: + # 4 on PowerPC, 1 on non-PowerPC architectures + smt = 1 global_cpu_mask = None simulate_numa = int(os.environ.get("_SIM_MULTI_NUMA", 0))