aboutsummaryrefslogtreecommitdiff
path: root/src/core/cpu/kernels/elementwise
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2021-06-08 10:42:54 +0100
committerPablo Marquez Tello <pablo.tello@arm.com>2021-06-08 12:11:12 +0000
commit5e53fc65a6d7a966541c3020593eefc5222ef914 (patch)
treebe36dff93dfe3daa26c605f9bf367cd44451df2e /src/core/cpu/kernels/elementwise
parent8ae3cdadbc96910171d35abaab633be03b07d6f4 (diff)
downloadComputeLibrary-5e53fc65a6d7a966541c3020593eefc5222ef914.tar.gz
Add guards on SVE kernels
Some compiling issues are reported when building through ArmNN. Resolves: COMPMID-4569 Change-Id: If464fda9157fbdba678e54f07b235e3ef00ee51a Signed-off-by: Michalis Spyrou <michalis.spyrou@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5777 Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Reviewed-by: Pablo Marquez Tello <pablo.tello@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/core/cpu/kernels/elementwise')
-rw-r--r--src/core/cpu/kernels/elementwise/sve/elementwise.cpp4
-rw-r--r--src/core/cpu/kernels/elementwise/sve/elementwise_unary.cpp4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/core/cpu/kernels/elementwise/sve/elementwise.cpp b/src/core/cpu/kernels/elementwise/sve/elementwise.cpp
index 2c3bb0ff7c..58ebb28fe5 100644
--- a/src/core/cpu/kernels/elementwise/sve/elementwise.cpp
+++ b/src/core/cpu/kernels/elementwise/sve/elementwise.cpp
@@ -21,6 +21,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
+#if defined(__ARM_FEATURE_SVE)
#include "arm_compute/core/Helpers.h"
#include "arm_compute/core/Types.h"
#include "src/core/cpu/kernels/elementwise/sve/elementwise_list.h"
@@ -306,4 +307,5 @@ template void elementwise_comparison_op<ComparisonOperation::LessEqual, float16_
template void elementwise_comparison_op<ComparisonOperation::LessEqual, int16_t>(const ITensor *in1, const ITensor *in2, ITensor *out, const Window &window);
template void elementwise_comparison_op<ComparisonOperation::LessEqual, uint8_t>(const ITensor *in1, const ITensor *in2, ITensor *out, const Window &window);
} // namespace cpu
-} // namespace arm_compute \ No newline at end of file
+} // namespace arm_compute
+#endif /* defined(__ARM_FEATURE_SVE) */ \ No newline at end of file
diff --git a/src/core/cpu/kernels/elementwise/sve/elementwise_unary.cpp b/src/core/cpu/kernels/elementwise/sve/elementwise_unary.cpp
index cb58548f0b..ddf1febd66 100644
--- a/src/core/cpu/kernels/elementwise/sve/elementwise_unary.cpp
+++ b/src/core/cpu/kernels/elementwise/sve/elementwise_unary.cpp
@@ -21,6 +21,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
+#if defined(__ARM_FEATURE_SVE)
#include "arm_compute/core/Helpers.h"
#include "arm_compute/core/ITensor.h"
#include "arm_compute/core/Types.h"
@@ -108,4 +109,5 @@ template void elementwise_sve_op<float16_t>(const ITensor *in, ITensor *out, con
template void elementwise_sve_op<float32_t>(const ITensor *in, ITensor *out, const Window &window, ElementWiseUnary op);
template void elementwise_sve_op<int32_t>(const ITensor *in, ITensor *out, const Window &window, ElementWiseUnary op);
} // namespace cpu
-} // namespace arm_compute \ No newline at end of file
+} // namespace arm_compute
+#endif /* defined(__ARM_FEATURE_SVE) */ \ No newline at end of file