Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Enable vllm backend. #1602

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions examples/.config/vllm_optimize.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"chatglm2_6b": {
"working_dir": "vllm",
"tune": {
"cmd": "bash run_tuning.sh",
"params": {
"topology": "chatglm2_6b",
"task": "generation",
"approach": "static",
"output_model": "saved_results"
}
},
"benchmark": {
"cmd": "bash run_benchmark.sh",
"params": {
"topology": "chatglm2_6b",
"task": "generation",
"approach": "static",
"backend": "ipex",
"mode": "benchmark",
"batch_size": "112",
"iters": "100",
"int8": "false",
"config": "saved_results"
}
}
}
}
81 changes: 81 additions & 0 deletions examples/vllm/run_tuning.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
#!/bin/bash
set -x

function main {

init_params "$@"
run_tuning

}

# init params
function init_params {
topology="gpt_j"
tuned_checkpoint="saved_results"
DATASET_NAME="NeelNanda/pile-10k"
model_name_or_path="EleutherAI/gpt-j-6b"
extra_cmd=""
batch_size=8
approach="PostTrainingStatic"
script="vllm_acceleration_example.py"
alpha=0.5
weight_dtype="int4_clip"
scheme="asym"
for var in "$@"
do
case $var in
--topology=*)
topology=$(echo $var |cut -f2 -d=)
;;
--dataset_location=*)
dataset_location=$(echo $var |cut -f2 -d=)
;;
--input_model=*)
input_model=$(echo $var |cut -f2 -d=)
;;
--output_model=*)
tuned_checkpoint=$(echo $var |cut -f2 -d=)
;;
--task=*)
task=$(echo $var |cut -f2 -d=)
;;
--approach=*)
approach=$(echo $var |cut -f2 -d=)
;;
--weight_dtype=*)
weight_dtype=$(echo $var |cut -f2 -d=)
;;
--bits=*)
bits=$(echo $var |cut -f2 -d=)
;;
--scheme=*)
scheme=$(echo $var |cut -f2 -d=)
;;
*)
echo "Error: No such parameter: ${var}"
exit 1
;;
esac
done

}

# run_tuning
function run_tuning {
if [ "${topology}" = "chatglm2_6b" ]; then
model_name_or_path="THUDM/chatglm2-6b"
script="vllm_acceleration_example.py"
fi

if [ ${script} = "vllm_acceleration_example.py" ];then
pip install requirement.txt
python -u ./${script} \
--model ${model_name_or_path} \
--prompt=你好
else
echo "Error: Please provide the correct script."
exit 1
fi
}

main "$@"
Loading