-
Notifications
You must be signed in to change notification settings - Fork 210
【CUDA Kernel No.95、96、97、98、99】算子Kernel修复 #2252
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: develop
Are you sure you want to change the base?
Conversation
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
|
|
||
| #include "paddle/phi/core/kernel_registry.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.
目前有编译报错,原因是paddle/phi/kernels/quantize_linear_kernel.h头文件中声明不全,需要补充。同时需要去掉#include "paddle/phi/kernels/gpu/quantize_linear_kernel.cu"和#include "paddle/phi/kernels/impl/quantize_linear_impl.h",并且需要确保paddle/phi/kernels/gpu/quantize_linear_kernel.cu这个文件在cmakelists中已经编译。
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.
我看有人提交了对quantize_linear_kernel的paddle仓和本仓库的修改,ci也跑完了,我这边把对quantize_linear_kernel的修改删掉了
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.
reduce_kernel_register在paddle仓有缺少的声明,在这个pr里面PaddlePaddle/Paddle#76781 ,我就不重复提交了
PR Category
Performance Optimization
PR Types
Bug fixes
Description
将对应注册文件引用问题修改