From 68adf4449b1f92dd2362d88bb0fd565c2c06d22c Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Thu, 7 Nov 2019 11:46:09 +0000 Subject: COMPMID-2893: Bare-metal build failures Changes the types of the multipiers/shifts to int32_t instead of int. Change-Id: Id07521f7cf712352e617fa9243cbf104bffe9634 Signed-off-by: Georgios Pinitas Reviewed-on: https://review.mlplatform.org/c/2239 Reviewed-by: Michalis Spyrou Comments-Addressed: Arm Jenkins --- arm_compute/core/Types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h index 1c9e8ce891..9551cc6547 100644 --- a/arm_compute/core/Types.h +++ b/arm_compute/core/Types.h @@ -1882,8 +1882,8 @@ struct GEMMLowpOutputStageInfo int gemmlowp_shift{ 0 }; /**< GEMMLowp output stage shift used for quantizing to uint8 */ int gemmlowp_min_bound{ 0 }; /**< GEMMLowp min value used to saturate down the output result before converting back to QASYMM8 */ int gemmlowp_max_bound{ 0 }; /**< GEMMLowp max value used to saturate down the output result before converting back to QASYMM8 */ - std::vector gemmlowp_multipliers{}; /**< GEMMLowp output stage multiplier used for quantizing to QASYMM8 */ - std::vector gemmlowp_shifts{}; /**< GEMMLowp output stage multiplier used for quantizing to QASYMM8 */ + std::vector gemmlowp_multipliers{}; /**< GEMMLowp output stage multiplier used for quantizing to QASYMM8 */ + std::vector gemmlowp_shifts{}; /**< GEMMLowp output stage multiplier used for quantizing to QASYMM8 */ }; /** GEMM LHS (Left Hand Side) matrix information */ -- cgit v1.2.1