diff --git a/qwen3_6_scripts/install_prebuilt_corex.sh b/qwen3_6_scripts/install_prebuilt_corex.sh index aca8052c..9821ce16 100755 --- a/qwen3_6_scripts/install_prebuilt_corex.sh +++ b/qwen3_6_scripts/install_prebuilt_corex.sh @@ -16,8 +16,8 @@ MANIFEST=${BUNDLE_DIR}/SHA256SUMS } mapfile -t artifacts < <(awk '{print $2}' "$MANIFEST") -[[ "${#artifacts[@]}" -eq 12 ]] || { - printf 'expected 12 prebuilt CoreX artifacts, found %s\n' \ +[[ "${#artifacts[@]}" -eq 13 ]] || { + printf 'expected 13 prebuilt CoreX artifacts, found %s\n' \ "${#artifacts[@]}" >&2 exit 2 } diff --git a/qwen3_6_scripts/patch_ops.sh b/qwen3_6_scripts/patch_ops.sh index 8f83b5ec..3f70c7cf 100755 --- a/qwen3_6_scripts/patch_ops.sh +++ b/qwen3_6_scripts/patch_ops.sh @@ -143,13 +143,6 @@ install_patch_file \ build_stage "installing hash-pinned CoreX 3.2.3 extensions" bash ./install_prebuilt_corex.sh "${VLLM_ROOT}" -build_stage "compiling CoreX MoE topk+softmax kernel" -if [[ ! -f "${VLLM_ROOT}/corex_moe_topk_softmax.so" ]]; then - bash ./build_corex_moe_topk_softmax.sh "${VLLM_ROOT}" 2>&1 || { - printf '[warn] CoreX MoE topk+softmax build failed — will use PyTorch fallback\n' >&2 - } -fi - build_stage "installing BI100 runtime modules" cp ./bi100_env.py "${VLLM_ROOT}/bi100_env.py" cp ./bi100_profile.py "${VLLM_ROOT}/bi100_profile.py"