diff --git a/test/operators/test_dequantize_op.cpp b/test/operators/test_dequantize_op.cpp index 41390d74a92d9cab615244600079373e84fb31d2..981439c66fdf9902b4451a322099f2e885a1b396 100644 --- a/test/operators/test_dequantize_op.cpp +++ b/test/operators/test_dequantize_op.cpp @@ -19,7 +19,7 @@ limitations under the License. */ namespace paddle_mobile { void dequantize(const Tensor* input, const float scale, Tensor* output) { - const int32_t* x = input->data(); + const int32_t* x = input->data(); float* y = output->mutable_data(); size_t size = output->numel(); for (size_t i = 0; i < size; ++i) {