PaddlePaddle / Paddle

PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice (『飞桨』核心框架,深度学习&机器学习高性能单机、分布式训练和跨平台部署)
http://www.paddlepaddle.org/
Apache License 2.0
21.66k stars 5.44k forks source link

CI测试不review #64057

Closed co63oc closed 1 week ago

co63oc commented 1 week ago

PR Category

Others

PR Types

Others

Description

移除 paddle/fluid/operators/fused/attention_layer_norm.h

paddle-bot[bot] commented 1 week ago

你的PR提交成功,感谢你对开源项目的贡献! 请关注后续CI自动化测试结果,详情请参考Paddle-CI手册。 Your PR has been submitted. Thanks for your contribution! Please wait for the result of CI firstly. See Paddle CI Manual for details.

SigureMo commented 1 week ago

替换头文件后 WARP_SIZE 提示错误,修改名称,如果不修改错误信息可以查看PR https://github.com/PaddlePaddle/Paddle/pull/64057

这个 @zrr1999 有经验,#61529 里也遇到过这个问题,报错看起来也是一样的(词法上的),应该是这里的 WARP_SIZE 与其他地方 define 的 WARP_SIZE 冲突,宏展开后 template <int WARP_SIZE> 变为 template <int 32> 导致词法分析时就出问题了,解决方案也很简单,要么改模板参数名字,要么改宏的名字

co63oc commented 1 week ago

替换头文件后 WARP_SIZE 提示错误,修改名称,如果不修改错误信息可以查看PR #64057

这个 @zrr1999 有经验,#61529 里也遇到过这个问题,报错看起来也是一样的(词法上的),应该是这里的 WARP_SIZE 与其他地方 define 的 WARP_SIZE 冲突,宏展开后 template <int WARP_SIZE> 变为 template <int 32> 导致词法分析时就出问题了,解决方案也很简单,要么改模板参数名字,要么改宏的名字

是这样,是在这个PR中修改 https://github.com/PaddlePaddle/Paddle/pull/64051