-
Notifications
You must be signed in to change notification settings - Fork 74
Convert local includes in multidevice tests to quote style #5745
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
wujingyue
commented
Jan 2, 2026
- Convert local includes in multidevice tests to quote style
- Reorder include blocks to match Google C++ include ordering
- Add blank lines between third-party include groups and drop unused torch include
|
!test |
|
Review updated until commit b266da7 Auto-merge Status✅ Internal CI is finished Description
|
| Relevant files | |||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Formatting | 18 files
|
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 |
Greptile SummaryThis PR standardizes include styles across all 18 multidevice test files by converting local project includes from angle bracket style ( The PR makes purely mechanical/style changes with no functional modifications:
All 172 insertions and 172 deletions represent include statement reformatting only. Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant File as Test File
participant SelfH as Self Header
participant SysH as System Headers
participant ThirdP as Third-Party Headers
participant ProjH as Project Headers
File->>SelfH: #include "self.h"
Note over File,SelfH: (if applicable, first)
File->>SysH: #include <sys/types.h><br/>#include <unistd.h>
Note over File,SysH: System headers (angle brackets)
File->>ThirdP: #include <torch/...><br/>#include <gtest/...>
Note over File,ThirdP: Third-party headers (angle brackets)
File->>ProjH: #include "fusion.h"<br/>#include "ir/all_nodes.h"<br/>#include "tests/cpp/..."
Note over File,ProjH: Project local headers (quotes)
|
|
!test |
|
!test |