-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Fix cpplint format check #10338
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
Fix cpplint format check #10338
Conversation
paddle/cuda/include/hl_base.h
Outdated
@@ -207,8 +206,8 @@ typedef struct { | |||
|
|||
#ifdef __NVCC__ | |||
|
|||
#include "cuda_runtime.h" | |||
#include "hl_cuda.h" | |||
#include "./cuda_runtime.h" |
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.
May change to #include <cuda_runtime.h>
?
paddle/cuda/include/hl_base.h
Outdated
#include "cuda_runtime.h" | ||
#include "hl_cuda.h" | ||
#include "./cuda_runtime.h" | ||
#include "./hl_cuda.h" |
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.
#include "paddle/cuda/include/hl_cuda.h"
is better? Please double check.
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.
LGTM
fixes #10337