From e239302e49a2fa20dd88e0d3c0a46bf8f21e19be Mon Sep 17 00:00:00 2001 From: ForFishes <2282912238@qq.com> Date: Sun, 27 Sep 2020 15:48:21 +0800 Subject: [PATCH] fix the comment --- paddle/fluid/operators/matmul_v2_op.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/paddle/fluid/operators/matmul_v2_op.h b/paddle/fluid/operators/matmul_v2_op.h index 3099b06aecb..70a4cdccf3c 100644 --- a/paddle/fluid/operators/matmul_v2_op.h +++ b/paddle/fluid/operators/matmul_v2_op.h @@ -489,9 +489,6 @@ class MatMulV2GradKernel : public framework::OpKernel { } void Compute(const framework::ExecutionContext& ctx) const override { - // auto* X = ctx.Input("X"); - // auto* Y = ctx.Input("Y"); - // auto* dOut = ctx.Input(framework::GradVarName("Out")); bool transpose_x = ctx.Attr("trans_x"); bool transpose_y = ctx.Attr("trans_y"); @@ -531,7 +528,6 @@ class MatMulV2GradKernel : public framework::OpKernel { y_dims.cbegin()); } - VLOG(0) << "is_broadcast: " << is_broadcast; // Case2: no broadcast or no batch size, it aims to speed and it is same as // matmul in old version. if (!is_broadcast) { -- GitLab