-
Notifications
You must be signed in to change notification settings - Fork 76
Remove EnableOption::IdModel #5900
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
base: main
Are you sure you want to change the base?
Conversation
|
!test |
|
Review updated until commit 4641943 Description
|
| Relevant files | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Enhancement | 5 files
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Tests | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Additional files | 57 files
|
PR Reviewer Guide
Here are some key observations to aid the review process:
| 🧪 PR contains tests |
| ⚡ Recommended focus areas for review |
Default Behavior Change
|
Test failures (partial, pipeline still running)
-
(Medium, 2)
Thunder NVFuser nanoGPT autograd scalar mismatch in thunder/tests/test_networks on CUDATest Name A100 H100 Source thunder.tests.test_networks.test_nanogpt_complete_autograd_nvfuser_cuda_thunder.dtypes.float32 ❌ ❌
|
!test |
Greptile OverviewGreptile SummaryThis PR removes the Key Changes:
Impact: Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant Options
participant IdModelOptions
participant Lower2Device
participant TensorIndexer
Note over Options,TensorIndexer: Before: IdModel was an opt-in feature
User->>Options: Set EnableOption::IdModel
Options->>IdModelOptions: Constructor checks isOptionEnabled()
IdModelOptions->>IdModelOptions: tensor_indexer_enabled = false by default
Lower2Device->>IdModelOptions: setTensorIndexer(true)
IdModelOptions->>TensorIndexer: Use TensorIndexer
Note over Options,TensorIndexer: After: IdModel is always enabled
User->>Lower2Device: Compile fusion
Lower2Device->>IdModelOptions: getIdModelOptions()
IdModelOptions->>IdModelOptions: tensor_indexer_enabled = true by default
alt Fusion not supported
Lower2Device->>IdModelOptions: setTensorIndexer(false)
end
IdModelOptions->>TensorIndexer: Use TensorIndexer (unless unsupported)
|
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.
8 files reviewed, no comments
The option no longer makes any difference since #5828