3.7. codellama

codellama-13b-hf

模型下载

将上述url设定的路径下的内容全部下载到codellama-13b-hf文件夹中。

批量离线推理

python3.8 -m vllm_utils.benchmark_test \
 --model=[path of codellama-13b-hf] \
 --demo=ci \
 --template=templates/template_codellama_infilling.jinja \
 --dtype=float16 \
 --output-len=256 \
 --max-model-len=1024

性能测试

python3.8 -m vllm_utils.benchmark_test --perf \
 --model=[path of codellama-13b-hf] \
 --max-model-len=1024 \
 --tokenizer=[path of codellama-13b-hf] \
 --input-len=512 \
 --output-len=512 \
 --num-prompts=32 \
 --block-size=64 \
 --dtype=float16

注:

  • 本模型在ecc off模式下单卡支持的max-model-len为16k,ecc on模式下单卡支持的max-model-len为10k,使能16k需要双卡;

  • input-lenoutput-lennum-prompts可按需调整;

  • 配置 output-len为1时,输出内容中的latency即为time_to_first_token_latency;

codellama-13b-python

模型下载

将上述url设定的路径下的内容全部下载到codellama-13b-python文件夹中。

批量离线推理

python3.8 -m vllm_utils.benchmark_test \
 --model=[path of codellama-13b-python] \
 --demo=cc \
 --dtype=float16 \
 --output-len=256 \
 --max-model-len=1024

性能测试

python3.8 -m vllm_utils.benchmark_test --perf \
 --model=[path of codellama-13b-python] \
 --max-model-len=1024 \
 --tokenizer=[path of codellama-13b-python] \
 --input-len=512 \
 --output-len=512 \
 --num-prompts=32 \
 --block-size=64 \
 --dtype=float16

注:

  • 本模型在ecc off模式下单卡支持的max-model-len为16k,ecc on模式下单卡支持的max-model-len为10k,使能16k需要双卡;

  • input-lenoutput-lennum-prompts可按需调整;

  • 配置 output-len为1时,输出内容中的latency即为time_to_first_token_latency;

codellama-13b-instruct

模型下载

将上述url设定的路径下的内容全部下载到codellama-13b-instruct文件夹中。

批量离线推理

python3.8 -m vllm_utils.benchmark_test \
 --model=[path of codellama-13b-instruct] \
 --demo=cin \
 --template=templates/template_default.jinja \
 --dtype=float16 \
 --max-model-len=1024 \
 --output-len=256

性能测试

python3.8 -m vllm_utils.benchmark_test --perf \
 --model=[path of codellama-13b-instruct] \
 --max-model-len=1024 \
 --tokenizer=[path of codellama-13b-instruct] \
 --input-len=512 \
 --output-len=512 \
 --num-prompts=32 \
 --block-size=64 \
 --dtype=float16

注:

  • 本模型在ecc off模式下单卡支持的max-model-len为16k,ecc on模式下单卡支持的max-model-len为10k,使能16k需要双卡;

  • input-lenoutput-lennum-prompts可按需调整;

  • 配置 output-len为1时,输出内容中的latency即为time_to_first_token_latency;

codellama-34b-hf

本模型推理及性能测试需要两张enflame gcu。

模型下载

将上述url设定的路径下的内容全部下载到codellama-34b-hf文件夹中。

批量离线推理

python3.8 -m vllm_utils.benchmark_test \
 --model=[path of codellama-34b-hf] \
 --tensor-parallel-size=2 \
 --demo=cc \
 --dtype=float16 \
 --max-model-len=1024 \
 --output-len=256

性能测试

python3.8 -m vllm_utils.benchmark_test --perf \
 --model=[path of codellama-34b-hf] \
 --tensor-parallel-size=2 \
 --max-model-len=1024 \
 --tokenizer=[path of codellama-34b-hf] \
 --input-len=512 \
 --output-len=512 \
 --num-prompts=16 \
 --block-size=64 \
 --dtype=float16

注:

  • 本模型在ecc off模式下双卡支持的max-model-len为16k,ecc on模式下双卡支持的max-model-len为10k,使能16k需要四卡;

  • input-lenoutput-lennum-prompts可按需调整;

  • 配置 output-len为1时,输出内容中的latency即为time_to_first_token_latency;

codellama-34b-python

本模型推理及性能测试需要两张enflame gcu。

模型下载

将上述url设定的路径下的内容全部下载到codellama-34b-python文件夹中。

批量离线推理

python3.8 -m vllm_utils.benchmark_test \
 --model=[path of codellama-34b-python] \
 --tensor-parallel-size=2 \
 --demo=cc \
 --dtype=float16 \
 --max-model-len=1024 \
 --output-len=256

性能测试

python3.8 -m vllm_utils.benchmark_test --perf \
 --model=[path of codellama-34b-python] \
 --tensor-parallel-size=2 \
 --max-model-len=1024 \
 --tokenizer=[path of codellama-34b-python] \
 --input-len=512 \
 --output-len=512 \
 --num-prompts=16 \
 --block-size=64 \
 --dtype=float16

注:

  • 本模型在ecc off模式下双卡支持的max-model-len为16k,ecc on模式下双卡支持的max-model-len为10k,使能16k需要四卡;

  • input-lenoutput-lennum-prompts可按需调整;

  • 配置 output-len为1时,输出内容中的latency即为time_to_first_token_latency;

codellama-34b-instruct

本模型推理及性能测试需要两张enflame gcu。

模型下载

将上述url设定的路径下的内容全部下载到codellama-34b-instruct文件夹中。

批量离线推理

python3.8 -m vllm_utils.benchmark_test \
 --model=[path of codellama-34b-instruct] \
 --tensor-parallel-size=2 \
 --demo=cin \
 --template=templates/template_default.jinja \
 --dtype=float16 \
 --max-model-len=1024 \
 --output-len=256

性能测试

python3.8 -m vllm_utils.benchmark_test --perf \
 --model=[path of codellama-34b-instruct] \
 --tensor-parallel-size=2 \
 --max-model-len=1024 \
 --tokenizer=[path of codellama-34b-instruct] \
 --input-len=512 \
 --output-len=512 \
 --num-prompts=16 \
 --block-size=64 \
 --dtype=float16

注:

  • 本模型在ecc off模式下双卡支持的max-model-len为16k,ecc on模式下双卡支持的max-model-len为10k,使能16k需要四卡;

  • input-lenoutput-lennum-prompts可按需调整;

  • 配置 output-len为1时,输出内容中的latency即为time_to_first_token_latency;

codellama-70b-hf

本模型推理及性能测试需要四张enflame gcu。

模型下载

将上述url设定的路径下的内容全部下载到codellama-70b-hf文件夹中。

批量离线推理

python3.8 -m vllm_utils.benchmark_test \
 --model=[path of codellama-70b-hf] \
 --tensor-parallel-size=4 \
 --demo=cc \
 --output-len=256 \
 --dtype=float16

性能测试

python3.8 -m vllm_utils.benchmark_test --perf \
 --model=[path of codellama-70b-hf] \
 --tensor-parallel-size=4 \
 --max-model-len=1024 \
 --tokenizer=[path of codellama-70b-hf] \
 --input-len=512 \
 --output-len=512 \
 --num-prompts=8 \
 --block-size=64 \
 --dtype=float16

注:

  • 本模型支持的max-model-len为4096;

  • input-lenoutput-lennum-prompts可按需调整;

  • 配置 output-len为1时,输出内容中的latency即为time_to_first_token_latency;

codellama-70b-python

本模型推理及性能测试需要四张enflame gcu。

模型下载

将上述url设定的路径下的内容全部下载到codellama-70b-python文件夹中。

批量离线推理

python3.8 -m vllm_utils.benchmark_test \
 --model=[path of codellama-70b-python] \
 --tensor-parallel-size=4 \
 --demo=cc \
 --output-len=256 \
 --dtype=float16

性能测试

python3.8 -m vllm_utils.benchmark_test --perf \
 --model=[path of codellama-70b-python] \
 --tensor-parallel-size=4 \
 --max-model-len=1024 \
 --tokenizer=[path of codellama-70b-python] \
 --input-len=512 \
 --output-len=512 \
 --num-prompts=8 \
 --block-size=64 \
 --dtype=float16

注:

  • 本模型支持的max-model-len为4096;

  • input-lenoutput-lennum-prompts可按需调整;

  • 配置 output-len为1时,输出内容中的latency即为time_to_first_token_latency;

codellama-70b-instruct

本模型推理及性能测试需要四张enflame gcu。

模型下载

将上述url设定的路径下的内容全部下载到codellama-70b-instruct文件夹中。

批量离线推理

python3.8 -m vllm_utils.benchmark_test \
 --model=[path of codellama-70b-instruct] \
 --tensor-parallel-size=4 \
 --demo=cc \
 --output-len=256 \
 --dtype=float16

性能测试

python3.8 -m vllm_utils.benchmark_test --perf \
 --model=[path of codellama-70b-instruct] \
 --tensor-parallel-size=4 \
 --max-model-len=1024 \
 --tokenizer=[path of codellama-70b-instruct] \
 --input-len=512 \
 --output-len=512 \
 --num-prompts=8 \
 --block-size=64 \
 --dtype=float16

注:

  • 本模型支持的max-model-len为4096;

  • input-lenoutput-lennum-prompts可按需调整;

  • 配置 output-len为1时,输出内容中的latency即为time_to_first_token_latency;