Merged
Conversation
Contributor
Greptile SummaryThis PR fixes a flaky test in The root cause of the flakiness is that Key aspects of the fix:
Confidence Score: 5/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A["Generate random matrix\nx = randn(shape)"] --> B["Make symmetric PSD\nx = x @ x.T"]
B --> C["NEW: Replace near-zero values\nx[x.abs() < 1e-8] = 0.25"]
C --> D["Call eigh_with_fallback(x, force_double)"]
D --> E["Internally: stabilized_x = x + eps * I\nthen torch.linalg.eigh(stabilized_x)"]
E --> F["Returns L eigenvalues, Q eigenvectors\n(descending order)"]
F --> G["Reconstruct matrix\nreconstructed = Q @ diag(L) @ Q^T"]
G --> H{"assert_close\nreconstructed ≈ x?"}
H -- "atol=1e-4 / 1e-6" --> I["PASS ✅"]
H -- "| a-b | > atol + rtol*|b|" --> J["FAIL ❌ (was flaky\nwhen x[i,j] ≈ 0)"]
style C fill:#d4edda,stroke:#28a745
style J fill:#f8d7da,stroke:#dc3545
style I fill:#d4edda,stroke:#28a745
Last reviewed commit: "fix test" |
mkhona-nvidia
approved these changes
Mar 19, 2026
Contributor
Author
|
/ok to test d50955c |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Prevent failures like https://github.com/NVIDIA-NeMo/Emerging-Optimizers/runs/67746292513 because of values slightly off atol. Don't want to just keep relaxing it, which may mask real errors eventually.