aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2019-11-07 11:46:09 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2019-11-07 17:25:10 +0000
commit68adf4449b1f92dd2362d88bb0fd565c2c06d22c (patch)
tree8325fdb67ccc92c0b1e922cf08dd52ec1504e08a
parentdbdea0d1c025b18d4d82c278c87454427918f5b4 (diff)
downloadComputeLibrary-68adf4449b1f92dd2362d88bb0fd565c2c06d22c.tar.gz
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 <georgios.pinitas@arm.com> Reviewed-on: https://review.mlplatform.org/c/2239 Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--arm_compute/core/Types.h4
1 files 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<int> gemmlowp_multipliers{}; /**< GEMMLowp output stage multiplier used for quantizing to QASYMM8 */
- std::vector<int> gemmlowp_shifts{}; /**< GEMMLowp output stage multiplier used for quantizing to QASYMM8 */
+ std::vector<int32_t> gemmlowp_multipliers{}; /**< GEMMLowp output stage multiplier used for quantizing to QASYMM8 */
+ std::vector<int32_t> gemmlowp_shifts{}; /**< GEMMLowp output stage multiplier used for quantizing to QASYMM8 */
};
/** GEMM LHS (Left Hand Side) matrix information */