aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorJim Flynn <jim.flynn@arm.com>2019-02-15 14:45:04 +0000
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-02-21 08:26:39 +0000
commit3091b06807257a6db0ff03654681f87526f37955 (patch)
tree30855ced21aa74400d6910040e300d3eda15f269 /cmake
parent30b0020478652e441a5dff4880261f7c7007bb6c (diff)
downloadarmnn-3091b06807257a6db0ff03654681f87526f37955.tar.gz
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 <jim.flynn@arm.com>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/GlobalConfig.cmake5
1 files changed, 5 insertions, 0 deletions
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)