Skip to content
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
2 changes: 1 addition & 1 deletion deepseek_r1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ EXPOSE 80
ENTRYPOINT ["python3", "-m", "vllm.entrypoints.openai.api_server", \
# name of the model
"--model", "deepseek-ai/DeepSeek-R1", \
# set the data type to bfloat16 - requires ~140GB GPU memory
# set the data type to bfloat16 - requires ~1.3TB GPU memory (or ~700GB in FP8)
"--dtype", "bfloat16", \
"--trust-remote-code", "true", \
# below runs the model on 8 GPUs
Expand Down
4 changes: 2 additions & 2 deletions deepseek_r1/a671b/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ EXPOSE 80
ENTRYPOINT ["python3", "-m", "vllm.entrypoints.openai.api_server", \
# name of the model
"--model", "deepseek-ai/DeepSeek-R1", \
# set the data type to float 16 - requires 140GB of GPU memory
# set the data type to bfloat16 - requires ~1.3TB GPU memory (or ~700GB in FP8)
"--dtype", "bfloat16", \
"--trust-remote-code". "true", \
"--trust-remote-code", "true", \
# below runs the model on 8 GPUs
"--tensor-parallel-size","8", \
# Maximum number of tokens, this can lead to OOM errors if overestimated
Expand Down