From af56d520b486079e5f773a530582a0a710f7f376 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Wed, 1 Jul 2020 12:35:30 +0100 Subject: COMPMID-3324: Fix per-channel quantization on N blocking Direct the column to start from in the quantized code Signed-off-by: Georgios Pinitas Change-Id: I8231e0b541c6b1b76becf349a1d6ddf973ade9e2 Signed-off-by: Georgios Pinitas Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3488 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins --- src/core/NEON/kernels/arm_gemm/quantized.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/NEON/kernels/arm_gemm/quantized.hpp') diff --git a/src/core/NEON/kernels/arm_gemm/quantized.hpp b/src/core/NEON/kernels/arm_gemm/quantized.hpp index a91a888ad9..b0e0c3b580 100644 --- a/src/core/NEON/kernels/arm_gemm/quantized.hpp +++ b/src/core/NEON/kernels/arm_gemm/quantized.hpp @@ -28,7 +28,7 @@ namespace arm_gemm { template void requantize_block_32(const Requantize32 &qp, unsigned int width, unsigned int height, const Tin *input, unsigned int in_stride, Tout *output, unsigned int out_stride, - const int32_t *row_bias, const int32_t *col_bias); + const int32_t *row_bias, const int32_t *col_bias, unsigned int start_col); template void compute_row_sums(const Requantize32 &qp, unsigned int width, unsigned int height, -- cgit v1.2.1