You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
你的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.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Category
Custom Device
PR Types
Others
Description
在之前的 #64632 中,使用不同版本的XRE的时候,对应的XHPC的日期时间戳是不同的。其原因是,从某个版本的开始,XHPC里面的FA需要XRE5,但是KL2需要XRE4。
不过因为其实FA并不支持KL2,所以为了FA而卡住KL2使用新版本的XHPC是不太好的。
本PR的修改是:当不使用XRE5的时候,也同时关掉对FA的依赖。即:在算子绑定的地方通过条件编译走到
phi::errors::Unimplemented
上去,并且通过xpu.cmake
里面加上判断,不使用XPU_XFA_INC_DIR
和XPU_XFA_LIB
。此外,XHPC在6月份改了一波产出的名字,本PR也跟着改了。
此外,XHPC中的XBLAS从某天开始不再支持KL2了,因此本PR加上了条件编译,如果是KL2的话会走XDNN的矩阵乘法。
备注:本PR只是同步了不同分支下面XHPC的日期,之前一个是0515一个是0601,现在统一到了0601。后续再更新XHPC到最新版本。