Paddle icon indicating copy to clipboard operation
Paddle copied to clipboard

CI测试不review

Open co63oc opened this issue 1 year ago • 3 comments
trafficstars

PR Category

Others

PR Types

Others

Description

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

co63oc avatar May 06 '24 10:05 co63oc

你的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.

paddle-bot[bot] avatar May 06 '24 10:05 paddle-bot[bot]

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

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

SigureMo avatar May 06 '24 14:05 SigureMo

替换头文件后 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

co63oc avatar May 06 '24 22:05 co63oc