Closed robertbcalhoun closed 4 months ago
Compiler version:
host/bin/aarch64-buildroot-linux-gnu-g++ --version
aarch64-buildroot-linux-gnu-g++.br_real (Buildroot 2024.02.4) 13.3.0
Copyright (C) 2023 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Hi @robertbcalhoun
The following patch fixes the problem https://review.mlplatform.org/c/ml/ComputeLibrary/+/11840
Hope this helps
It does, thank you!
Output of 'strings libarm_compute.so | grep arm_compute_version': compiling from source, commit 505adb91 (tag: v24.06)
Platform: aarch64
Operating System: linux
Problem description: The following error is thrown when compiling under gcc 13:
I believe this is a false positive generated by lines 972..986, as the case statement does not handle the case where
odds == 0
.I believe the masking code will not be used when
odds == 0
. I addressed the warning by adding:Not filing a PR, as I am not confident that this is correct.