From 3091b06807257a6db0ff03654681f87526f37955 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 15 Feb 2019 14:45:04 +0000 Subject: IVGCVSW-2610 Add Quantization Tool Executable * Also added TensorInfos to the output slots in the SerializerTests to create valid ArmNN networks for serialization Change-Id: I092b1ac889dd5e05cb1c10c9dfb573acaf1970d9 Signed-off-by: Jim Flynn --- cmake/GlobalConfig.cmake | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'cmake') diff --git a/cmake/GlobalConfig.cmake b/cmake/GlobalConfig.cmake index 6b6a424ca7..15c1a7fdb2 100644 --- a/cmake/GlobalConfig.cmake +++ b/cmake/GlobalConfig.cmake @@ -14,6 +14,7 @@ option(GPERFTOOLS_ROOT "Location where the gperftools 'include' and 'lib' folder # options used for tensorflow lite support option(BUILD_TF_LITE_PARSER "Build Tensorflow Lite parser" OFF) option(BUILD_ARMNN_SERIALIZER "Build Armnn Serializer" OFF) +option(BUILD_ARMNN_QUANTIZER "Build ArmNN quantizer" OFF) option(FLATC_DIR "Path to Flatbuffers compiler" OFF) option(TF_LITE_GENERATED_PATH "Tensorflow lite generated C++ schema location" OFF) option(FLATBUFFERS_ROOT "Location where the flatbuffers 'include' and 'lib' folders to be found" Off) @@ -366,5 +367,9 @@ if(NOT BUILD_ARMNN_SERIALIZER) message(STATUS "Armnn Serializer support is disabled") endif() +if(NOT BUILD_ARMNN_QUANTIZER) + message(STATUS "ArmNN Quantizer support is disabled") +endif() + # ArmNN source files required for all build options include_directories(SYSTEM third-party) -- cgit v1.2.1