[CI]Install clang in dokerfile for triton ascend (#4409)

### What this PR does / why we need it?
Install clang in dokerfile for triton ascend

- vLLM version: v0.13.0
- vLLM main:
d68209402d

Signed-off-by: Meihan-chen <jcccx.cmh@gmail.com>
This commit is contained in:
meihanc
2026-01-22 19:01:28 +08:00
committed by GitHub
parent a7d781f135
commit e54d294df3
9 changed files with 41 additions and 39 deletions

View File

@@ -125,13 +125,12 @@ install_extra_components() {
echo "====> Extra components installation completed"
}
install_clang() {
echo "====> Installing clang-15"
apt-get update && apt-get install -y clang-15
update-alternatives --install /usr/bin/clang clang /usr/bin/clang-15 20
update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-15 20
show_triton_ascend_info() {
echo "====> Check triton ascend info"
clang -v
echo "====> Clang-15 installation completed"
which bishengir-compile
pip show triton-ascend
}
kill_npu_processes() {
@@ -161,7 +160,7 @@ main() {
check_npu_info
check_and_config
show_vllm_info
install_clang
show_triton_ascend_info
if [[ "$CONFIG_YAML_PATH" == *"DeepSeek-V3_2-Exp-bf16.yaml" ]]; then
install_extra_components
fi