[Precision Depth Alignment] paddle.sqrt and paddle.rsqrt accuracy and torch alignment #75367
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
Operator Mechanism
PR Types
Bug fixes
Description
简要改动总结
sqrt 反向:由
one_half * dout / out改为dout / (two * out)。常量从 0.5 改为 2,等价重写但计算顺序不同,和 PyTorch 表达一致,可能带来更接近 PyTorch 的舍入结果(尤其在半精度/bfloat16)。rsqrt 反向:公式不变
(-0.5 * dout * out^3),仅将连乘写成(out * out * out)的分组形式,逻辑与之前相同。复测结果:
paddle.sqrt 对齐全部case(共460个)
paddle.rqrt 对齐全部case(共130个)
pcard-67164