From 8d2f30f06541c22a4d77ec9848b3a34a0bafd414 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 13 Aug 2026 13:15:13 +0000 Subject: [PATCH] =?UTF-8?q?fix(critical):=20remove=20LD=5FPRELOAD=20libccc?= =?UTF-8?q?l=5Fallocator.so=20=E2=80=94=20crashes=20service=20if=20.so=20m?= =?UTF-8?q?issing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The CCCL preload allocator build frequently fails (CUB headers conflict with CoreX CUDA 10.2). When the .so doesn't exist, LD_PRELOAD causes the Python process to abort immediately, resulting in Connection Refused for all 881 replay requests (0 score). This was the root cause of sub 655's failure: service never started. --- computility-run.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/computility-run.yaml b/computility-run.yaml index 4a2980d5..0d4bb511 100644 --- a/computility-run.yaml +++ b/computility-run.yaml @@ -49,5 +49,4 @@ env: value: '1' - name: PYTORCH_CUDA_ALLOC_CONF value: max_split_size_mb:512 - - name: LD_PRELOAD - value: /workspace/qwen3_6_scripts/cccl_preload/libcccl_allocator.so +