-
Notifications
You must be signed in to change notification settings - Fork 416
Add sizing calc summary in the main CLI docs #908
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add sizing calc summary in the main CLI docs #908
Conversation
Signed-off-by: Anuradha Karuppiah <[email protected]>
WalkthroughAdds a new "GPU Cluster Sizing" section to the CLI reference documenting the nat sizing calc command, its flags, defaults, and example usages for online, offline, and combined runs. Also mirrors this sizing content near the end of the Optimize section within the same file. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant U as User
participant CLI as nat sizing calc
participant EP as Metrics Endpoint (online)
participant FS as Filesystem (offline)
U->>CLI: Run with flags
alt Online mode enabled
CLI->>EP: Collect runtime metrics (timeout)
EP-->>CLI: Metrics data
CLI->>CLI: Compute sizing based on collected metrics
else Offline mode
CLI->>FS: Read config/test data
FS-->>CLI: Local inputs
CLI->>CLI: Estimate sizing from local inputs
else Combined
CLI->>EP: Collect metrics
EP-->>CLI: Metrics data
CLI->>FS: Read local inputs
FS-->>CLI: Local inputs
CLI->>CLI: Synthesize sizing from both sources
end
CLI-->>U: Write outputs to calc_output_dir (append if set)
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Suggested labels
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
🧰 Additional context used📓 Path-based instructions (3)docs/source/**/*.md📄 CodeRabbit inference engine (.cursor/rules/general.mdc)
Files:
**/*⚙️ CodeRabbit configuration file
Files:
docs/source/**/*⚙️ CodeRabbit configuration file
Files:
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
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. Comment |
|
/merge |
Description
Closes
By Submitting this PR I confirm:
Summary by CodeRabbit