From 6796384bf409ec9ec29b5de2444259fd8e700168 Mon Sep 17 00:00:00 2001 From: CGH0S7 <776459475@qq.com> Date: Sat, 7 Feb 2026 22:24:02 +0800 Subject: [PATCH] taskset setting updated --- makefile_and_run.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/makefile_and_run.py b/makefile_and_run.py index 72ded5b..7348889 100755 --- a/makefile_and_run.py +++ b/makefile_and_run.py @@ -15,12 +15,13 @@ import subprocess ## taskset ensures all child processes inherit the CPU affinity mask ## This forces make and all compiler processes to use only nohz_full cores (4-55, 60-111) ## Format: taskset -c 4-55,60-111 ensures processes only run on these cores -NUMACTL_CPU_BIND = "taskset -c 0-111" +NUMACTL_CPU_BIND = "taskset -c 16-47,64-95" +#NUMACTL_CPU_BIND = "taskset -c 0-111" ## Build parallelism configuration ## Use nohz_full cores (4-55, 60-111) for compilation: 52 + 52 = 104 cores ## Set make -j to utilize available cores for faster builds -BUILD_JOBS = 104 +BUILD_JOBS = 64 ##################################################################