未验证 提交 26d161ef 编写于 作者: B BiynXu 提交者: GitHub

fix nullptr bug of BmmGradInferMeta (#45765)

上级 22255528
...@@ -88,10 +88,14 @@ void BmmGradInferMeta(const MetaTensor& x, ...@@ -88,10 +88,14 @@ void BmmGradInferMeta(const MetaTensor& x,
const MetaTensor& out_grad, const MetaTensor& out_grad,
MetaTensor* x_grad, MetaTensor* x_grad,
MetaTensor* y_grad) { MetaTensor* y_grad) {
x_grad->set_dims(x.dims()); if (x_grad) {
y_grad->set_dims(y.dims()); x_grad->set_dims(x.dims());
x_grad->set_dtype(x.dtype()); x_grad->set_dtype(x.dtype());
y_grad->set_dtype(y.dtype()); }
if (y_grad) {
y_grad->set_dims(y.dims());
y_grad->set_dtype(y.dtype());
}
} }
void ChannelShuffleGradInferMeta(const MetaTensor& out_grad, void ChannelShuffleGradInferMeta(const MetaTensor& out_grad,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册