Initial commit for vLLM-Kunlun Plugin

This commit is contained in:
dongxinyu03
2025-12-10 12:05:39 +08:00
commit c728e52505
131 changed files with 28816 additions and 0 deletions

25
build.sh Normal file
View File

@@ -0,0 +1,25 @@
#!/bin/bash
set -euo pipefail
echo "========= build enter ========="
echo "$PATH"
WORK_DIR=$(cd $(dirname $0) && pwd) && cd $WORK_DIR
echo_cmd() {
echo $1
$1
}
echo "========= build vllm ========="
echo_cmd "rm -rf output"
echo_cmd "mkdir -p output"
cd ${WORK_DIR}
rm -rf output/.scm/
tar -zcvf ../vllm-kunlun.tar.gz ../vllm-kunlun/
mv ../vllm-kunlun.tar.gz ./output/
echo "========= build exit ========="