From 869d444b921261a809b52bb7b71a86105748338f Mon Sep 17 00:00:00 2001 From: "xiaoli.liu@intel.com" Date: Mon, 24 Dec 2018 16:16:31 +0800 Subject: [PATCH] Fix comments misunderstanding test=develop --- paddle/fluid/operators/dequantize_op.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paddle/fluid/operators/dequantize_op.cc b/paddle/fluid/operators/dequantize_op.cc index 8c621039e32..38159f84a0d 100644 --- a/paddle/fluid/operators/dequantize_op.cc +++ b/paddle/fluid/operators/dequantize_op.cc @@ -33,7 +33,7 @@ void DeQuantOpMaker::Make() { AddInput("Input", "input data"); AddOutput("Output", "output data"); AddAttr("Scale", "scale data").SetDefault({1.0f}); - AddComment(R"DOC(This op will quantize data from INT8 to FP32)DOC"); + AddComment(R"DOC(This op will dequantize data from INT8 to FP32)DOC"); } } // namespace operators -- GitLab