aboutsummaryrefslogtreecommitdiff
path: root/cmake/Options.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/Options.cmake')
-rw-r--r--cmake/Options.cmake119
1 files changed, 119 insertions, 0 deletions
diff --git a/cmake/Options.cmake b/cmake/Options.cmake
new file mode 100644
index 0000000000..2e351fde7d
--- /dev/null
+++ b/cmake/Options.cmake
@@ -0,0 +1,119 @@
+# Copyright (c) 2023-2024 Arm Limited.
+#
+# SPDX-License-Identifier: MIT
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to
+# deal in the Software without restriction, including without limitation the
+# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+# sell copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+
+include(CMakeDependentOption)
+
+# ---------------------------------------------------------------------
+
+option(BUILD_SHARED_LIBS "Build shared libraries" ON)
+
+option(ARM_COMPUTE_WERROR "Enable the -Werror compilation flag" OFF)
+option(ARM_COMPUTE_EXCEPTIONS "Enable C++ exception support" ON)
+option(ARM_COMPUTE_LOGGING "Enable logging" OFF)
+option(ARM_COMPUTE_BUILD_EXAMPLES "Build example programs" OFF)
+option(ARM_COMPUTE_BUILD_TESTING "Build tests" OFF)
+option(ARM_COMPUTE_CPPTHREADS "Enable C++11 threads backend" OFF)
+option(ARM_COMPUTE_OPENMP "Enable OpenMP backend" ON)
+
+#
+if(ARM_COMPUTE_CPPTHREADS)
+ add_definitions(-DARM_COMPUTE_CPP_SCHEDULER)
+endif()
+#
+if(ARM_COMPUTE_LOGGING)
+ add_definitions(-DARM_COMPUTE_LOGGING_ENABLED)
+endif()
+
+set(ARM_COMPUTE_ARCH armv8-a CACHE STRING "Architecture to use")
+
+# ---------------------------------------------------------------------
+# Backends
+
+option(ARM_COMPUTE_ENABLE_BF16_VALIDATION "" ON)
+option(ARM_COMPUTE_ENABLE_SVE_VALIDATION "" OFF)
+
+option(ENABLE_NEON "Enable Arm® Neon™ support" ON)
+option(ARM_COMPUTE_CPU_ENABLED "" ON)
+option(ARM_COMPUTE_ENABLE_NEON "" ON)
+option(ARM_COMPUTE_ENABLE_I8MM "" ON)
+option(ENABLE_FP32_KERNELS "" ON)
+option(ENABLE_QASYMM8_KERNELS "" ON)
+option(ENABLE_QASYMM8_SIGNED_KERNELS "" ON)
+option(ENABLE_QSYMM16_KERNELS "" ON)
+option(ENABLE_INTEGER_KERNELS "" ON)
+option(ENABLE_NHWC_KERNELS "" ON)
+option(ENABLE_NCHW_KERNELS "" ON)
+option(ARM_COMPUTE_GRAPH_ENABLED "" ON)
+option(ARM_COMPUTE_ENABLE_SVEF32MM "" ON)
+option(ARM_COMPUTE_ENABLE_FIXED_FORMAT_KERNELS "" ON)
+option(ENABLE_FP16_KERNELS "" OFF)
+option(ARM_COMPUTE_ENABLE_FP16 "" OFF)
+
+if(ENABLE_NEON)
+ add_definitions(-DENABLE_NEON)
+endif()
+if(ARM_COMPUTE_CPU_ENABLED)
+ add_definitions(-DARM_COMPUTE_CPU_ENABLED)
+endif()
+if(ARM_COMPUTE_ENABLE_NEON)
+ add_definitions(-DARM_COMPUTE_ENABLE_NEON)
+endif()
+if(ARM_COMPUTE_ENABLE_FP16)
+ add_definitions(-DARM_COMPUTE_ENABLE_FP16)
+endif()
+if(ARM_COMPUTE_ENABLE_I8MM)
+ add_definitions(-DARM_COMPUTE_ENABLE_I8MM)
+endif()
+if(ENABLE_FP16_KERNELS)
+ add_definitions(-DENABLE_FP16_KERNELS)
+endif()
+if(ENABLE_FP32_KERNELS)
+ add_definitions(-DENABLE_FP32_KERNELS)
+endif()
+if(ENABLE_QASYMM8_KERNELS)
+ add_definitions(-DENABLE_QASYMM8_KERNELS)
+endif()
+if(ENABLE_QASYMM8_SIGNED_KERNELS)
+ add_definitions(-DENABLE_QASYMM8_SIGNED_KERNELS)
+endif()
+if(ENABLE_QSYMM16_KERNELS)
+ add_definitions(-DENABLE_QSYMM16_KERNELS)
+endif()
+if(ENABLE_INTEGER_KERNELS)
+ add_definitions(-DENABLE_INTEGER_KERNELS)
+endif()
+if(ENABLE_NHWC_KERNELS)
+ add_definitions(-DENABLE_NHWC_KERNELS)
+endif()
+if(ENABLE_NCHW_KERNELS)
+ add_definitions(-DENABLE_NCHW_KERNELS)
+endif()
+if(ARM_COMPUTE_GRAPH_ENABLED)
+ add_definitions(-DARM_COMPUTE_GRAPH_ENABLED)
+endif()
+if(ARM_COMPUTE_ENABLE_SVEF32MM)
+ add_definitions(-DARM_COMPUTE_ENABLE_SVEF32MM)
+endif()
+if(ARM_COMPUTE_ENABLE_FIXED_FORMAT_KERNELS)
+ add_definitions(-DARM_COMPUTE_ENABLE_FIXED_FORMAT_KERNELS)
+endif()
+add_definitions(-D_GLIBCXX_USE_NANOSLEEP)