ci(docker): add DeepSeek-V3 kernels and modernize tooling#861
Conversation
Summary of ChangesHello @fishcrap, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request addresses a dependency conflict involving Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request addresses a conflict with litellm[proxy] and uvicore>=34.2 by adjusting dependency specifications in pyproject.toml and updating the Dockerfile to use uv sync for dependency installation. The changes correctly consolidate litellm dependencies and remove the problematic uvicorn version constraint, which is a good step towards resolving the reported conflict. However, there are some redundant instructions in the Dockerfile that should be addressed for better maintainability.
a1625f1 to
1b93d4f
Compare
fb4d875 to
520f537
Compare
ce757de to
455155c
Compare
13d237b to
b1150c8
Compare
Enhance Docker image with DeepSeek-V3 optimization packages (FlashMLA, DeepGEMM, DeepEP, flash-linear-attention) to enable MoE training with optimal performance on Hopper GPUs. Also modernize development tooling and resolve dependency conflicts. Dockerfile changes: - Add FlashMLA, DeepGEMM, DeepEP, flash-linear-attention for DeepSeek-V3 - Replace nvm with fnm (Fast Node Manager) for faster Node.js setup - Move Node.js/npm tooling to STAGE 2.5 after CUDA compilation - Add AI coding tools: opencode, @openai/codex, @google/gemini-cli Dependency changes: - Add torchao>=0.15.0 for PyTorch quantization and optimization - Add claude-agent-sdk for Claude Agent SDK integration - Replace litellm + litellm-proxy-extras with litellm[proxy]>=1.81.3 to resolve uvicorn version conflict - Add openai and soundfile to override-dependencies Validation and documentation: - Add DeepSeek-V3 package tests to validate_docker_installation.py - Document GPU requirements (SM90+ for FlashMLA/DeepGEMM, SM80+ for DeepEP)
14dbcd9 to
48d399d
Compare
…ect#861) * ci(docker): add DeepSeek-V3 kernels and modernize tooling Enhance Docker image with DeepSeek-V3 optimization packages (FlashMLA, DeepGEMM, DeepEP, flash-linear-attention) to enable MoE training with optimal performance on Hopper GPUs. Also modernize development tooling and resolve dependency conflicts. Dockerfile changes: - Add FlashMLA, DeepGEMM, DeepEP, flash-linear-attention for DeepSeek-V3 - Replace nvm with fnm (Fast Node Manager) for faster Node.js setup - Move Node.js/npm tooling to STAGE 2.5 after CUDA compilation - Add AI coding tools: opencode, @openai/codex, @google/gemini-cli Dependency changes: - Add torchao>=0.15.0 for PyTorch quantization and optimization - Add claude-agent-sdk for Claude Agent SDK integration - Replace litellm + litellm-proxy-extras with litellm[proxy]>=1.81.3 to resolve uvicorn version conflict - Add openai and soundfile to override-dependencies Validation and documentation: - Add DeepSeek-V3 package tests to validate_docker_installation.py - Document GPU requirements (SM90+ for FlashMLA/DeepGEMM, SM80+ for DeepEP) * remove nvshm validation * fix fla version validation --------- Co-authored-by: 博惟 <bowei.fw@antgroup.com>
…ect#861) * ci(docker): add DeepSeek-V3 kernels and modernize tooling Enhance Docker image with DeepSeek-V3 optimization packages (FlashMLA, DeepGEMM, DeepEP, flash-linear-attention) to enable MoE training with optimal performance on Hopper GPUs. Also modernize development tooling and resolve dependency conflicts. Dockerfile changes: - Add FlashMLA, DeepGEMM, DeepEP, flash-linear-attention for DeepSeek-V3 - Replace nvm with fnm (Fast Node Manager) for faster Node.js setup - Move Node.js/npm tooling to STAGE 2.5 after CUDA compilation - Add AI coding tools: opencode, @openai/codex, @google/gemini-cli Dependency changes: - Add torchao>=0.15.0 for PyTorch quantization and optimization - Add claude-agent-sdk for Claude Agent SDK integration - Replace litellm + litellm-proxy-extras with litellm[proxy]>=1.81.3 to resolve uvicorn version conflict - Add openai and soundfile to override-dependencies Validation and documentation: - Add DeepSeek-V3 package tests to validate_docker_installation.py - Document GPU requirements (SM90+ for FlashMLA/DeepGEMM, SM80+ for DeepEP) * remove nvshm validation * fix fla version validation --------- Co-authored-by: 博惟 <bowei.fw@antgroup.com>
Description
Enhance Docker image with DeepSeek-V3 optimization packages to enable MoE training with optimal performance on Hopper GPUs. Also modernize development tooling and resolve dependency conflicts.
Key additions:
Type of Change
Checklist
jb build docs/gemini review)Breaking Change Details (if applicable):
This is a backward-compatible addition. Existing usage remains unchanged.
Changes
Dockerfile
Python Dependencies (pyproject.toml)
Documentation & Validation
docs/tutorial/installation.mdvalidate_docker_installation.pyGPU Requirements
Additional Context