aboutsummaryrefslogtreecommitdiff
path: root/src/core/NEON/kernels/NEDequantizationLayerKernel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/NEON/kernels/NEDequantizationLayerKernel.cpp')
-rw-r--r--src/core/NEON/kernels/NEDequantizationLayerKernel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/NEON/kernels/NEDequantizationLayerKernel.cpp b/src/core/NEON/kernels/NEDequantizationLayerKernel.cpp
index d11f04a82f..e52f53ea04 100644
--- a/src/core/NEON/kernels/NEDequantizationLayerKernel.cpp
+++ b/src/core/NEON/kernels/NEDequantizationLayerKernel.cpp
@@ -194,7 +194,7 @@ void run_dequantization_qsymm8(const ITensor *input, ITensor *output, const Wind
// Compute left-over elements
for(; x < window_end_x; ++x)
{
- uint8_t val = *(in_ptr + x);
+ int8_t val = *(in_ptr + x);
*(out_ptr + x) = static_cast<T>(dequantize(val, scale));
}
},