diff --git a/paddle/fluid/imperative/layer.cc b/paddle/fluid/imperative/layer.cc index f1825eb60549df39465fb20a7b6f19988a43b783..3e682863795724bcd3d521976c8b061b5602c8eb 100644 --- a/paddle/fluid/imperative/layer.cc +++ b/paddle/fluid/imperative/layer.cc @@ -301,7 +301,6 @@ static void OpBaseRunImpl(const framework::OperatorBase& op, } } - // VLOG(3) << "Running Op " << op.Type(); VLOG(5) << LayerDebugString(op.Type(), ins, outs); auto prepared_op = PreparedOp::Prepare(ins, outs, *op_kernel, place, attrs); @@ -351,7 +350,6 @@ static void ClearNoNeedBufferInputs(OpBase* op) { PADDLE_ENFORCE_EQ(var.IsType(), true, platform::errors::PermissionDenied( "NoNeedBufferVars only support LoDTensor")); - // TODO(zjl): support higher order derivatives auto new_var = new VariableWrapper(each_var->Name()); auto* new_tensor = new_var->MutableVar()->GetMutable();