Skip to content

Commit 05640ae

Browse files
digantdesaifacebook-github-bot
authored andcommitted
bugfix
Summary: Fixes typo Differential Revision: D74495058
1 parent f688329 commit 05640ae

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

Lines changed: 2 additions & 2 deletions
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)