4*A100 部署 deepseek-r1-671B

部署deepseek-r1-671B

使用 4*A100 部署 deepseek-r1-671b-1.58bit 大模型。

环境

  • ubuntu22.04LTS
  • cuda 12.2.0

要求

  • 内存: 256GB及以上
  • 显存: 256GB及以上(160G可以跑起来,但对于长上下文容易oom),这里是A100 80G * 4

vllm

复制代码
CUDA_VISIBLE_DEVICES=0,1,2,3 /data/miniconda3/envs/llm_py311-8/bin/python -m vllm.entrypoints.openai.api_server \
--port 8001 --served-model-name Qwen2-7B-Instruct \
--model /your/671B/model/path.gguf

失败,提示错误:

复制代码
python3.11/site-packages/transformers/modeling_gguf_pytorch_utils.py", line 399, in load_gguf_checkpoint
    raise ValueError(f"GGUF model with architecture {architecture} is not supported yet.")
ValueError: GGUF model with architecture deepseek2 is not supported yet.

github上面看到vllm暂不支持deepseek-r1-671B,有各种问题,暂时放弃

llama.cpp

准备阶段

cuda需要12.0及以上,我的cuda版本是12.2.0(用docker了),我在11.5上面编译失败(可能和GPU的驱动编译方式有关,没细研究),GPU 是 A100 * 4

模型下载参考:https://www.ollama.com/SIGJNF/deepseek-r1-671b-1.58bit

或者下载:https://hf-mirror.com/unsloth/DeepSeek-R1-GGUF/tree/main/DeepSeek-R1-UD-IQ1_M

  • 拉取容器

    docker pull nvcr.io/nvidia/cuda:12.2.0-cudnn8-devel-ubuntu22.04 # 可能网络会有点问题

  • 运行容器

    复制代码
    docker run -it -d --name  llama_cpp --gpus all \
       -v /data/work/Star/.ollama/:/work/ollama/ \
       -v /data/work/Star/llama.cpp:/work/llama.cpp/ \
       -p 28000:8000 \
       -p 27860:7860 \
       -e TZ='Asia/Shanghai' \
       nvcr.io/nvidia/cuda:12.2.0-cudnn8-devel-ubuntu22.04
  • 进入容器

    docker exec -it llama_cpp env LANG=C.UTF-8 /bin/bash

##拉取代码

git clone https://github.com/ggml-org/llama.cpp

编译GPU版本

cd llama.cpp

cmake -B build -DGGML_CUDA=ON

cmake --build build --config Release -j16

运行服务

复制代码
cd build/bin/
CUDA_VISIBLE_DEVICES=0,1,2,3  ./llama-server \
-m /path_to_model.gguf \
--port 7860 \
--cache-type-k q4_0  --threads 64  --prio 2  --temp 0.6 \
--ctx-size 8192 \
--seed 3407 \
--n-gpu-layers 1600

或者:

复制代码
CUDA_VISIBLE_DEVICES=0,1,2,3 ./llama-server \
-m /path_to_model.gguf \
--port 7860 \
--host 0.0.0.0 \
-c 16384 \
-np 4 \
--n-gpu-layers 15000

更多参数配置参考:

https://github.com/ggml-org/llama.cpp/blob/master/examples/server/README.md

并发测试

5个并发:

复制代码
curl --request POST     --url http://localhost:17861/completion     --header "Content-Type: application/json"     --data '{"prompt": "Building a website can be done in 10 simple steps:","n_predict": 12}' &
curl --request POST     --url http://localhost:17861/completion     --header "Content-Type: application/json"     --data '{"prompt": "Building a website can be done in 10 simple steps:","n_predict": 102}' &
curl --request POST     --url http://localhost:17861/completion     --header "Content-Type: application/json"     --data '{"prompt": "Building a website can be done in 10 simple steps:","n_predict": 112}' &
curl --request POST     --url http://localhost:17861/completion     --header "Content-Type: application/json"     --data '{"prompt": "Building a website can be done in 10 simple steps:","n_predict": 42}' &
curl --request POST     --url http://localhost:17861/completion     --header "Content-Type: application/json"     --data '{"prompt": "Building a website can be done in 10 simple steps:","n_predict": 32}' &

这里测试了不同输入长度及上下文长度。

参考

  1. https://github.com/ggml-org/llama.cpp
  2. https://github.com/ggml-org/llama.cpp/blob/master/examples/server/README.md
  3. https://hf-mirror.com/unsloth/DeepSeek-R1-GGUF
  4. https://www.ollama.com/SIGJNF/deepseek-r1-671b-1.58bit
相关推荐
HuggingFace5 天前
Open R1 项目进展第一期
deepseek-r1·open-r1
Habibei1 个月前
DeepSeek-R1-671B大模型满血版私有化部署高可用教程-SparkAi系统集成图文教程
人工智能·deepseek·deepseek-r1
程序员一一涤生1 个月前
DeepSeek-R1的“思考”艺术,你真的了解吗?
deepseek-r1·思考过程
鱼是一只鱼啊1 个月前
windows系统本地部署DeepSeek-R1全流程指南:Ollama+Docker+OpenWebUI
docker·deepseek-r1·ollma·opnewebui
零炻大礼包1 个月前
【DeepSeek-R1】 API申请(腾讯云)
云计算·腾讯云·deepseek-r1
大模型之路2 个月前
DeepSeek-R1 如何通过知识蒸馏将推理能力传递给 Qwen
人工智能·知识蒸馏·qwen·deepseek·deepseek-r1
F_D_Z2 个月前
【清晰教程】本地部署DeepSeek-r1模型
本地部署·deepseek·deepseek-r1
小码农叔叔2 个月前
【大模型】阿里云百炼平台对接DeepSeek-R1大模型使用详解
deepseek-r1·deepseek-r1使用·阿里云对接deepseek·百炼平台使用deepseek·deepseek使用详解·deepseek-r1使用详解
zhanyd2 个月前
告别DeepSeek官方的服务器繁忙~腾讯云DeepSeek-V3/R1无限免费调用~不用安装任何东西~小白一学就会~
腾讯云·白嫖·deepseek·deepseek-r1·deepseek api