Conversation
|
Warning Rate limit exceeded@winglian has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 28 minutes and 33 seconds before requesting another review. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📒 Files selected for processing (2)
WalkthroughA conditional installation step for the Changes
Sequence Diagram(s)sequenceDiagram
participant BuildProcess
participant Dockerfile
participant pip
BuildProcess->>Dockerfile: Build with PYTORCH_VERSION and CUDA args
alt PYTORCH_VERSION==2.6.0 and CUDA==124
Dockerfile->>pip: Install flash-attn==2.8.0.post2 (force build from source)
else Other versions
Dockerfile-->>pip: Skip flash-attn install
end
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
docker/Dockerfile-base(1 hunks)
🧰 Additional context used
🧠 Learnings (2)
📓 Common learnings
Learnt from: NanoCode012
PR: axolotl-ai-cloud/axolotl#2854
File: README.md:73-77
Timestamp: 2025-07-02T02:56:20.788Z
Learning: For Axolotl Docker commands, the `--ipc=host` flag should be included by default to prevent shared memory failures that commonly occur with PyTorch DataLoaders and multiprocessing during machine learning training workflows.
docker/Dockerfile-base (1)
Learnt from: NanoCode012
PR: axolotl-ai-cloud/axolotl#2854
File: README.md:73-77
Timestamp: 2025-07-02T02:56:20.788Z
Learning: For Axolotl Docker commands, the `--ipc=host` flag should be included by default to prevent shared memory failures that commonly occur with PyTorch DataLoaders and multiprocessing during machine learning training workflows.
🔇 Additional comments (1)
docker/Dockerfile-base (1)
41-43: Implementation looks technically sound.The conditional installation logic is well-implemented:
- Proper bash conditional syntax with string comparison
- Inline environment variable setting for forcing source build
- Appropriate package version pinning
- Good placement in the Dockerfile after core dependencies
Codecov ReportAll modified and coverable lines are covered by tests ✅ 📢 Thoughts on this report? Let us know! |
fa2 builds are broken when using torch 2.6.0 + cu124. let's build it from source on these base images
Summary by CodeRabbit