-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
Add cuDNN 9.0 #62498
Add cuDNN 9.0 #62498
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
cc @onecatcn for vis |
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
请问下这个PR什么时候能够合入? |
2024-03-07 08:46:39 0. You must have one RD (XiaoguangHu01,chenwhql,zhiqiu,Xreki,luotao1,qili93,Aurelius84) approval for the usage of const_cast. |
Can you remove useless You can see the reason below:
|
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
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 for const_cast
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
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
* fix cuDNN 9 problem * remove glog
* fix cuDNN 9 problem * remove glog
PR types
New features
PR changes
OPs
Description
This PR adds cuDNN 9.0. The cuDNN 9.0 has significantly improved the performance. For example, FP16 and BF16 fused flash attention engine performance has been significantly improved for NVIDIA GPUs:
See release-notes#cudnn-9-0-0 for details.
The major issues are that:
CUDNN_VERSION
has been changed toCUDNN_MAJOR * 10000 + CUDNN_MINOR * 100 + CUDNN_PATCHLEVEL
fromCUDNN_MAJOR * 1000 + CUDNN_MINOR * 100 + CUDNN_PATCHLEVEL
.This PR resolves above 2 issues.