From a3c9a3b3d56f0369b199512fef832e6db958a601 Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Tue, 8 Dec 2020 21:02:16 +0000 Subject: COMPMID-3874: Create ArithmeticAddition SVE/SVE2 Change-Id: I4ec7561a7f6a42a22b8187968ae302dbe75023bc Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4753 Tested-by: Arm Jenkins Reviewed-by: Sang-Hoon Park Comments-Addressed: Arm Jenkins --- SConstruct | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'SConstruct') diff --git a/SConstruct b/SConstruct index 6b20ac2177..e19d855210 100644 --- a/SConstruct +++ b/SConstruct @@ -66,7 +66,7 @@ vars.AddVariables( PathVariable("linker_script", "Use an external linker script", "", PathVariable.PathAccept), PathVariable("external_tests_dir", "Add examples, benchmarks and tests to the tests suite", "", PathVariable.PathAccept), ListVariable("custom_options", "Custom options that can be used to turn on/off features", "none", ["disable_mmla_fp"]), - ListVariable("data_type_support", "Enable a list of data types to support", "all", ["qasymm8", "qasymm8_signed", "qsymm16", "fp16", "fp32"]), + ListVariable("data_type_support", "Enable a list of data types to support", "all", ["qasymm8", "qasymm8_signed", "qsymm16", "fp16", "fp32", "integer"]), ("toolchain_prefix", "Override the toolchain prefix", ""), ("compiler_prefix", "Override the compiler prefix", ""), ("extra_cxx_flags", "Extra CXX flags to be appended to the build command", ""), @@ -306,6 +306,8 @@ if env['data_type_support']: env.Append(CXXFLAGS = ['-DENABLE_QASYMM8_SIGNED_KERNELS']) if any(i in env['data_type_support'] for i in ['all', 'qsymm16']): env.Append(CXXFLAGS = ['-DENABLE_QSYMM16_KERNELS']) + if any(i in env['data_type_support'] for i in ['all', 'integer']): + env.Append(CXXFLAGS = ['-DENABLE_INTEGER_KERNELS']) if env['standalone']: env.Append(CXXFLAGS = ['-fPIC']) -- cgit v1.2.1