Skip to content

Commit 6e959be

Browse files
authored
bugfix
Differential Revision: D74495058 Pull Request resolved: #10793
1 parent b866837 commit 6e959be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backends/cortex_m/ops/op_dequantize_per_tensor.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ Tensor& dequantize_per_tensor_out(
173173

174174
for (; i < numel; i++) {
175175
*out_data = dequantize_val<int8_t, float>(scale, zp, *input_data);
176-
*input_data++;
177-
*out_data++;
176+
input_data++;
177+
out_data++;
178178
}
179179
return out;
180180
}

0 commit comments

Comments
 (0)