-
Notifications
You must be signed in to change notification settings - Fork 77
Remove unnecessary header #5897
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
clangd told me this header is not necessary, but I haven't checked it other than building. Wdyt?
|
!test |
Description
|
| Relevant files | |||
|---|---|---|---|
| Enhancement |
|
PR Reviewer Guide
Here are some key observations to aid the review process:
| 🧪 PR contains tests |
| 🔒 No security concerns identified |
| ⚡ Recommended focus areas for review |
Insufficient Verification
|
Test failures
-
(Medium, 1)
Thunder nvFuser CUDA: nanoGPT autograd output is zero vs. PyTorch reference (test_networks)Test Name H100 Source thunder.tests.test_networks.test_nanogpt_complete_autograd_nvfuser_cuda_thunder.dtypes.float32 ❌
Greptile OverviewGreptile Summaryremoved the
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Developer
participant clangd
participant base.h
participant Compiler
Developer->>clangd: "Analyze includes in base.h"
clangd->>base.h: "Check #include concepts"
clangd->>base.h: "Verify usage of std::is_enum_v and std::is_convertible_v"
clangd->>Developer: "Header unnecessary - traits from type_traits"
Developer->>base.h: "Remove #include concepts"
Developer->>Compiler: "Build project"
Compiler->>base.h: "requires keyword is C++20 language feature"
Compiler->>base.h: "std::is_enum_v from type_traits"
Compiler->>Developer: "Build successful"
|
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.
1 file reviewed, no comments
clangd told me this header is not necessary, but I haven't checked it other than building. Wdyt?