[Bug Fix]未显式指定参数名造成 NumPy 断言语义不明确#76077
Merged
luotao1 merged 1 commit intoPaddlePaddle:developfrom Oct 30, 2025
Merged
Conversation
|
你的PR提交成功,感谢你对开源项目的贡献! |
wanghuancoder
approved these changes
Oct 30, 2025
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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
Execute Infrastructure
PR Types
Bug fixes
Description
使用
np.testing.assert_allclose时直接按位置顺序传入参数,未命名rtol和atol,可能在 NumPy 版本更新后导致语义错误或警告,降低代码稳定性和可维护性。显式命名
rtol和atol参数可以避免因 NumPy 参数位置改动或用户误读导致的问题,增强代码语义清晰度和兼容性。