Skip to content

Conversation

@jasonqinzhou
Copy link
Contributor

@jasonqinzhou jasonqinzhou commented Aug 22, 2025

….png

Overview:

Details:

Where should the reviewer start?

Related Issues: (use one of the action keywords Closes / Fixes / Resolves / Relates to)

  • closes GitHub issue: #xxx

Summary by CodeRabbit

  • Documentation
    • Corrected image paths in the Pre-deployment Profiling guide to ensure Prefill and Decode Performance visuals render correctly.
    • Improves consistency and reliability of images across documentation builds and viewing contexts.
    • No functional changes to the application or APIs; purely a documentation fix.
    • Enhances reader experience by preventing broken or missing images in the relevant sections.

@jasonqinzhou jasonqinzhou requested a review from hhzhang16 August 22, 2025 18:16
@copy-pr-bot
Copy link

copy-pr-bot bot commented Aug 22, 2025

This pull request requires additional validation before any workflows can run on NVIDIA's runners.

Pull request vetters can view their responsibilities here.

Contributors can view more details about this message here.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Aug 22, 2025

Walkthrough

The document docs/architecture/pre_deployment_profiling.md updates image references for Prefill and Decode Performance, changing paths from ../images/h100_.png to ../../docs/images/h100_.png. No other content or logic is modified.

Changes

Cohort / File(s) Summary
Docs image path updates
docs/architecture/pre_deployment_profiling.md
Updated image source paths from ../images/h100_*.png to ../../docs/images/h100_*.png. No other changes.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Poem

I hop through docs with careful cheer,
Nudging paths from there to here.
H100 pics now found with ease—
A tidy trail among the trees.
Thump-thump! The links align just so,
Carrots cached, we’re good to go. 🥕✨

Tip

🔌 Remote MCP (Model Context Protocol) integration is now available!

Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats.


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.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
docs/architecture/pre_deployment_profiling.md (1)

58-58: Typo: stray closing brace in path literal.

The path shows an extra '}' at the end, which can mislead readers when copy-pasting.

Fix:

-* `${benchmark_result_dir}/selected_prefill_interpolation/raw_data.npz}`
+* `${benchmark_result_dir}/selected_prefill_interpolation/raw_data.npz`
🧹 Nitpick comments (2)
docs/architecture/pre_deployment_profiling.md (2)

51-51: Unify image path style for consistency.

This still uses ../images while Lines 26–27 switched to ../../docs/images. Pick one style across the doc to avoid confusion (both resolve to the same target from this location).

Proposed change if you decide to follow the new style:

-![images](../images/itl_interpolation.png)
+![images](../../docs/images/itl_interpolation.png)

26-27: Image links verified; optional path simplification suggested

All three image paths in docs/architecture/pre_deployment_profiling.md resolve correctly on disk. No broken links were found:

  • ../../docs/images/h100_prefill_performance.png → docs/images/h100_prefill_performance.png (OK)
  • ../../docs/images/h100_decode_performance.png → docs/images/h100_decode_performance.png (OK)
  • ../images/itl_interpolation.png → docs/images/itl_interpolation.png (OK)

Since the site generator’s baseUrl may influence which relative path is required, you can leave the existing ../../docs/images/... links if they’re necessary. Otherwise, for consistency with the shorter form used elsewhere in this file (e.g. line 51’s ../images/itl_interpolation.png), you may optionally change the first two links to:

- ![Prefill Performance](../../docs/images/h100_prefill_performance.png)
- ![Decode Performance](../../docs/images/h100_decode_performance.png)
+ ![Prefill Performance](../images/h100_prefill_performance.png)
+ ![Decode Performance](../images/h100_decode_performance.png)
📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between b92a805 and 81c3cc5.

📒 Files selected for processing (1)
  • docs/architecture/pre_deployment_profiling.md (1 hunks)
⏰ 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)
  • GitHub Check: Build and Test - dynamo
🔇 Additional comments (1)
docs/architecture/pre_deployment_profiling.md (1)

26-27: LGTM on fixing broken image links for H100 plots.

The updated targets look plausible and will likely resolve the rendering issues for the two plots.

@jasonqinzhou jasonqinzhou changed the title fix links of h100_prefill_performance.png and h100_decode_performance.png fix: fix #2653: links of h100_prefill_performance.png and h100_decode_performance.png Aug 22, 2025
@github-actions github-actions bot added the fix label Aug 22, 2025
@tedzhouhk
Copy link
Contributor

sorry, why we need this? looks like it's already inside the doc folder

@jasonqinzhou
Copy link
Contributor Author

the link is broken. should be fixed.

@jasonqinzhou jasonqinzhou enabled auto-merge (squash) August 29, 2025 18:32
jasonqinzhou and others added 18 commits August 31, 2025 06:54
….png

Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
Signed-off-by: Bhuvan Agrawal <11240550+bhuvan002@users.noreply.github.com>
Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
…t the ‘one-model’ solution as the default (#2661)

Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
Co-authored-by: Keiven Chang <keivenchang@users.noreply.github.com>
Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
…2669)

Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
Signed-off-by: Jason Zhou <jasonzho@nvidia.com>
@jasonqinzhou jasonqinzhou merged commit 3f09c39 into main Aug 30, 2025
10 checks passed
@jasonqinzhou jasonqinzhou deleted the jasonzho/png branch August 30, 2025 22:26
KrishnanPrash pushed a commit that referenced this pull request Sep 2, 2025
…_performance.png (#2650)

Signed-off-by: Krishnan Prashanth <kprashanth@nvidia.com>
dillon-cullinan pushed a commit that referenced this pull request Sep 5, 2025
nnshah1 pushed a commit that referenced this pull request Sep 8, 2025
…_performance.png (#2650)

Signed-off-by: nnshah1 <neelays@nvidia.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.