-
Notifications
You must be signed in to change notification settings - Fork 70
Enable TensorIndexer with some of the reduction-related tests #5573
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
Conversation
|
!test --diff |
Description
|
| Relevant files | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Enhancement |
|
PR Reviewer Guide
Here are some key observations to aid the review process:
| 🧪 PR contains tests |
| 🔒 No security concerns identified |
| ⚡ No major issues detected |
Test failures
-
(Medium, 1)
Tensor numerical mismatch in nvFuser matmul tests on Hopper (H100)Test Name 20 Source HopperMatmulTest.HSH_NT_UseScheduler_MultipleInstructionsPerWarpTile ❌ Link
Greptile OverviewGreptile SummaryEnables TensorIndexer (via IdModel) for six reduction-related test suites by converting test fixture type aliases to proper classes with Key Changes:
Confidence Score: 5/5
Important Files ChangedFile Analysis
Sequence DiagramsequenceDiagram
participant TestRunner as Test Runner
participant TestFixture as ReductionTest/WelfordTest/etc
participant NVFuserTest as NVFuserTest Base
participant EnableOptionsGuard as EnableOptionsGuard
participant IdModel as IdModel System
TestRunner->>TestFixture: Create test instance
TestRunner->>TestFixture: Call SetUp()
TestFixture->>NVFuserTest: Call parent SetUp()
NVFuserTest-->>TestFixture: Base initialization complete
TestFixture->>EnableOptionsGuard: getCurOptions().set(IdModel, {"all"})
EnableOptionsGuard->>IdModel: Enable IdModel for indexing
IdModel-->>EnableOptionsGuard: IdModel enabled
EnableOptionsGuard-->>TestFixture: Configuration set
TestFixture-->>TestRunner: Setup complete
TestRunner->>TestFixture: Execute test case
Note over TestFixture,IdModel: All tests run with IdModel enabled
|
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.
6 files reviewed, no comments
Confirmed code diff results are benign