Paddle [BUG] SPInnerOverlapLinear缺少部分梯度的计算,如x需要梯度,weight不需要梯度,weight需要梯度,x不需要梯度的情况。

juzqafwq  于 4个月前  发布在  其他
关注(0)|答案(1)|浏览(40)

bug描述 Describe the Bug

查看代码的反向,发现这个算子没有考虑到部分需要梯度的情况,如:
情况一:

x.stop_gradient = True
weight.stop_gradient = False
bias.stop_gradient = False

情况二:

x.stop_gradient = False
weight.stop_gradient = True
bias.stop_gradient = True

其他补充信息 Additional Supplementary Information

No response

相关问题