-
Notifications
You must be signed in to change notification settings - Fork 602
Debug doc generation #2576
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
Open
timmoon10
wants to merge
1
commit into
NVIDIA:main
Choose a base branch
from
timmoon10:tmoon/debug-docs2
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Debug doc generation #2576
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Signed-off-by: Tim Moon <[email protected]>
timmoon10
commented
Jan 7, 2026
| * the last, the last entry shifts to the second to last) and the | ||
| * first entry is set to zero. The scaling factor is estimated so the | ||
| * FP8 tensor's maximum absolute value is | ||
| * @f$ 2^{-\text{margin}} \text{max}_\text{fp8\_dtype} @f$. |
Collaborator
Author
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
\text requires amsmath.
Contributor
Greptile SummaryFixed Doxygen documentation warnings and LaTeX compilation errors across header files in the TransformerEngine C API.
All changes are documentation-only fixes with no functional code modifications. Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Dev as Developer
participant Dox as Doxygen
participant LaTeX as LaTeX Compiler
participant Doc as Documentation Output
Note over Dev,Doc: Documentation Generation Process
Dev->>Dox: Generate docs from header files
activate Dox
Note over Dox: Before PR: Parse header files
Dox-->>Dev: ⚠️ Warnings (param name mismatches)
Dox-->>Dev: ⚠️ Warnings (missing param docs)
Dox-->>Dev: ⚠️ Warnings (file comment mismatch)
Dox->>LaTeX: Generate LaTeX for formulas
activate LaTeX
Note over LaTeX: Before PR: Process LaTeX
LaTeX-->>Dev: ❌ Errors (invalid LaTeX syntax in recipe.h)
deactivate LaTeX
deactivate Dox
Note over Dev: Apply PR fixes:<br/>- Fix param name typos<br/>- Add missing param docs<br/>- Fix LaTeX formulas<br/>- Update file comments
Dev->>Dox: Regenerate docs with fixes
activate Dox
Note over Dox: After PR: Parse corrected headers
Dox->>Dox: Validate parameter names match
Dox->>Dox: Verify all params documented
Dox->>LaTeX: Generate corrected LaTeX
activate LaTeX
LaTeX->>LaTeX: Parse fixed formulas
LaTeX-->>Dox: ✓ Success
deactivate LaTeX
Dox->>Doc: Generate clean documentation
Dox-->>Dev: ✓ No warnings
deactivate Dox
Doc-->>Dev: Clean documentation output
|
Collaborator
Author
|
/te-ci core |
ptrendx
approved these changes
Jan 8, 2026
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR fixes some Doxygen warnings and LaTeX errors.
Type of change
Changes
Checklist: