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 types
Bug fixes
PR changes
Others
Description
Other
修复PIR模式下,test/dygraph_to_static/test_ifelse.py文件中单测 TestDygraphIfElseNet.test_ast_to_func__ast_pir。
具体op中涉及到使用次数的验证,必须置于VerifyRegion中。本pr将cf.tuple_push和cf.tuple_pop中的对于inlet&outlet的使用次数验证从Verify函数迁移到了VerifyRegion中。 这是因为控制流clone的时候,是先clone算子,后修改操作数。在Verify中的话,会导致clone失败。
动转静前反向切图时,未考虑backward可能会给模型前端插入工具算子的行为,这会让原始记录的前向算子范围错误。本pr对此进行了修复。
动转静前反向切图时,在统计前反向图之间的中间变量时,未考虑反向子图的控制流下子block对前向全局变量的访问,导致计算得到的中间变量集合不全,从而出错。本pr对此进行了修复。
IrPrinter在打印Program的时候,支持同时打印keyword argument。
执行器在判定Value是否具有kAttrIsPersistable属性的时候,需要考虑definition_op为空指针的情形。本pr对此进行了修复
Other
Pcard-67164