Geoffrey Martin-Noble | 552d3f8 | 2021-05-25 17:56:09 -0700 | [diff] [blame] | 1 | # Copyright 2019 The IREE Authors |
Ben Vanik | 185d30c | 2019-09-19 14:24:11 -0700 | [diff] [blame] | 2 | # |
Geoffrey Martin-Noble | 552d3f8 | 2021-05-25 17:56:09 -0700 | [diff] [blame] | 3 | # Licensed under the Apache License v2.0 with LLVM Exceptions. |
| 4 | # See https://llvm.org/LICENSE.txt for license information. |
| 5 | # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Ben Vanik | 185d30c | 2019-09-19 14:24:11 -0700 | [diff] [blame] | 6 | |
Geoffrey Martin-Noble | 4fd7a1d | 2022-11-17 15:09:49 -0800 | [diff] [blame] | 7 | cmake_minimum_required(VERSION 3.21...3.24) |
Ben Vanik | 552c5f4 | 2021-06-21 17:39:14 -0700 | [diff] [blame] | 8 | |
| 9 | # LLVM requires CMP0116 for tblgen: https://reviews.llvm.org/D101083 |
| 10 | # CMP0116: Ninja generators transform `DEPFILE`s from `add_custom_command()` |
| 11 | # New in CMake 3.20. https://cmake.org/cmake/help/latest/policy/CMP0116.html |
| 12 | set(CMAKE_POLICY_DEFAULT_CMP0116 OLD) |
| 13 | |
Ben Vanik | 512d2d3 | 2019-09-20 13:22:34 -0700 | [diff] [blame] | 14 | set(CMAKE_EXPORT_COMPILE_COMMANDS ON) |
Ben Vanik | 185d30c | 2019-09-19 14:24:11 -0700 | [diff] [blame] | 15 | |
Stella Laurenzo | 688670f | 2021-09-24 18:16:25 -0700 | [diff] [blame] | 16 | project(IREE ASM C CXX) |
Lei Zhang | 6c5907b | 2020-06-02 09:06:08 -0700 | [diff] [blame] | 17 | set(CMAKE_C_STANDARD 11) |
Scott Todd | 07349fa | 2022-07-27 12:16:05 -0700 | [diff] [blame] | 18 | set(CMAKE_CXX_STANDARD 17) |
Stella Laurenzo | bc09f0e | 2022-07-27 16:22:39 -0700 | [diff] [blame] | 19 | # LLVM defines this as a CACHE property and uses a policy that causes the |
| 20 | # cache value to take precedence. This is causing us to mix 17/14 across |
| 21 | # the boundary. |
| 22 | # TODO: Remove this once the LLVM mechanism is updated. See: |
| 23 | # https://discourse.llvm.org/t/important-new-toolchain-requirements-to-build-llvm-will-most-likely-be-landing-within-a-week-prepare-your-buildbots/61447/9 |
| 24 | set(CMAKE_CXX_STANDARD 17 CACHE STRING "C++ standard to conform to" FORCE) |
Ben Vanik | 185d30c | 2019-09-19 14:24:11 -0700 | [diff] [blame] | 25 | set(IREE_IDE_FOLDER IREE) |
| 26 | set_property(GLOBAL PROPERTY USE_FOLDERS ON) |
| 27 | |
Scott Todd | 1a1aea6 | 2022-04-28 09:12:11 -0700 | [diff] [blame] | 28 | if(MSVC) |
Ben Vanik | 96fd277 | 2021-04-19 20:30:56 -0700 | [diff] [blame] | 29 | enable_language(ASM_MASM) |
| 30 | else() |
| 31 | enable_language(ASM) |
| 32 | endif() |
| 33 | |
Cindy Liu | b1bfb9c | 2022-06-27 10:46:13 -0700 | [diff] [blame] | 34 | # Set the default CMake build type so some of the build type dependent setting |
| 35 | # in the submodules and functions (IREE assertion) can be set properly. |
Cindy Liu | 23dafd0 | 2022-06-22 15:36:21 -0700 | [diff] [blame] | 36 | set(DEFAULT_CMAKE_BUILD_TYPE "Release") |
| 37 | if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) |
| 38 | message(STATUS "No build type selected, default to ${DEFAULT_CMAKE_BUILD_TYPE}") |
| 39 | set(CMAKE_BUILD_TYPE "${DEFAULT_CMAKE_BUILD_TYPE}" CACHE STRING "Build type (default ${DEFAULT_CMAKE_BUILD_TYPE})" FORCE) |
| 40 | endif() |
| 41 | |
Scott Todd | 99e9f5b | 2021-12-30 10:56:12 -0800 | [diff] [blame] | 42 | include(CMakeDependentOption) |
| 43 | |
Lei Zhang | 7e253da | 2020-06-10 07:51:19 -0700 | [diff] [blame] | 44 | #------------------------------------------------------------------------------- |
| 45 | # Project component configuration |
| 46 | #------------------------------------------------------------------------------- |
| 47 | |
Ben Vanik | 56d44bf | 2020-05-15 13:20:50 -0700 | [diff] [blame] | 48 | option(IREE_ENABLE_RUNTIME_TRACING "Enables instrumented runtime tracing." OFF) |
Scott Todd | 1cd9f0a | 2021-07-29 10:05:44 -0700 | [diff] [blame] | 49 | option(IREE_ENABLE_COMPILER_TRACING "Enables instrumented compiler tracing." OFF) |
Ben Vanik | 2d79c20 | 2022-10-24 15:08:57 -0700 | [diff] [blame] | 50 | option(IREE_ENABLE_RENDERDOC_PROFILING "Enables profiling HAL devices with the RenderDoc tool." OFF) |
Geoffrey Martin-Noble | fe74bd4 | 2021-10-27 22:17:13 -0700 | [diff] [blame] | 51 | option(IREE_ENABLE_THREADING "Builds IREE in with thread library support." ON) |
Rob Suderman | d42e002 | 2022-06-08 16:38:45 -0700 | [diff] [blame] | 52 | option(IREE_ENABLE_CLANG_TIDY "Builds IREE in with clang tidy enabled on IREE's libraries." OFF) |
Ben Vanik | 512d2d3 | 2019-09-20 13:22:34 -0700 | [diff] [blame] | 53 | |
Ben Vanik | 4aae003 | 2022-04-19 15:49:26 -0700 | [diff] [blame] | 54 | # TODO(#8469): remove the dependency on cpuinfo entirely. |
| 55 | option(IREE_ENABLE_CPUINFO "Enables runtime use of cpuinfo for processor topology detection." ON) |
| 56 | |
Marius Brehler | edfc57f | 2019-12-18 11:19:38 -0800 | [diff] [blame] | 57 | option(IREE_BUILD_COMPILER "Builds the IREE compiler." ON) |
Ben Vanik | 512d2d3 | 2019-09-20 13:22:34 -0700 | [diff] [blame] | 58 | option(IREE_BUILD_TESTS "Builds IREE unit tests." ON) |
Lei Zhang | 22f0e24 | 2020-03-30 12:09:20 -0700 | [diff] [blame] | 59 | option(IREE_BUILD_DOCS "Builds IREE docs." OFF) |
Ben Vanik | 6b112ef | 2019-10-03 10:45:14 -0700 | [diff] [blame] | 60 | option(IREE_BUILD_SAMPLES "Builds IREE sample projects." ON) |
Scott Todd | 382fc63 | 2022-06-06 10:57:24 -0700 | [diff] [blame] | 61 | option(IREE_BUILD_PYTHON_BINDINGS "Builds the IREE python bindings" OFF) |
Stella Laurenzo | d3770ff | 2021-10-18 22:54:18 -0700 | [diff] [blame] | 62 | option(IREE_BUILD_TRACY "Builds tracy server tools." OFF) |
Ben Vanik | cd1132f | 2021-01-29 15:58:17 -0800 | [diff] [blame] | 63 | |
Scott Todd | 352da3f | 2022-07-20 15:25:11 -0700 | [diff] [blame] | 64 | option(IREE_BYTECODE_MODULE_FORCE_LLVM_SYSTEM_LINKER "Use the system linker when generating IREE modules in tests/samples/benchmarks (useful for Tracy)." OFF) |
bjacob | 1af90ee | 2022-03-28 22:10:53 -0400 | [diff] [blame] | 65 | |
Stella Laurenzo | bb1de96 | 2021-01-05 08:18:33 -0800 | [diff] [blame] | 66 | # Properties controlling version and naming of release artifacts. |
Stella Laurenzo | f33f5b5 | 2022-01-08 17:49:52 +0000 | [diff] [blame] | 67 | set(IREE_RELEASE_PACKAGE_SUFFIX "" CACHE STRING "Suffix to append to distributed package names") |
Stella Laurenzo | bb1de96 | 2021-01-05 08:18:33 -0800 | [diff] [blame] | 68 | set(IREE_RELEASE_VERSION "0.1a1" CACHE STRING "Version to embed in distributed packages") |
| 69 | set(IREE_RELEASE_REVISION "HEAD" CACHE STRING "Version control revision information to embed in distributed packages") |
| 70 | |
Ben Vanik | cd1132f | 2021-01-29 15:58:17 -0800 | [diff] [blame] | 71 | option(IREE_BUILD_BINDINGS_TFLITE "Builds the IREE TFLite C API compatibility shim" ON) |
Kojo Acquah | 5bf3994 | 2021-04-22 16:01:28 -0700 | [diff] [blame] | 72 | option(IREE_BUILD_BINDINGS_TFLITE_JAVA "Builds the IREE TFLite Java bindings with the C API compatibility shim" ON) |
Ben Vanik | cd1132f | 2021-01-29 15:58:17 -0800 | [diff] [blame] | 73 | |
Jerry Wu | b6b1dee | 2022-06-01 13:45:16 +0000 | [diff] [blame] | 74 | # Properties building and controlling benchmark suites. |
| 75 | option(IREE_BUILD_BENCHMARKS "Builds IREE benchmark suites." OFF) |
| 76 | # TODO(pzread): Currently IREE_ENABLE_COMPILATION_BENCHMARKS needs |
| 77 | # IREE_BUILD_BENCHMARKS. Eventually we will decouple them. |
| 78 | cmake_dependent_option(IREE_ENABLE_COMPILATION_BENCHMARKS "Builds IREE benchmark suites for compilation statistics." OFF ${IREE_BUILD_BENCHMARKS} OFF) |
| 79 | |
| 80 | option(IREE_BUILD_MICROBENCHMARKS "Builds IREE microbenchmark suites." OFF) |
| 81 | |
Stella Laurenzo | 0f005e5 | 2020-12-27 11:54:33 -0800 | [diff] [blame] | 82 | #------------------------------------------------------------------------------- |
| 83 | # Experimental project flags |
| 84 | #------------------------------------------------------------------------------- |
| 85 | |
Stella Laurenzo | 0f005e5 | 2020-12-27 11:54:33 -0800 | [diff] [blame] | 86 | option(IREE_BUILD_EXPERIMENTAL_REMOTING "Builds experimental remoting support." OFF) |
Ben Vanik | a372ab5 | 2022-07-25 18:40:22 -0700 | [diff] [blame] | 87 | option(IREE_BUILD_EXPERIMENTAL_VMVX_MMT4D "Enables MMT4D methods in the VMVX module." OFF) |
Scott Todd | f237b5e | 2022-01-28 11:02:25 -0800 | [diff] [blame] | 88 | option(IREE_BUILD_EXPERIMENTAL_WEB_SAMPLES "Builds experimental web samples." OFF) |
Jerry Wu | 16e2d9c | 2022-11-22 06:19:46 +0000 | [diff] [blame] | 89 | option(IREE_BUILD_EXPERIMENTAL_E2E_TEST_ARTIFACTS "Builds IREE E2E test artifacts suite generated by the e2e test framework." OFF) |
Stella Laurenzo | 0f005e5 | 2020-12-27 11:54:33 -0800 | [diff] [blame] | 90 | |
| 91 | #------------------------------------------------------------------------------- |
Stella Laurenzo | 74b04b7 | 2022-03-02 10:21:11 -0800 | [diff] [blame] | 92 | # Runtime HAL Driver Options |
| 93 | # By default, all runtime drivers supported by the current platform which do |
| 94 | # not require external deps are enabled by default. This can be changed with: |
| 95 | # -DIREE_HAL_DRIVER_DEFAULTS=OFF |
Ben Vanik | 185d30c | 2019-09-19 14:24:11 -0700 | [diff] [blame] | 96 | #------------------------------------------------------------------------------- |
| 97 | |
Ben Vanik | 4e6af05 | 2022-06-07 17:10:20 -0700 | [diff] [blame] | 98 | # External HAL drivers; see runtime/src/iree/hal/drivers/CMakeLists.txt for more |
| 99 | # information on how to declare external drivers. |
| 100 | set(IREE_EXTERNAL_HAL_DRIVERS "" CACHE STRING "") |
| 101 | |
Ben Vanik | 8916027 | 2022-09-26 16:44:11 -0700 | [diff] [blame] | 102 | # Additional executable loader deps to add dependent libraries to any target |
| 103 | # using the default executable loader registration utilities. |
| 104 | # TODO(benvanik): extend the deps to encompass the built-in loaders too so that |
| 105 | # we have one flag. We could also support a list of deps and automatically |
| 106 | # generate the registration from that via a configure file. |
| 107 | set(IREE_HAL_EXECUTABLE_LOADER_EXTRA_DEPS "" CACHE STRING "") |
| 108 | |
Scott Todd | d1620f0 | 2021-12-22 14:55:38 -0800 | [diff] [blame] | 109 | option(IREE_HAL_DRIVER_DEFAULTS "Sets the default value for all runtime HAL drivers" ON) |
Stella Laurenzo | 9838866 | 2022-02-03 15:37:30 -0800 | [diff] [blame] | 110 | # CUDA support must be explicitly enabled. |
| 111 | set(IREE_HAL_DRIVER_CUDA_DEFAULT OFF) |
Ben Vanik | a9aaebe | 2022-12-16 09:14:53 -0800 | [diff] [blame] | 112 | |
Scott Todd | d1620f0 | 2021-12-22 14:55:38 -0800 | [diff] [blame] | 113 | # Vulkan is not natively supported on Apple platforms. |
| 114 | # Metal should generally be used instead, though MoltenVK may also work. |
Scott Todd | 1a1aea6 | 2022-04-28 09:12:11 -0700 | [diff] [blame] | 115 | if(APPLE) |
Scott Todd | d1620f0 | 2021-12-22 14:55:38 -0800 | [diff] [blame] | 116 | set(IREE_HAL_DRIVER_VULKAN_DEFAULT OFF) |
| 117 | else() |
| 118 | set(IREE_HAL_DRIVER_VULKAN_DEFAULT ${IREE_HAL_DRIVER_DEFAULTS}) |
| 119 | endif() |
Marius Brehler | 0a4b67f | 2020-05-08 13:19:16 -0700 | [diff] [blame] | 120 | |
Scott Todd | d1620f0 | 2021-12-22 14:55:38 -0800 | [diff] [blame] | 121 | option(IREE_HAL_DRIVER_CUDA "Enables the 'cuda' runtime HAL driver" ${IREE_HAL_DRIVER_CUDA_DEFAULT}) |
Ben Vanik | e305807 | 2022-06-06 19:21:44 -0700 | [diff] [blame] | 122 | option(IREE_HAL_DRIVER_LOCAL_SYNC "Enables the 'local-sync' runtime HAL driver" ${IREE_HAL_DRIVER_DEFAULTS}) |
| 123 | option(IREE_HAL_DRIVER_LOCAL_TASK "Enables the 'local-task' runtime HAL driver" ${IREE_HAL_DRIVER_DEFAULTS}) |
| 124 | option(IREE_HAL_DRIVER_VULKAN "Enables the 'vulkan' runtime HAL driver" ${IREE_HAL_DRIVER_VULKAN_DEFAULT}) |
| 125 | |
Ben Vanik | 6e64b6e | 2022-06-07 09:14:53 -0700 | [diff] [blame] | 126 | option(IREE_HAL_EXECUTABLE_LOADER_DEFAULTS "Sets the default value for all runtime HAL executable loaders" ON) |
| 127 | set(IREE_HAL_EXECUTABLE_LOADER_EMBEDDED_ELF_DEFAULT ${IREE_HAL_EXECUTABLE_LOADER_DEFAULTS}) |
| 128 | set(IREE_HAL_EXECUTABLE_LOADER_SYSTEM_LIBRARY_DEFAULT ${IREE_HAL_EXECUTABLE_LOADER_DEFAULTS}) |
| 129 | set(IREE_HAL_EXECUTABLE_LOADER_VMVX_MODULE_DEFAULT ${IREE_HAL_EXECUTABLE_LOADER_DEFAULTS}) |
Ben Vanik | e305807 | 2022-06-06 19:21:44 -0700 | [diff] [blame] | 130 | |
| 131 | # Emscripten builds don't support embedded ELF libraries. |
| 132 | if(EMSCRIPTEN) |
Ben Vanik | 2e8540e | 2022-06-06 20:39:34 -0700 | [diff] [blame] | 133 | set(IREE_HAL_EXECUTABLE_LOADER_EMBEDDED_ELF_DEFAULT OFF) |
Ben Vanik | e305807 | 2022-06-06 19:21:44 -0700 | [diff] [blame] | 134 | endif() |
| 135 | |
| 136 | # If forcing system libraries (for TSAN/debugging tools/etc) then ensure the |
| 137 | # system library loader is linked in. |
Scott Todd | 352da3f | 2022-07-20 15:25:11 -0700 | [diff] [blame] | 138 | if(IREE_BYTECODE_MODULE_FORCE_LLVM_SYSTEM_LINKER) |
Ben Vanik | e305807 | 2022-06-06 19:21:44 -0700 | [diff] [blame] | 139 | set(IREE_HAL_EXECUTABLE_LOADER_SYSTEM_LIBRARY_DEFAULT ON) |
| 140 | endif() |
| 141 | |
Ben Vanik | 6e64b6e | 2022-06-07 09:14:53 -0700 | [diff] [blame] | 142 | # If no local driver is enabled then we force all the loaders off; this allows |
| 143 | # for simpler checks that don't need to see if both the driver and loader is |
| 144 | # available. |
| 145 | if(NOT IREE_HAL_DRIVER_LOCAL_SYNC AND NOT IREE_HAL_DRIVER_LOCAL_TASK) |
| 146 | set(IREE_HAL_EXECUTABLE_LOADER_EMBEDDED_ELF_DEFAULT OFF) |
| 147 | set(IREE_HAL_EXECUTABLE_LOADER_SYSTEM_LIBRARY_DEFAULT OFF) |
| 148 | set(IREE_HAL_EXECUTABLE_LOADER_VMVX_MODULE_DEFAULT OFF) |
| 149 | endif() |
| 150 | |
Ben Vanik | 2e8540e | 2022-06-06 20:39:34 -0700 | [diff] [blame] | 151 | option(IREE_HAL_EXECUTABLE_LOADER_EMBEDDED_ELF "Enables the embedded dynamic library loader for local HAL drivers" ${IREE_HAL_EXECUTABLE_LOADER_EMBEDDED_ELF_DEFAULT}) |
Ben Vanik | e305807 | 2022-06-06 19:21:44 -0700 | [diff] [blame] | 152 | option(IREE_HAL_EXECUTABLE_LOADER_SYSTEM_LIBRARY "Enables the system dynamic library loader for local HAL drivers" ${IREE_HAL_EXECUTABLE_LOADER_SYSTEM_LIBRARY_DEFAULT}) |
| 153 | option(IREE_HAL_EXECUTABLE_LOADER_VMVX_MODULE "Enables the VMVX module loader for local HAL drivers" ${IREE_HAL_EXECUTABLE_LOADER_VMVX_MODULE_DEFAULT}) |
| 154 | |
Scott Todd | 0f1f8eb | 2022-06-10 15:53:30 -0700 | [diff] [blame] | 155 | if(IREE_BUILD_COMPILER) |
| 156 | # The compiler requires the local task driver with the VMVX loader. |
| 157 | set(IREE_HAL_DRIVER_LOCAL_TASK ON) |
| 158 | set(IREE_HAL_EXECUTABLE_LOADER_VMVX_MODULE ON) |
| 159 | endif() |
| 160 | |
Ben Vanik | e305807 | 2022-06-06 19:21:44 -0700 | [diff] [blame] | 161 | message(STATUS "IREE HAL drivers:") |
Stella Laurenzo | 74b04b7 | 2022-03-02 10:21:11 -0800 | [diff] [blame] | 162 | if(IREE_HAL_DRIVER_CUDA) |
| 163 | message(STATUS " - cuda") |
| 164 | endif() |
Ben Vanik | e305807 | 2022-06-06 19:21:44 -0700 | [diff] [blame] | 165 | if(IREE_HAL_DRIVER_LOCAL_SYNC) |
| 166 | message(STATUS " - local-sync") |
| 167 | endif() |
| 168 | if(IREE_HAL_DRIVER_LOCAL_TASK) |
| 169 | message(STATUS " - local-task") |
| 170 | endif() |
Stella Laurenzo | 74b04b7 | 2022-03-02 10:21:11 -0800 | [diff] [blame] | 171 | if(IREE_HAL_DRIVER_VULKAN) |
| 172 | message(STATUS " - vulkan") |
| 173 | endif() |
Ben Vanik | 4e6af05 | 2022-06-07 17:10:20 -0700 | [diff] [blame] | 174 | if(IREE_EXTERNAL_HAL_DRIVERS) |
| 175 | message(STATUS " + external: ${IREE_EXTERNAL_HAL_DRIVERS}") |
| 176 | endif() |
Ben Vanik | 512d2d3 | 2019-09-20 13:22:34 -0700 | [diff] [blame] | 177 | |
Ben Vanik | e305807 | 2022-06-06 19:21:44 -0700 | [diff] [blame] | 178 | message(STATUS "IREE HAL local executable library loaders:") |
Ben Vanik | 2e8540e | 2022-06-06 20:39:34 -0700 | [diff] [blame] | 179 | if(IREE_HAL_EXECUTABLE_LOADER_EMBEDDED_ELF) |
| 180 | message(STATUS " - embedded-elf") |
Ben Vanik | e305807 | 2022-06-06 19:21:44 -0700 | [diff] [blame] | 181 | endif() |
| 182 | if(IREE_HAL_EXECUTABLE_LOADER_SYSTEM_LIBRARY) |
| 183 | message(STATUS " - system-library") |
| 184 | endif() |
| 185 | if(IREE_HAL_EXECUTABLE_LOADER_VMVX_MODULE) |
| 186 | message(STATUS " - vmvx-module") |
| 187 | endif() |
| 188 | |
Lei Zhang | 0d281b7 | 2020-06-01 20:00:23 -0400 | [diff] [blame] | 189 | #------------------------------------------------------------------------------- |
Ben Vanik | 4e6af05 | 2022-06-07 17:10:20 -0700 | [diff] [blame] | 190 | # Experimental ROCM HAL driver |
| 191 | #------------------------------------------------------------------------------- |
| 192 | |
| 193 | set(IREE_EXTERNAL_ROCM_HAL_DRIVER_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/experimental/rocm") |
| 194 | set(IREE_EXTERNAL_ROCM_HAL_DRIVER_BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/experimental/rocm") |
| 195 | set(IREE_EXTERNAL_ROCM_HAL_DRIVER_TARGET "iree::experimental::rocm::registration") |
| 196 | set(IREE_EXTERNAL_ROCM_HAL_DRIVER_REGISTER "iree_hal_rocm_driver_module_register") |
| 197 | |
| 198 | #------------------------------------------------------------------------------- |
Scott Todd | 382fc63 | 2022-06-06 10:57:24 -0700 | [diff] [blame] | 199 | # Compiler Target Options |
| 200 | # By default, all compiler targets supported by the current platform which do |
| 201 | # not require external deps are enabled by default. This can be changed with: |
| 202 | # -DIREE_TARGET_BACKEND_DEFAULTS=OFF |
| 203 | #------------------------------------------------------------------------------- |
| 204 | |
| 205 | option(IREE_TARGET_BACKEND_DEFAULTS "Sets the default value for all compiler target backends" ON) |
| 206 | |
| 207 | # The VMVX backend is always enabled. |
| 208 | cmake_dependent_option(IREE_TARGET_BACKEND_VMVX "Enables the 'vmvx' compiler target backend" ON ${IREE_BUILD_COMPILER} OFF) |
| 209 | |
| 210 | # Supported default target backends. |
Scott Todd | 352da3f | 2022-07-20 15:25:11 -0700 | [diff] [blame] | 211 | cmake_dependent_option(IREE_TARGET_BACKEND_LLVM_CPU "Enables the 'llvm-cpu' compiler target backend" ${IREE_TARGET_BACKEND_DEFAULTS} ${IREE_BUILD_COMPILER} OFF) |
| 212 | cmake_dependent_option(IREE_TARGET_BACKEND_LLVM_CPU_WASM "Enables WebAssembly in the 'llvm-cpu' compiler target backend" ${IREE_TARGET_BACKEND_DEFAULTS} ${IREE_TARGET_BACKEND_LLVM_CPU} OFF) |
Scott Todd | 382fc63 | 2022-06-06 10:57:24 -0700 | [diff] [blame] | 213 | cmake_dependent_option(IREE_TARGET_BACKEND_METAL_SPIRV "Enables the 'metal-spirv' compiler target backend" ${IREE_TARGET_BACKEND_DEFAULTS} ${IREE_BUILD_COMPILER} OFF) |
Scott Todd | 382fc63 | 2022-06-06 10:57:24 -0700 | [diff] [blame] | 214 | cmake_dependent_option(IREE_TARGET_BACKEND_VULKAN_SPIRV "Enables the 'vulkan-spirv' compiler target backend" ${IREE_TARGET_BACKEND_DEFAULTS} ${IREE_BUILD_COMPILER} OFF) |
| 215 | |
| 216 | # Non-default target backends either have additional dependencies or are |
| 217 | # experimental/niche in some fashion. |
| 218 | cmake_dependent_option(IREE_TARGET_BACKEND_CUDA "Enables the 'cuda' compiler target backend" OFF ${IREE_BUILD_COMPILER} OFF) |
| 219 | cmake_dependent_option(IREE_TARGET_BACKEND_ROCM "Enables the 'rocm' compiler target backend" OFF ${IREE_BUILD_COMPILER} OFF) |
| 220 | # Disable WebGPU by default - it has complex deps and is under development. |
| 221 | cmake_dependent_option(IREE_TARGET_BACKEND_WEBGPU "Enables the 'webgpu' compiler target backend" OFF ${IREE_BUILD_COMPILER} OFF) |
| 222 | |
| 223 | #------------------------------------------------------------------------------- |
Scott Todd | e23d4a7 | 2022-07-27 14:16:39 -0700 | [diff] [blame] | 224 | # Compiler Input Dialects |
| 225 | #------------------------------------------------------------------------------- |
| 226 | |
| 227 | cmake_dependent_option(IREE_INPUT_MHLO "Builds support for compiling MHLO programs" ON ${IREE_BUILD_COMPILER} OFF) |
| 228 | cmake_dependent_option(IREE_INPUT_TORCH "Builds support for compiling Torch MLIR programs" ON ${IREE_BUILD_COMPILER} OFF) |
| 229 | cmake_dependent_option(IREE_INPUT_TOSA "Builds support for compiling TOSA programs" ON ${IREE_BUILD_COMPILER} OFF) |
| 230 | |
Marius Brehler | 36f2451 | 2022-08-04 17:39:03 +0200 | [diff] [blame] | 231 | if(IREE_BUILD_COMPILER) |
| 232 | message(STATUS "IREE compiler input dialects:") |
| 233 | if(IREE_INPUT_MHLO) |
| 234 | message(STATUS " - MHLO") |
| 235 | endif() |
| 236 | if(IREE_INPUT_TORCH) |
| 237 | message(STATUS " - Torch MLIR") |
| 238 | endif() |
| 239 | if(IREE_INPUT_TOSA) |
| 240 | message(STATUS " - TOSA") |
| 241 | endif() |
Scott Todd | e23d4a7 | 2022-07-27 14:16:39 -0700 | [diff] [blame] | 242 | endif() |
| 243 | |
| 244 | #------------------------------------------------------------------------------- |
Scott Todd | 2a1925c | 2022-06-13 10:03:52 -0700 | [diff] [blame] | 245 | # Compiler Output Formats |
| 246 | #------------------------------------------------------------------------------- |
| 247 | |
Scott Todd | 2a1925c | 2022-06-13 10:03:52 -0700 | [diff] [blame] | 248 | cmake_dependent_option(IREE_OUTPUT_FORMAT_C "Enables the 'vm-c' output format, using MLIR EmitC" ON ${IREE_BUILD_COMPILER} OFF) |
| 249 | |
Marius Brehler | 36f2451 | 2022-08-04 17:39:03 +0200 | [diff] [blame] | 250 | if(IREE_BUILD_COMPILER) |
| 251 | message(STATUS "IREE compiler output formats:") |
| 252 | if(IREE_OUTPUT_FORMAT_C) |
| 253 | message(STATUS " - C source module") |
| 254 | endif() |
| 255 | # The 'vm-bytecode' and 'vm-asm' formats are always enabled. |
| 256 | message(STATUS " - VM Bytecode") |
| 257 | message(STATUS " - VM MLIR Assembly") |
Scott Todd | e23d4a7 | 2022-07-27 14:16:39 -0700 | [diff] [blame] | 258 | endif() |
Scott Todd | e23d4a7 | 2022-07-27 14:16:39 -0700 | [diff] [blame] | 259 | |
Scott Todd | 2a1925c | 2022-06-13 10:03:52 -0700 | [diff] [blame] | 260 | #------------------------------------------------------------------------------- |
Lei Zhang | e88470f | 2020-09-08 13:21:09 -0400 | [diff] [blame] | 261 | # IREE compilation toolchain configuration |
| 262 | #------------------------------------------------------------------------------- |
| 263 | |
Lei Zhang | e88470f | 2020-09-08 13:21:09 -0400 | [diff] [blame] | 264 | option(IREE_ENABLE_ASAN "Enable address sanitizer" OFF) |
| 265 | option(IREE_ENABLE_MSAN "Enable memory sanitizer" OFF) |
| 266 | option(IREE_ENABLE_TSAN "Enable thread sanitizer" OFF) |
bjacob | 7cf5b84 | 2022-04-04 16:48:04 -0400 | [diff] [blame] | 267 | option(IREE_BYTECODE_MODULE_ENABLE_TSAN "Enable thread sanitizer in IREE modules in tests" OFF) |
Jakub Kuderski | 068b172 | 2022-07-27 18:14:59 -0400 | [diff] [blame] | 268 | option(IREE_ENABLE_UBSAN "Enable undefined behavior sanitizer" OFF) |
Stella Laurenzo | deb4805 | 2022-11-25 10:41:46 -0800 | [diff] [blame] | 269 | option(IREE_ENABLE_SPLIT_DWARF "Enable gsplit-dwarf for debug information if the platform supports it" OFF) |
| 270 | option(IREE_ENABLE_THIN_ARCHIVES "Enables thin ar archives (elf systems only). Disable for released static archives" OFF) |
Ben Vanik | adadd03 | 2022-11-28 23:18:16 -0800 | [diff] [blame] | 271 | option(IREE_LINK_COMPILER_SHARED_LIBRARY "Links IREE tools using the compiler compiled into a shared library" ON) |
bjacob | 7cf5b84 | 2022-04-04 16:48:04 -0400 | [diff] [blame] | 272 | |
| 273 | # STREQUAL feels wrong here - we don't care about the exact true-value used, |
| 274 | # ON or TRUE or something else. But we haven't been able to think of a less bad |
Scott Todd | 7df3973 | 2022-06-28 09:21:35 -0700 | [diff] [blame] | 275 | # alternative. https://github.com/iree-org/iree/pull/8474#discussion_r840790062 |
bjacob | 7cf5b84 | 2022-04-04 16:48:04 -0400 | [diff] [blame] | 276 | if(NOT IREE_ENABLE_TSAN STREQUAL IREE_BYTECODE_MODULE_ENABLE_TSAN) |
| 277 | message(SEND_ERROR |
| 278 | "IREE_ENABLE_TSAN and IREE_BYTECODE_MODULE_ENABLE_TSAN must be " |
| 279 | "simultaneously ON or OFF. " |
| 280 | "A discrepancy between the two would cause tests to crash as IREE " |
| 281 | "runtime code (controlled by IREE_ENABLE_TSAN) calls into test IREE " |
| 282 | "modules (controlled by IREE_BYTECODE_MODULE_ENABLE_TSAN)") |
| 283 | endif() |
| 284 | |
| 285 | if(IREE_BYTECODE_MODULE_ENABLE_TSAN) |
Scott Todd | 352da3f | 2022-07-20 15:25:11 -0700 | [diff] [blame] | 286 | if(NOT IREE_BYTECODE_MODULE_FORCE_LLVM_SYSTEM_LINKER) |
bjacob | 7cf5b84 | 2022-04-04 16:48:04 -0400 | [diff] [blame] | 287 | message(SEND_ERROR |
| 288 | "When IREE_BYTECODE_MODULE_ENABLE_TSAN is ON, " |
Scott Todd | 352da3f | 2022-07-20 15:25:11 -0700 | [diff] [blame] | 289 | "IREE_BYTECODE_MODULE_FORCE_LLVM_SYSTEM_LINKER must also be ON. " |
bjacob | 7cf5b84 | 2022-04-04 16:48:04 -0400 | [diff] [blame] | 290 | "TSAN instrumentation is not currently supported in embedded modules.") |
| 291 | endif() |
| 292 | endif() |
| 293 | |
Geoffrey Martin-Noble | 61ea1ed | 2022-11-23 16:25:57 -0800 | [diff] [blame] | 294 | option(IREE_ENABLE_CCACHE |
| 295 | "[DEPRECATED: Use CMAKE_<LANG>_COMPILER_LAUNCHER configure options or environment variables instead.] Use ccache if installed." |
| 296 | OFF) |
bjacob | e694d95 | 2020-11-03 12:05:35 -0500 | [diff] [blame] | 297 | |
Scott Todd | 1a1aea6 | 2022-04-28 09:12:11 -0700 | [diff] [blame] | 298 | if(IREE_ENABLE_CCACHE) |
Geoffrey Martin-Noble | 61ea1ed | 2022-11-23 16:25:57 -0800 | [diff] [blame] | 299 | message(WARNING |
| 300 | "IREE_ENABLE_CCACHE is deprecated. Use CMAKE_<LANG>_COMPILER_LAUNCHER" |
| 301 | " configure options or environment variables instead.") |
bjacob | e694d95 | 2020-11-03 12:05:35 -0500 | [diff] [blame] | 302 | find_program(CCACHE_PROGRAM ccache) |
| 303 | if(CCACHE_PROGRAM) |
| 304 | set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}") |
Geoffrey Martin-Noble | 61ea1ed | 2022-11-23 16:25:57 -0800 | [diff] [blame] | 305 | else() |
| 306 | message(SEND_ERROR |
| 307 | "IREE_ENABLE_CCACHE was set, but executable `ccache` was not found.") |
bjacob | e694d95 | 2020-11-03 12:05:35 -0500 | [diff] [blame] | 308 | endif() |
| 309 | endif() |
Lei Zhang | e88470f | 2020-09-08 13:21:09 -0400 | [diff] [blame] | 310 | |
Geoffrey Martin-Noble | 3fa4f8d | 2021-09-10 09:25:27 -0700 | [diff] [blame] | 311 | option(IREE_DEV_MODE "Configure settings to optimize for IREE development (as opposed to CI or release)" OFF) |
Stella Laurenzo | 5b63912 | 2021-06-18 14:44:10 -0700 | [diff] [blame] | 312 | |
| 313 | #------------------------------------------------------------------------------- |
| 314 | # IREE assertions |
| 315 | # We don't love the way this is done, but we have to line it up with how LLVM |
| 316 | # does it and not diverge, since all implementations and all header users must |
| 317 | # have the same definition of NDEBUG. |
| 318 | # |
| 319 | # LLVM defaults LLVM_ENABLE_ASSERTIONS to ON for Debug builds only but then |
| 320 | # conditions itself to only update flags if not building Debug. We just let |
| 321 | # IREE_ENABLE_ASSERTIONS be not conditioned on anything and only update the |
| 322 | # flags in appropriate build types. |
| 323 | # |
| 324 | # If IREE_ENABLE_ASSERTIONS is set ON manually, then |
| 325 | # - NDEBUG must be undefined |
| 326 | # - LLVM_ENABLE_ASSERTIONS is forced off in order to keep multiple parties |
| 327 | # from mucking with globals. |
| 328 | # |
| 329 | # Since CMake forces NDEBUG for !Debug builds, some surgery needs to be done |
| 330 | # at the top level to avoid divergence. |
| 331 | #------------------------------------------------------------------------------- |
| 332 | |
| 333 | option(IREE_ENABLE_ASSERTIONS "Force unset of NDEBUG compile option" OFF) |
| 334 | |
| 335 | # Filter -DNDEBUG from CMAKE_CXX_FLAGS_* and CMAKE_C_FLAGS_* (if |
| 336 | # CMAKE_BUILD_TYPE is not Debug). |
| 337 | function(iree_fix_ndebug) |
Scott Todd | 1a1aea6 | 2022-04-28 09:12:11 -0700 | [diff] [blame] | 338 | string(TOUPPER "${CMAKE_BUILD_TYPE}" _UPPERCASE_CMAKE_BUILD_TYPE) |
| 339 | if(IREE_ENABLE_ASSERTIONS AND NOT "${_UPPERCASE_CMAKE_BUILD_TYPE}" STREQUAL "DEBUG") |
Stella Laurenzo | 5b63912 | 2021-06-18 14:44:10 -0700 | [diff] [blame] | 340 | # Also remove /D NDEBUG to avoid MSVC warnings about conflicting defines. |
Scott Todd | 1a1aea6 | 2022-04-28 09:12:11 -0700 | [diff] [blame] | 341 | foreach(_FLAGS_VAR_TO_SCRUB |
| 342 | CMAKE_CXX_FLAGS_${_UPPERCASE_CMAKE_BUILD_TYPE} |
| 343 | CMAKE_C_FLAGS_${_UPPERCASE_CMAKE_BUILD_TYPE}) |
| 344 | set(_ORIGINAL_FLAGS "${${_FLAGS_VAR_TO_SCRUB}}") |
| 345 | string(REGEX REPLACE "(^| )[/-]D *NDEBUG($| )" " " _ALTERED_FLAGS "${_ORIGINAL_FLAGS}") |
| 346 | if(NOT "${_ORIGINAL_FLAGS}" STREQUAL "${_ALTERED_FLAGS}") |
Stella Laurenzo | 5b63912 | 2021-06-18 14:44:10 -0700 | [diff] [blame] | 347 | message(STATUS |
Scott Todd | 1a1aea6 | 2022-04-28 09:12:11 -0700 | [diff] [blame] | 348 | "IREE_ENABLE_ASSERTIONS force disabled NDEBUG for ${_FLAGS_VAR_TO_SCRUB}: '${_ORIGINAL_FLAGS}' -> '${_ALTERED_FLAGS}'") |
| 349 | set(${_FLAGS_VAR_TO_SCRUB} "${_ALTERED_FLAGS}" PARENT_SCOPE) |
Stella Laurenzo | 5b63912 | 2021-06-18 14:44:10 -0700 | [diff] [blame] | 350 | endif() |
| 351 | endforeach() |
| 352 | |
| 353 | # Make sure that LLVM doesn't add its own logic for assertion disabling. |
| 354 | # We'd like to make sure that we are not dueling over globals. |
| 355 | set(LLVM_ENABLE_ASSERTIONS OFF PARENT_SCOPE) |
| 356 | endif() |
| 357 | endfunction() |
| 358 | iree_fix_ndebug() |
| 359 | |
Lei Zhang | e88470f | 2020-09-08 13:21:09 -0400 | [diff] [blame] | 360 | #------------------------------------------------------------------------------- |
Lei Zhang | 7e253da | 2020-06-10 07:51:19 -0700 | [diff] [blame] | 361 | # IREE utility definitions |
Lei Zhang | 0d281b7 | 2020-06-01 20:00:23 -0400 | [diff] [blame] | 362 | #------------------------------------------------------------------------------- |
| 363 | |
Scott Todd | d1620f0 | 2021-12-22 14:55:38 -0800 | [diff] [blame] | 364 | list(APPEND CMAKE_MODULE_PATH |
| 365 | ${CMAKE_CURRENT_LIST_DIR}/build_tools/cmake/ |
Scott Todd | d1620f0 | 2021-12-22 14:55:38 -0800 | [diff] [blame] | 366 | ) |
| 367 | |
Ben Vanik | 512d2d3 | 2019-09-20 13:22:34 -0700 | [diff] [blame] | 368 | include(iree_macros) |
Ben Vanik | 185d30c | 2019-09-19 14:24:11 -0700 | [diff] [blame] | 369 | include(iree_copts) |
Ben Vanik | 6b112ef | 2019-10-03 10:45:14 -0700 | [diff] [blame] | 370 | include(iree_cc_binary) |
Ben Vanik | 185d30c | 2019-09-19 14:24:11 -0700 | [diff] [blame] | 371 | include(iree_cc_library) |
| 372 | include(iree_cc_test) |
Stella Laurenzo | 74b04b7 | 2022-03-02 10:21:11 -0800 | [diff] [blame] | 373 | include(iree_external_cmake_options) |
Ben Vanik | cc2aff9 | 2019-09-24 10:23:55 -0700 | [diff] [blame] | 374 | include(iree_tablegen_library) |
Lei Zhang | 22f0e24 | 2020-03-30 12:09:20 -0700 | [diff] [blame] | 375 | include(iree_tablegen_doc) |
CindyLiu | 40ed02d | 2021-04-22 16:16:28 +0000 | [diff] [blame] | 376 | include(iree_c_embed_data) |
Scott Todd | 11adcab | 2019-12-18 14:10:44 -0800 | [diff] [blame] | 377 | include(iree_bytecode_module) |
Marius Brehler | 46e8331 | 2021-03-25 00:11:39 +0100 | [diff] [blame] | 378 | include(iree_c_module) |
Stella Laurenzo | 94363e2 | 2020-12-15 13:46:14 -0800 | [diff] [blame] | 379 | include(iree_python) |
Geoffrey Martin-Noble | f0eaf37 | 2020-01-28 10:03:14 -0800 | [diff] [blame] | 380 | include(iree_lit_test) |
Geoffrey Martin-Noble | 4526dcc | 2020-03-09 11:59:52 -0700 | [diff] [blame] | 381 | include(iree_add_all_subdirs) |
Geoffrey Martin-Noble | e5fd5b5 | 2020-03-31 11:31:30 -0700 | [diff] [blame] | 382 | include(iree_check_test) |
bjacob | 5feef48 | 2021-10-21 16:53:58 -0400 | [diff] [blame] | 383 | include(iree_trace_runner_test) |
Geoffrey Martin-Noble | 435c270 | 2022-01-24 15:56:56 -0800 | [diff] [blame] | 384 | include(iree_native_test) |
Geoffrey Martin-Noble | 2811e50 | 2022-01-25 09:44:40 -0800 | [diff] [blame] | 385 | include(iree_cc_binary_benchmark) |
Geoffrey Martin-Noble | 66d4889 | 2021-10-29 12:24:58 -0700 | [diff] [blame] | 386 | include(iree_benchmark_suite) |
Han-Chung Wang | a6fbb76 | 2022-04-15 14:25:04 -0700 | [diff] [blame] | 387 | include(iree_microbenchmark_suite) |
Scott Todd | 434ff0e | 2021-12-21 10:38:36 -0800 | [diff] [blame] | 388 | include(iree_hal_cts_test_suite) |
CindyLiu | ae72b95 | 2022-08-23 15:26:08 -0700 | [diff] [blame] | 389 | include(iree_static_linker_test) |
Jerry Wu | 116db87 | 2022-09-22 19:33:13 +0000 | [diff] [blame] | 390 | include(iree_fetch_artifact) |
CindyLiu | 080198f | 2022-10-06 07:21:17 -0700 | [diff] [blame] | 391 | include(iree_run_module_test) |
Ben Vanik | 185d30c | 2019-09-19 14:24:11 -0700 | [diff] [blame] | 392 | |
Marius Brehler | 06ac36e | 2020-01-10 14:44:11 -0800 | [diff] [blame] | 393 | set(CMAKE_POSITION_INDEPENDENT_CODE TRUE) |
| 394 | |
Ben Vanik | 185d30c | 2019-09-19 14:24:11 -0700 | [diff] [blame] | 395 | #------------------------------------------------------------------------------- |
Lei Zhang | e88470f | 2020-09-08 13:21:09 -0400 | [diff] [blame] | 396 | # IREE compilation flags |
Scott Todd | 29d654e | 2020-06-11 15:24:17 -0700 | [diff] [blame] | 397 | #------------------------------------------------------------------------------- |
| 398 | |
Lei Zhang | dd21f32 | 2020-09-10 10:47:33 -0400 | [diff] [blame] | 399 | iree_append_list_to_string(CMAKE_C_FLAGS_DEBUG ${IREE_C_FLAGS_DEBUG_LIST}) |
| 400 | iree_append_list_to_string(CMAKE_CXX_FLAGS_DEBUG ${IREE_CXX_FLAGS_DEBUG_LIST}) |
Scott Todd | 29d654e | 2020-06-11 15:24:17 -0700 | [diff] [blame] | 401 | |
| 402 | set(CMAKE_CXX_FLAGS_FASTBUILD "-gmlt" CACHE STRING "Flags used by the C++ compiler during fast builds." FORCE) |
| 403 | set(CMAKE_C_FLAGS_FASTBUILD "-gmlt" CACHE STRING "Flags used by the C compiler during fast builds." FORCE) |
| 404 | set(CMAKE_EXE_LINKER_FLAGS_FASTBUILD "-Wl,-S" CACHE STRING "Flags used for linking binaries during fast builds." FORCE) |
| 405 | set(CMAKE_SHARED_LINKER_FLAGS_FASTBUILD "-Wl,-S" CACHE STRING "Flags used by the shared libraries linker binaries during fast builds." FORCE) |
| 406 | mark_as_advanced( |
| 407 | CMAKE_CXX_FLAGS_FASTBUILD |
| 408 | CMAKE_C_FLAGS_FASTBUILD |
| 409 | CMAKE_EXE_LINKER_FLAGS_FASTBUILD |
| 410 | CMAKE_SHARED_LINKER_FLAGS_FASTBUILD |
| 411 | ) |
| 412 | |
Scott Todd | 7649dee | 2022-07-18 11:31:46 -0700 | [diff] [blame] | 413 | # Override the system's default linker. |
| 414 | # See also: https://llvm.org/docs/CMake.html#llvm-use-linker. |
| 415 | set(IREE_USE_LINKER "" CACHE STRING "") |
| 416 | # Equivalent to setting -DIREE_USE_LINKER=lld. |
| 417 | # Note that unlike LLVM's LLVM_ENABLE_LLD, this does _not_ build lld. You will |
| 418 | # need to either install a recent version of lld or build it from source prior |
| 419 | # to setting this option. See also: https://lld.llvm.org/#using-lld. |
| 420 | # This option is disabled on Apple platforms, where lld is not supported. |
| 421 | cmake_dependent_option(IREE_ENABLE_LLD "Override the system's default linker to lld" OFF "NOT APPLE" OFF) |
| 422 | |
Scott Todd | 29d654e | 2020-06-11 15:24:17 -0700 | [diff] [blame] | 423 | include(iree_setup_toolchain) |
| 424 | |
| 425 | #------------------------------------------------------------------------------- |
Stella Laurenzo | 29032b8 | 2021-10-14 15:21:44 -0700 | [diff] [blame] | 426 | # Python |
| 427 | # If building features that require Python development, find them early in |
| 428 | # one invocation (some CMake versions are sensitive to resolving out of order). |
| 429 | # Otherwise, for features that just require the interpreter, find that alone. |
Stella Laurenzo | a3e97f1 | 2020-12-05 23:29:13 -0800 | [diff] [blame] | 430 | #------------------------------------------------------------------------------- |
| 431 | |
Stella Laurenzo | 29032b8 | 2021-10-14 15:21:44 -0700 | [diff] [blame] | 432 | if(IREE_BUILD_PYTHON_BINDINGS) |
| 433 | # After CMake 3.18, we are able to limit the scope of the search to just |
| 434 | # Development.Module. Searching for Development will fail in situations where |
| 435 | # the Python libraries are not available. When possible, limit to just |
| 436 | # Development.Module. |
| 437 | # See https://pybind11.readthedocs.io/en/stable/compiling.html#findpython-mode |
Scott Todd | a24c8c5 | 2022-05-17 09:22:47 -0700 | [diff] [blame] | 438 | # |
| 439 | # Configuring the Development.Module is flaky in multi-project setups. |
| 440 | # "Bootstrapping" by first looking for the optional Development component |
| 441 | # seems to be robust generally. |
| 442 | # See: https://reviews.llvm.org/D118148 |
| 443 | find_package(Python3 COMPONENTS Interpreter Development) |
| 444 | find_package(Python3 COMPONENTS Interpreter Development.Module REQUIRED) |
Stella Laurenzo | 3149b6d | 2021-10-24 18:45:17 -0700 | [diff] [blame] | 445 | elseif(IREE_BUILD_COMPILER OR IREE_BUILD_TESTS) |
Stella Laurenzo | a3e97f1 | 2020-12-05 23:29:13 -0800 | [diff] [blame] | 446 | find_package(Python3 COMPONENTS Interpreter REQUIRED) |
| 447 | endif() |
| 448 | |
Stella Laurenzo | 3149b6d | 2021-10-24 18:45:17 -0700 | [diff] [blame] | 449 | # Extended Python environment checks. |
| 450 | if(Python3_FOUND) |
| 451 | iree_detect_pyyaml() |
| 452 | endif() |
| 453 | |
| 454 | if(IREE_BUILD_TESTS AND NOT IREE_PYYAML_FOUND) |
| 455 | message(WARNING "IREE's regression test suite requires PyYAML to run all tests. It is not installed, so some tests will be disabled.") |
| 456 | endif() |
| 457 | |
Stella Laurenzo | a3e97f1 | 2020-12-05 23:29:13 -0800 | [diff] [blame] | 458 | #------------------------------------------------------------------------------- |
Niloy Sikdar | 47238df | 2021-07-28 23:37:33 +0530 | [diff] [blame] | 459 | # Check if git submodules have been initialized. |
| 460 | # This will only run if python3 is available. |
| 461 | #------------------------------------------------------------------------------- |
| 462 | |
Marius Brehler | 776d7e6 | 2021-12-21 22:50:52 +0100 | [diff] [blame] | 463 | option(IREE_ERROR_ON_MISSING_SUBMODULES "Error if submodules have not been initialized." ON) |
| 464 | |
Niloy Sikdar | 47238df | 2021-07-28 23:37:33 +0530 | [diff] [blame] | 465 | find_package(Python3 COMPONENTS Interpreter QUIET) |
Scott Todd | e5b269a | 2021-11-16 15:25:02 -0800 | [diff] [blame] | 466 | find_package(Git) |
Marius Brehler | 776d7e6 | 2021-12-21 22:50:52 +0100 | [diff] [blame] | 467 | if(IREE_ERROR_ON_MISSING_SUBMODULES AND Python3_FOUND AND Git_FOUND) |
Scott Todd | e5b269a | 2021-11-16 15:25:02 -0800 | [diff] [blame] | 468 | # Only check submodule status when the git commit changes. |
Niloy Sikdar | 47238df | 2021-07-28 23:37:33 +0530 | [diff] [blame] | 469 | execute_process( |
Scott Todd | e5b269a | 2021-11-16 15:25:02 -0800 | [diff] [blame] | 470 | COMMAND git rev-parse --short HEAD |
Niloy Sikdar | 47238df | 2021-07-28 23:37:33 +0530 | [diff] [blame] | 471 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} |
Scott Todd | e5b269a | 2021-11-16 15:25:02 -0800 | [diff] [blame] | 472 | RESULT_VARIABLE SHORT_HASH_RESULT |
| 473 | OUTPUT_VARIABLE SHORT_HASH) |
| 474 | string(REGEX REPLACE "\n$" "" SHORT_HASH "${SHORT_HASH}") |
Scott Todd | 2a8cd3b | 2021-12-13 11:58:44 -0800 | [diff] [blame] | 475 | if(SHORT_HASH_RESULT EQUAL "0" AND NOT "${IREE_GIT_SHORT_HASH}" STREQUAL "${SHORT_HASH}") |
CindyLiu | 0e8fdc6 | 2022-10-14 09:35:44 -0700 | [diff] [blame] | 476 | if(NOT IREE_BUILD_COMPILER) |
| 477 | set(CHECK_SUBMODULE_ARGS "--runtime_only") |
| 478 | endif() |
Scott Todd | e5b269a | 2021-11-16 15:25:02 -0800 | [diff] [blame] | 479 | execute_process( |
CindyLiu | 0e8fdc6 | 2022-10-14 09:35:44 -0700 | [diff] [blame] | 480 | COMMAND ${Python3_EXECUTABLE} build_tools/scripts/git/check_submodule_init.py ${CHECK_SUBMODULE_ARGS} |
Scott Todd | e5b269a | 2021-11-16 15:25:02 -0800 | [diff] [blame] | 481 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} |
| 482 | RESULT_VARIABLE SUBMODULE_INIT_RESULT |
| 483 | ) |
| 484 | if(NOT SUBMODULE_INIT_RESULT EQUAL "0") |
| 485 | message(FATAL_ERROR "check_submodule_init.py failed, see the logs above") |
| 486 | else() |
| 487 | set(IREE_GIT_SHORT_HASH "${SHORT_HASH}" CACHE STRING "" FORCE) |
| 488 | endif() |
Niloy Sikdar | 47238df | 2021-07-28 23:37:33 +0530 | [diff] [blame] | 489 | endif() |
| 490 | endif() |
| 491 | |
| 492 | #------------------------------------------------------------------------------- |
Stella Laurenzo | 9838866 | 2022-02-03 15:37:30 -0800 | [diff] [blame] | 493 | # CUDA configuration for both the compiler and runtime. |
| 494 | # We do this at the top level so that we can fail fast and make global |
| 495 | # decisions that effect both compiler and runtime. It also helps with error |
| 496 | # messaging to do this all in one place, since we can provide very targeted |
| 497 | # advice. |
| 498 | #------------------------------------------------------------------------------- |
| 499 | |
Lei Zhang | 299fc93 | 2022-12-08 16:04:35 -0800 | [diff] [blame] | 500 | set(IREE_CUDA_LIBDEVICE_PATH "" CACHE FILEPATH "Absolute path to an appropriate libdevice.*.bc (needed to build the IREE cuda compiler target)") |
Stella Laurenzo | 9838866 | 2022-02-03 15:37:30 -0800 | [diff] [blame] | 501 | |
| 502 | # If any CUDA features are being built, try to locate a CUDA SDK. We will fall |
| 503 | # back to this as needed for specific features. |
| 504 | if(IREE_TARGET_BACKEND_CUDA OR IREE_HAL_DRIVER_CUDA) |
Stella Laurenzo | 5062ae3 | 2022-02-04 17:59:16 -0800 | [diff] [blame] | 505 | find_package(CUDAToolkit) |
Stella Laurenzo | 5943902 | 2022-04-12 21:04:26 -0700 | [diff] [blame] | 506 | |
Kojo Acquah | 719856b | 2022-06-15 18:35:02 -0400 | [diff] [blame] | 507 | if(NOT CUDAToolkit_FOUND) |
| 508 | if(DEFINED ENV{IREE_CUDA_DEPS_DIR}) |
| 509 | # We define the magic IREE_CUDA_DEPS_DIR env var in our CI docker images if we |
| 510 | # have a stripped down CUDA toolkit suitable for compiling available. We |
| 511 | # trigger on this below as a fallback for locating headers and libdevice |
| 512 | # files. |
| 513 | set(CUDAToolkit_ROOT "$ENV{IREE_CUDA_DEPS_DIR}") |
| 514 | message(STATUS "CUDA SDK not found by CMake but using IREE_CUDA_DEPS = ${CUDAToolkit_ROOT}") |
Lei Zhang | 299fc93 | 2022-12-08 16:04:35 -0800 | [diff] [blame] | 515 | elseif((NOT EXISTS "${IREE_CUDA_LIBDEVICE_PATH}") OR IREE_HAL_DRIVER_CUDA) |
Kojo Acquah | 719856b | 2022-06-15 18:35:02 -0400 | [diff] [blame] | 516 | # If we haven't found CUDA deps, download at least enough to build for CUDA. |
| 517 | # This will define IREE_CUDA_DOWNLOAD_LIBDEVICE_PATH & IREE_CUDA_DOWNLOAD_INCLUDE_PATH |
| 518 | # vars with the target deps. |
| 519 | message(STATUS "CUDA SDK not found by CMake but downloading dependencies") |
| 520 | add_subdirectory(build_tools/third_party/cuda EXCLUDE_FROM_ALL) |
| 521 | endif() |
Stella Laurenzo | 5943902 | 2022-04-12 21:04:26 -0700 | [diff] [blame] | 522 | endif() |
Stella Laurenzo | 9838866 | 2022-02-03 15:37:30 -0800 | [diff] [blame] | 523 | endif() |
| 524 | |
| 525 | # If an explicit libdevice file was not specified, and the compiler backend |
| 526 | # is being built, probe for one. |
| 527 | if(IREE_TARGET_BACKEND_CUDA) |
Lei Zhang | 299fc93 | 2022-12-08 16:04:35 -0800 | [diff] [blame] | 528 | if(EXISTS "${IREE_CUDA_LIBDEVICE_PATH}") |
Stella Laurenzo | 9fd5b5d | 2022-02-14 17:07:28 -0800 | [diff] [blame] | 529 | # Explicitly provided: do nothing. |
| 530 | elseif(CUDAToolkit_FOUND AND CUDAToolkit_LIBRARY_ROOT) |
Stella Laurenzo | 9838866 | 2022-02-03 15:37:30 -0800 | [diff] [blame] | 531 | # Note that the variable CUDAToolkit_LIBRARY_ROOT keys off of the presence |
| 532 | # of version.txt, which was changed to version.json in recent releases |
| 533 | # and thwarts the search. |
| 534 | set(IREE_CUDA_LIBDEVICE_PATH "${CUDAToolkit_LIBRARY_ROOT}/nvvm/libdevice/libdevice.10.bc") |
| 535 | elseif(CUDAToolkit_FOUND AND CUDAToolkit_BIN_DIR) |
| 536 | # Back-track from the bin dir as a fallback. |
| 537 | set(IREE_CUDA_LIBDEVICE_PATH "${CUDAToolkit_BIN_DIR}/../nvvm/libdevice/libdevice.10.bc") |
Stella Laurenzo | 5062ae3 | 2022-02-04 17:59:16 -0800 | [diff] [blame] | 538 | elseif(CUDAToolkit_ROOT) |
| 539 | # Sometimes the CUDA toolkit doesn't detect... because, you know. Computers |
| 540 | # are hard and such. In this case, if the user went to the trouble to |
| 541 | # tell us where it is, we have enough information. |
| 542 | set(IREE_CUDA_LIBDEVICE_PATH "${CUDAToolkit_ROOT}/nvvm/libdevice/libdevice.10.bc") |
Kojo Acquah | 719856b | 2022-06-15 18:35:02 -0400 | [diff] [blame] | 543 | elseif(IREE_CUDA_DOWNLOAD_LIBDEVICE_PATH) |
| 544 | message(STATUS "Using downloaded CUDA libdevice") |
| 545 | set(IREE_CUDA_LIBDEVICE_PATH "${IREE_CUDA_DOWNLOAD_LIBDEVICE_PATH}") |
Stella Laurenzo | 9838866 | 2022-02-03 15:37:30 -0800 | [diff] [blame] | 546 | else() |
| 547 | message(FATAL_ERROR "Building with IREE_TARGET_BACKEND_CUDA requires either a CUDA SDK (consult CMake docs for your version: https://cmake.org/cmake/help/latest/module/FindCUDAToolkit.html) or an explicit path to libdevice (set with -DIREE_CUDA_LIBDEVICE_PATH=/path/to/libdevice.10.bc)") |
| 548 | endif() |
| 549 | |
| 550 | if(EXISTS "${IREE_CUDA_LIBDEVICE_PATH}") |
| 551 | message(STATUS "Using CUDA libdevice: ${IREE_CUDA_LIBDEVICE_PATH}") |
| 552 | else() |
| 553 | message(SEND_ERROR "Cannot find CUDA libdevice file (${IREE_CUDA_LIBDEVICE_PATH}). Either configure your CUDA SDK such that it can be found or specify explicitly via -DIREE_CUDA_LIBDEVICE_PATH=/path/to/libdevice.10.bc") |
| 554 | endif() |
| 555 | endif() |
| 556 | |
Stella Laurenzo | 5062ae3 | 2022-02-04 17:59:16 -0800 | [diff] [blame] | 557 | if(IREE_HAL_DRIVER_CUDA) |
| 558 | if(CUDAToolkit_FOUND) |
| 559 | message(STATUS "Using CUDA INCLUDE_DIRS from found SDK: ${CUDAToolkit_INCLUDE_DIRS}") |
| 560 | elseif(CUDAToolkit_ROOT) |
| 561 | # See note above about computers being hard. |
| 562 | # We make minimal use of CUDA for the runtime and really just need cuda.h |
| 563 | # presently. So let's make a guess at that. |
| 564 | set(CUDAToolkit_INCLUDE_DIRS "${CUDAToolkit_ROOT}/include") |
| 565 | if(EXISTS "${CUDAToolkit_INCLUDE_DIRS}/cuda.h") |
| 566 | message(STATUS "Using CUDA INCLUDE_DIRS from CUDAToolkit_ROOT: ${CUDAToolkit_INCLUDE_DIRS}") |
| 567 | else() |
| 568 | message(SEND_ERROR "Using explicitly specified CUDAToolkit_ROOT, could not find cuda.h at: ${CUDAToolkit_INCLUDE_DIRS}") |
| 569 | endif() |
Kojo Acquah | 719856b | 2022-06-15 18:35:02 -0400 | [diff] [blame] | 570 | elseif(IREE_CUDA_DOWNLOAD_INCLUDE_PATH) |
| 571 | message(STATUS "Using downloaded CUDA includes") |
| 572 | set(CUDAToolkit_INCLUDE_DIRS "${IREE_CUDA_DOWNLOAD_INCLUDE_PATH}") |
Stella Laurenzo | 5062ae3 | 2022-02-04 17:59:16 -0800 | [diff] [blame] | 573 | else() |
| 574 | message(SEND_ERROR "Cannot build IREE runtime CUDA components (-DIREE_HAL_DRIVER_CUDA=ON) because a CUDA SDK was not found. Consult CMake docs for your version: https://cmake.org/cmake/help/latest/module/FindCUDAToolkit.html") |
| 575 | endif() |
Stella Laurenzo | 9838866 | 2022-02-03 15:37:30 -0800 | [diff] [blame] | 576 | endif() |
| 577 | |
| 578 | #------------------------------------------------------------------------------- |
Stella Laurenzo | 382122d | 2020-06-11 16:18:09 -0700 | [diff] [blame] | 579 | # MLIR/LLVM Dependency |
Stella Laurenzo | 382122d | 2020-06-11 16:18:09 -0700 | [diff] [blame] | 580 | #------------------------------------------------------------------------------- |
| 581 | |
Stella Laurenzo | 275215d | 2021-08-06 11:50:28 -0700 | [diff] [blame] | 582 | if(NOT IREE_BUILD_COMPILER) |
| 583 | message(STATUS "Not adding LLVM/MLIR because the configuration does not require it") |
| 584 | elseif(TARGET LLVMSupport) |
| 585 | message(STATUS "Not adding IREE bundled LLVM because it has already been included") |
| 586 | if(NOT TARGET MLIRIR) |
| 587 | message(FATAL_ERROR "Detected externally provided LLVM project but could not find MLIR projects (is it enabled/installed?)") |
Stella Laurenzo | 382122d | 2020-06-11 16:18:09 -0700 | [diff] [blame] | 588 | endif() |
Stella Laurenzo | 275215d | 2021-08-06 11:50:28 -0700 | [diff] [blame] | 589 | else() |
| 590 | message(STATUS "Adding bundled LLVM source dependency") |
| 591 | iree_set_llvm_cmake_options() |
Stella Laurenzo | 382122d | 2020-06-11 16:18:09 -0700 | [diff] [blame] | 592 | |
Stella Laurenzo | 688670f | 2021-09-24 18:16:25 -0700 | [diff] [blame] | 593 | # Enable MLIR Python bindings if IREE Python bindings enabled. |
| 594 | if(IREE_BUILD_PYTHON_BINDINGS) |
Stella Laurenzo | 74b04b7 | 2022-03-02 10:21:11 -0800 | [diff] [blame] | 595 | set(MLIR_ENABLE_BINDINGS_PYTHON ON) |
| 596 | set(MHLO_ENABLE_BINDINGS_PYTHON ON) |
Stella Laurenzo | 688670f | 2021-09-24 18:16:25 -0700 | [diff] [blame] | 597 | endif() |
| 598 | |
Stella Laurenzo | 275215d | 2021-08-06 11:50:28 -0700 | [diff] [blame] | 599 | # Disable LLVM's warnings. |
Stella Laurenzo | 74b04b7 | 2022-03-02 10:21:11 -0800 | [diff] [blame] | 600 | set(LLVM_ENABLE_WARNINGS OFF) |
Stella Laurenzo | 275215d | 2021-08-06 11:50:28 -0700 | [diff] [blame] | 601 | |
Ben Vanik | 89a77fa | 2020-10-07 17:19:31 -0700 | [diff] [blame] | 602 | # Stash cmake build type in case LLVM messes with it. |
| 603 | set(_CMAKE_BUILD_TYPE "${CMAKE_BUILD_TYPE}") |
| 604 | |
Stella Laurenzo | 62fbef0 | 2021-08-09 20:52:48 -0700 | [diff] [blame] | 605 | # Add default external projects. |
Stella Laurenzo | 02230c1 | 2021-08-10 03:58:42 +0000 | [diff] [blame] | 606 | iree_add_llvm_external_project(mlir-iree-dialects MLIR_IREE_DIALECTS ${CMAKE_CURRENT_SOURCE_DIR}/llvm-external-projects/iree-dialects) |
Stella Laurenzo | 62fbef0 | 2021-08-09 20:52:48 -0700 | [diff] [blame] | 607 | iree_add_llvm_external_project(mlir-hlo MLIR_HLO ${CMAKE_CURRENT_SOURCE_DIR}/third_party/mlir-hlo) |
Scott Todd | e23d4a7 | 2022-07-27 14:16:39 -0700 | [diff] [blame] | 608 | if(IREE_INPUT_TORCH) |
Yi Zhang | c35fee8 | 2022-04-06 14:35:28 -0400 | [diff] [blame] | 609 | iree_add_llvm_external_project(torch-mlir-dialects TORCH_MLIR_DIALECTS ${CMAKE_CURRENT_SOURCE_DIR}/third_party/torch-mlir-dialects) |
| 610 | endif() |
Stella Laurenzo | 62fbef0 | 2021-08-09 20:52:48 -0700 | [diff] [blame] | 611 | |
Stella Laurenzo | 275215d | 2021-08-06 11:50:28 -0700 | [diff] [blame] | 612 | add_subdirectory("third_party/llvm-project/llvm" EXCLUDE_FROM_ALL) |
Stella Laurenzo | 382122d | 2020-06-11 16:18:09 -0700 | [diff] [blame] | 613 | |
Ben Vanik | 89a77fa | 2020-10-07 17:19:31 -0700 | [diff] [blame] | 614 | # Reset CMAKE_BUILD_TYPE to its previous setting. |
Stella Laurenzo | 74b04b7 | 2022-03-02 10:21:11 -0800 | [diff] [blame] | 615 | set(CMAKE_BUILD_TYPE "${_CMAKE_BUILD_TYPE}" ) |
Stella Laurenzo | 382122d | 2020-06-11 16:18:09 -0700 | [diff] [blame] | 616 | |
Stella Laurenzo | 275215d | 2021-08-06 11:50:28 -0700 | [diff] [blame] | 617 | # Extend module path to allow submodules to use LLVM and MLIR CMake modules. |
| 618 | list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_BINARY_DIR}/lib/cmake/mlir") |
| 619 | list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_BINARY_DIR}/third_party/llvm-project/llvm/lib/cmake/llvm/") |
Marius Brehler | 71f76cb | 2020-11-10 20:56:55 +0100 | [diff] [blame] | 620 | |
Stella Laurenzo | 275215d | 2021-08-06 11:50:28 -0700 | [diff] [blame] | 621 | # Add the bundled include directories for cmake files looking for them. |
| 622 | list(APPEND LLVM_INCLUDE_DIRS |
| 623 | ${CMAKE_CURRENT_SOURCE_DIR}/third_party/llvm-project/llvm/include |
| 624 | ${CMAKE_CURRENT_BINARY_DIR}/third_party/llvm-project/llvm/include |
| 625 | ) |
| 626 | list(APPEND MLIR_INCLUDE_DIRS |
| 627 | ${CMAKE_CURRENT_SOURCE_DIR}/third_party/llvm-project/mlir/include |
| 628 | ${CMAKE_CURRENT_BINARY_DIR}/third_party/llvm-project/llvm/tools/mlir/include |
| 629 | ) |
Marius Brehler | 71f76cb | 2020-11-10 20:56:55 +0100 | [diff] [blame] | 630 | |
Stella Laurenzo | 6012859 | 2022-04-17 21:52:09 -0700 | [diff] [blame] | 631 | # TODO: It should be possible to fix upstream targets so as to not require |
| 632 | # any of these. Remove as they become unnecessary. |
Stella Laurenzo | 62fbef0 | 2021-08-09 20:52:48 -0700 | [diff] [blame] | 633 | function(_hack_llvm_include_paths) |
Scott Todd | 1a1aea6 | 2022-04-28 09:12:11 -0700 | [diff] [blame] | 634 | set(_COMMON_INCLUDE_DIRS |
Stella Laurenzo | 6012859 | 2022-04-17 21:52:09 -0700 | [diff] [blame] | 635 | # LLVM |
Stella Laurenzo | 62fbef0 | 2021-08-09 20:52:48 -0700 | [diff] [blame] | 636 | $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/third_party/llvm-project/llvm/include> |
| 637 | $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}/third_party/llvm-project/llvm/include> |
Stella Laurenzo | 6012859 | 2022-04-17 21:52:09 -0700 | [diff] [blame] | 638 | |
| 639 | # MLIR |
Stella Laurenzo | 62fbef0 | 2021-08-09 20:52:48 -0700 | [diff] [blame] | 640 | $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/third_party/llvm-project/mlir/include> |
| 641 | $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}/third_party/llvm-project/llvm/tools/mlir/include> |
Stella Laurenzo | 6012859 | 2022-04-17 21:52:09 -0700 | [diff] [blame] | 642 | |
| 643 | # LLD |
| 644 | $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/third_party/llvm-project/lld/include> |
| 645 | $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}/third_party/llvm-project/llvm/tools/lld/include> |
| 646 | |
Stella Laurenzo | 62fbef0 | 2021-08-09 20:52:48 -0700 | [diff] [blame] | 647 | ) |
| 648 | # Avoid globally modifying paths by instead adding the include paths to the |
| 649 | # rules that really should have them in the first place. |
Scott Todd | 1a1aea6 | 2022-04-28 09:12:11 -0700 | [diff] [blame] | 650 | target_include_directories(LLVMSupport PUBLIC ${_COMMON_INCLUDE_DIRS}) |
| 651 | target_include_directories(MLIRSupport PUBLIC ${_COMMON_INCLUDE_DIRS}) |
Stella Laurenzo | 7ec09ce | 2022-11-24 11:13:52 -0800 | [diff] [blame] | 652 | |
| 653 | # Also add a library that can be depended on to get LLVM includes setup |
| 654 | # properly. bazel_to_cmake targets this for some header only pseudo deps. |
| 655 | add_library(IREELLVMIncludeSetup INTERFACE) |
| 656 | target_include_directories(IREELLVMIncludeSetup INTERFACE ${_COMMON_INCLUDE_DIRS}) |
Stella Laurenzo | 62fbef0 | 2021-08-09 20:52:48 -0700 | [diff] [blame] | 657 | endfunction() |
| 658 | _hack_llvm_include_paths() |
Stella Laurenzo | 382122d | 2020-06-11 16:18:09 -0700 | [diff] [blame] | 659 | endif() |
| 660 | |
Stella Laurenzo | 382122d | 2020-06-11 16:18:09 -0700 | [diff] [blame] | 661 | #------------------------------------------------------------------------------- |
Scott Todd | 8b0b0cd | 2021-12-16 15:13:57 -0800 | [diff] [blame] | 662 | # Other dependencies |
Stella Laurenzo | a3e97f1 | 2020-12-05 23:29:13 -0800 | [diff] [blame] | 663 | #------------------------------------------------------------------------------- |
| 664 | |
Ben Vanik | 512d2d3 | 2019-09-20 13:22:34 -0700 | [diff] [blame] | 665 | include(external_cc_library) |
Ben Vanik | 2d1808b | 2020-07-17 19:02:16 -0700 | [diff] [blame] | 666 | include(flatbuffer_c_library) |
Ben Vanik | 512d2d3 | 2019-09-20 13:22:34 -0700 | [diff] [blame] | 667 | |
Ben Vanik | a903649 | 2021-06-25 09:39:53 -0700 | [diff] [blame] | 668 | add_subdirectory(build_tools/third_party/libyaml EXCLUDE_FROM_ALL) |
Jerry Wu | ae05f30 | 2022-05-17 13:58:13 +0000 | [diff] [blame] | 669 | add_subdirectory(build_tools/third_party/llvm-project EXCLUDE_FROM_ALL) |
Ben Vanik | a903649 | 2021-06-25 09:39:53 -0700 | [diff] [blame] | 670 | add_subdirectory(build_tools/third_party/vulkan_memory_allocator EXCLUDE_FROM_ALL) |
Ben Vanik | 512d2d3 | 2019-09-20 13:22:34 -0700 | [diff] [blame] | 671 | |
Stella Laurenzo | 275215d | 2021-08-06 11:50:28 -0700 | [diff] [blame] | 672 | iree_set_googletest_cmake_options() |
Marius Brehler | f5022e8 | 2019-12-13 15:20:25 -0800 | [diff] [blame] | 673 | add_subdirectory(third_party/googletest EXCLUDE_FROM_ALL) |
Stella Laurenzo | 275215d | 2021-08-06 11:50:28 -0700 | [diff] [blame] | 674 | |
| 675 | if(IREE_ENABLE_THREADING) |
| 676 | iree_set_benchmark_cmake_options() |
Cindy Liu | 331946c | 2021-06-01 12:20:30 -0700 | [diff] [blame] | 677 | add_subdirectory(third_party/benchmark EXCLUDE_FROM_ALL) |
Ben Vanik | 4aae003 | 2022-04-19 15:49:26 -0700 | [diff] [blame] | 678 | if(IREE_ENABLE_CPUINFO) |
| 679 | iree_set_cpuinfo_cmake_options() |
| 680 | add_subdirectory(third_party/cpuinfo EXCLUDE_FROM_ALL) |
| 681 | endif() |
Cindy Liu | 331946c | 2021-06-01 12:20:30 -0700 | [diff] [blame] | 682 | endif() |
Stella Laurenzo | 275215d | 2021-08-06 11:50:28 -0700 | [diff] [blame] | 683 | |
Stella Laurenzo | 275215d | 2021-08-06 11:50:28 -0700 | [diff] [blame] | 684 | add_subdirectory(build_tools/third_party/flatcc EXCLUDE_FROM_ALL) |
Stella Laurenzo | 275215d | 2021-08-06 11:50:28 -0700 | [diff] [blame] | 685 | |
Marius Brehler | 9b86ad5 | 2022-06-08 17:09:02 +0200 | [diff] [blame] | 686 | if(IREE_HAL_DRIVER_VULKAN) |
| 687 | add_subdirectory(third_party/vulkan_headers EXCLUDE_FROM_ALL) |
| 688 | endif() |
Ben Vanik | 185d30c | 2019-09-19 14:24:11 -0700 | [diff] [blame] | 689 | |
Scott Todd | 4e1a69b | 2021-01-25 15:29:49 -0800 | [diff] [blame] | 690 | # TODO(scotttodd): Iterate some more and find a better place for this. |
Scott Todd | 1a1aea6 | 2022-04-28 09:12:11 -0700 | [diff] [blame] | 691 | if(NOT CMAKE_CROSSCOMPILING) |
Ben Vanik | 6874719 | 2021-10-26 20:38:45 -0700 | [diff] [blame] | 692 | install( |
| 693 | TARGETS iree-flatcc-cli |
| 694 | COMPONENT iree-flatcc-cli |
| 695 | RUNTIME DESTINATION bin |
| 696 | ) |
Lei Zhang | 0d281b7 | 2020-06-01 20:00:23 -0400 | [diff] [blame] | 697 | endif() |
| 698 | |
Stella Laurenzo | 275215d | 2021-08-06 11:50:28 -0700 | [diff] [blame] | 699 | if(IREE_BUILD_COMPILER) |
Marius Brehler | 3eaf444 | 2021-01-13 18:22:08 +0100 | [diff] [blame] | 700 | add_subdirectory(build_tools/third_party/mlir-hlo EXCLUDE_FROM_ALL) |
Ben Vanik | cc2aff9 | 2019-09-24 10:23:55 -0700 | [diff] [blame] | 701 | endif() |
| 702 | |
Stella Laurenzo | 275215d | 2021-08-06 11:50:28 -0700 | [diff] [blame] | 703 | if(IREE_BUILD_TESTS) |
Geoffrey Martin-Noble | 10f1822 | 2022-06-09 16:00:13 -0700 | [diff] [blame] | 704 | include(iree_configure_testing) |
Marius Brehler | 2967650 | 2019-12-27 17:07:10 -0800 | [diff] [blame] | 705 | endif() |
| 706 | |
MaheshRavishankar | 1547ac2 | 2021-09-23 15:22:46 -0700 | [diff] [blame] | 707 | if(IREE_BUILD_PYTHON_BINDINGS) |
Stella Laurenzo | 95ad84c | 2021-09-24 14:56:01 -0700 | [diff] [blame] | 708 | if(NOT TARGET pybind11::module) |
| 709 | message(STATUS "Using bundled pybind11") |
| 710 | add_subdirectory(third_party/pybind11 EXCLUDE_FROM_ALL) |
| 711 | else() |
| 712 | message(STATUS "Not including bundled pybind11 (already configured)") |
| 713 | endif() |
Marius Brehler | f3d73c9 | 2020-01-16 16:11:52 -0800 | [diff] [blame] | 714 | endif() |
| 715 | |
Scott Todd | d1620f0 | 2021-12-22 14:55:38 -0800 | [diff] [blame] | 716 | if(IREE_TARGET_BACKEND_METAL_SPIRV) |
Stella Laurenzo | 275215d | 2021-08-06 11:50:28 -0700 | [diff] [blame] | 717 | iree_set_spirv_cross_cmake_options() |
Lei Zhang | 3cbb28e | 2020-09-22 15:30:27 -0400 | [diff] [blame] | 718 | # SPIRV-Cross is needed to cross compile SPIR-V into MSL source code. |
| 719 | add_subdirectory(third_party/spirv_cross EXCLUDE_FROM_ALL) |
| 720 | endif() |
| 721 | |
Scott Todd | f8519ca | 2021-12-16 16:01:49 -0800 | [diff] [blame] | 722 | if(IREE_TARGET_BACKEND_WEBGPU) |
| 723 | # Tint is needed to compile SPIR-V into WGSL source code. |
| 724 | # Tint also requires SPIRV-Tools, which requires SPIRV-Headers. |
| 725 | iree_set_spirv_headers_cmake_options() |
| 726 | add_subdirectory(third_party/spirv_headers EXCLUDE_FROM_ALL) |
| 727 | add_subdirectory(build_tools/third_party/spirv-tools EXCLUDE_FROM_ALL) |
| 728 | add_subdirectory(build_tools/third_party/tint EXCLUDE_FROM_ALL) |
| 729 | endif() |
| 730 | |
Ben Vanik | 185d30c | 2019-09-19 14:24:11 -0700 | [diff] [blame] | 731 | #------------------------------------------------------------------------------- |
Lei Zhang | 22f0e24 | 2020-03-30 12:09:20 -0700 | [diff] [blame] | 732 | # IREE top-level targets |
| 733 | #------------------------------------------------------------------------------- |
| 734 | |
Jerry Wu | 16e2d9c | 2022-11-22 06:19:46 +0000 | [diff] [blame] | 735 | if(IREE_BUILD_BENCHMARKS OR IREE_BUILD_EXPERIMENTAL_E2E_TEST_ARTIFACTS) |
Scott Todd | 9ca7563 | 2022-04-13 10:47:11 -0700 | [diff] [blame] | 736 | # Add top-level custom targets to drive generating benchmark suites. |
| 737 | |
| 738 | # iree-benchmark-import-models imports benchmark models from their source |
| 739 | # formats, such as .tflite flatbuffers, to IREE-compatible .mlir files. |
| 740 | add_custom_target(iree-benchmark-import-models) |
| 741 | |
| 742 | # iree-benchmark-suites fully prepares benchmark models for benchmarking: |
| 743 | # * importing from source formats to IREE-compatible .mlir files |
| 744 | # * compiling from .mlir files to benchmark-ready .vmfb files |
| 745 | # * generating flagfiles for executing the benchmark .vmfb files |
Lei Zhang | fe4403e | 2021-06-01 15:09:43 -0400 | [diff] [blame] | 746 | add_custom_target(iree-benchmark-suites) |
| 747 | endif() |
| 748 | |
Jerry Wu | d41d073 | 2022-11-23 01:43:55 +0000 | [diff] [blame] | 749 | # TODO(#11263): This conditional block should be merged with the block above |
| 750 | # once we remove IREE_BUILD_BENCHMARKS. |
| 751 | if(IREE_BUILD_EXPERIMENTAL_E2E_TEST_ARTIFACTS) |
Jerry Wu | fb87ad1 | 2022-12-21 05:59:02 +0000 | [diff] [blame^] | 752 | # iree-e2e-compile-stats-suites compiles the benchmark models with specific |
| 753 | # flags to collect the compilation statistics. |
| 754 | add_custom_target(iree-e2e-compile-stats-suites) |
| 755 | |
Jerry Wu | d41d073 | 2022-11-23 01:43:55 +0000 | [diff] [blame] | 756 | # iree-e2e-test-artifacts builds all e2e test artifacts, including benchmarks |
| 757 | # and model tests. |
| 758 | add_custom_target(iree-e2e-test-artifacts) |
Jerry Wu | d41d073 | 2022-11-23 01:43:55 +0000 | [diff] [blame] | 759 | add_dependencies(iree-e2e-test-artifacts |
| 760 | iree-benchmark-import-models |
| 761 | iree-benchmark-suites |
Jerry Wu | fb87ad1 | 2022-12-21 05:59:02 +0000 | [diff] [blame^] | 762 | iree-e2e-compile-stats-suites |
Jerry Wu | d41d073 | 2022-11-23 01:43:55 +0000 | [diff] [blame] | 763 | ) |
| 764 | endif() |
| 765 | |
Scott Todd | 1a1aea6 | 2022-04-28 09:12:11 -0700 | [diff] [blame] | 766 | if(IREE_BUILD_MICROBENCHMARKS) |
Han-Chung Wang | a6fbb76 | 2022-04-15 14:25:04 -0700 | [diff] [blame] | 767 | # Add top-level custom targets to drive generating microbenchmark suites. |
| 768 | add_custom_target(iree-microbenchmark-suites) |
| 769 | endif() |
| 770 | |
Scott Todd | 1a1aea6 | 2022-04-28 09:12:11 -0700 | [diff] [blame] | 771 | if(IREE_BUILD_DOCS) |
Lei Zhang | 22f0e24 | 2020-03-30 12:09:20 -0700 | [diff] [blame] | 772 | # Add a top-level custom target to drive generating all documentation. |
| 773 | # Register it to the default target given that IREE_BUILD_DOCS is explicitly |
| 774 | # requested. |
| 775 | add_custom_target(iree-doc ALL) |
| 776 | endif() |
| 777 | |
Stella Laurenzo | 74b04b7 | 2022-03-02 10:21:11 -0800 | [diff] [blame] | 778 | # Testing rules that require generation will add dependencies to this target. |
| 779 | # This allows them to be EXCLUDE_FROM_ALL but still invokable. |
| 780 | add_custom_target(iree-test-deps COMMENT "Building IREE test deps") |
| 781 | |
CindyLiu | 99373e0 | 2022-10-12 09:22:24 -0700 | [diff] [blame] | 782 | # Testing rules that generate test scripts for iree-run-module-test will add |
| 783 | # dependencies to this target. It is a subset of `iree-test-deps`. |
| 784 | add_custom_target(iree-run-module-test-deps |
| 785 | COMMENT |
| 786 | "Building IREE run module test targets" |
| 787 | ) |
| 788 | |
Ben Vanik | 5efe034 | 2022-11-22 17:28:04 -0800 | [diff] [blame] | 789 | # Samples may require additional files to be built/configured and will add |
Ben Vanik | b4bf5f7 | 2022-12-05 19:28:57 -0800 | [diff] [blame] | 790 | # dependencies to this target. |
Ben Vanik | 5efe034 | 2022-11-22 17:28:04 -0800 | [diff] [blame] | 791 | add_custom_target(iree-sample-deps |
| 792 | COMMENT |
| 793 | "Building IREE sample data targets" |
| 794 | ) |
| 795 | |
Lei Zhang | 22f0e24 | 2020-03-30 12:09:20 -0700 | [diff] [blame] | 796 | #------------------------------------------------------------------------------- |
Ben Vanik | 185d30c | 2019-09-19 14:24:11 -0700 | [diff] [blame] | 797 | # IREE top-level libraries |
| 798 | #------------------------------------------------------------------------------- |
| 799 | |
Rob Suderman | d42e002 | 2022-06-08 16:38:45 -0700 | [diff] [blame] | 800 | if(IREE_ENABLE_CLANG_TIDY) |
| 801 | set(CMAKE_CXX_CLANG_TIDY clang-tidy -warnings-as-errors=*) |
| 802 | endif() |
| 803 | |
Marius Brehler | f5022e8 | 2019-12-13 15:20:25 -0800 | [diff] [blame] | 804 | add_subdirectory(build_tools/embed_data/) |
| 805 | |
Jerry Wu | 16e2d9c | 2022-11-22 06:19:46 +0000 | [diff] [blame] | 806 | if(IREE_BUILD_BENCHMARKS OR IREE_BUILD_EXPERIMENTAL_E2E_TEST_ARTIFACTS) |
Stella Laurenzo | a6bf65c | 2022-01-11 20:47:51 -0800 | [diff] [blame] | 807 | find_program(IREE_IMPORT_TFLITE_PATH iree-import-tflite) |
| 808 | if(IREE_IMPORT_TFLITE_PATH) |
| 809 | message(STATUS "Found ${IREE_IMPORT_TFLITE_PATH} to generate benchmark artifacts") |
| 810 | else() |
| 811 | message(STATUS "iree-import-tflite not found. Some benchmarks may not configure") |
| 812 | endif() |
Jerry Wu | 60798ca | 2022-06-21 23:36:40 +0000 | [diff] [blame] | 813 | find_program(IREE_IMPORT_TF_PATH iree-import-tf) |
| 814 | if(IREE_IMPORT_TF_PATH) |
| 815 | message(STATUS "Found ${IREE_IMPORT_TF_PATH} to generate benchmark artifacts") |
| 816 | else() |
| 817 | message(STATUS "iree-import-tf not found. Some benchmarks may not configure") |
| 818 | endif() |
Jerry Wu | 16e2d9c | 2022-11-22 06:19:46 +0000 | [diff] [blame] | 819 | endif() |
| 820 | |
| 821 | # Note: Test deps are not built as part of all (use the iree-test-deps target). |
| 822 | add_subdirectory(tests EXCLUDE_FROM_ALL) |
| 823 | |
| 824 | if(IREE_BUILD_BENCHMARKS) |
Lei Zhang | 08cea04 | 2021-07-20 12:44:01 -0400 | [diff] [blame] | 825 | add_subdirectory(benchmarks) |
Lei Zhang | ff38a68 | 2021-06-08 21:12:24 -0400 | [diff] [blame] | 826 | endif() |
| 827 | |
Scott Todd | 1a1aea6 | 2022-04-28 09:12:11 -0700 | [diff] [blame] | 828 | if(IREE_BUILD_COMPILER) |
Stella Laurenzo | 41a2ceb | 2022-04-29 12:49:36 -0700 | [diff] [blame] | 829 | add_subdirectory(compiler) |
Ben Vanik | cc2aff9 | 2019-09-24 10:23:55 -0700 | [diff] [blame] | 830 | endif() |
Ben Vanik | 6b112ef | 2019-10-03 10:45:14 -0700 | [diff] [blame] | 831 | |
Scott Todd | 4f16b99 | 2022-05-17 10:33:53 -0700 | [diff] [blame] | 832 | add_subdirectory(runtime) |
| 833 | |
Scott Todd | 4c022df | 2022-05-10 16:55:18 -0700 | [diff] [blame] | 834 | # tools/ can depend on compiler/ and runtime/ |
Scott Todd | f57ab75 | 2022-05-23 10:36:44 -0700 | [diff] [blame] | 835 | add_subdirectory(tools) |
Ben Vanik | 6b112ef | 2019-10-03 10:45:14 -0700 | [diff] [blame] | 836 | |
Rob Suderman | d42e002 | 2022-06-08 16:38:45 -0700 | [diff] [blame] | 837 | |
| 838 | if(IREE_ENABLE_CLANG_TIDY) |
| 839 | set(CMAKE_CXX_CLANG_TIDY "") |
| 840 | endif() |
| 841 | |
Stella Laurenzo | d3770ff | 2021-10-18 22:54:18 -0700 | [diff] [blame] | 842 | if(IREE_BUILD_TRACY) |
Stella Laurenzo | 3149b6d | 2021-10-24 18:45:17 -0700 | [diff] [blame] | 843 | if(NOT CMAKE_SYSTEM_NAME MATCHES "Linux") |
Stella Laurenzo | d3770ff | 2021-10-18 22:54:18 -0700 | [diff] [blame] | 844 | message(WARNING "Building Tracy (IREE_BUILD_TRACY) on non-Linux is unsupported and may fail below.") |
| 845 | endif() |
| 846 | add_subdirectory(build_tools/third_party/tracy ${CMAKE_CURRENT_BINARY_DIR}/tracy) |
| 847 | if(NOT TARGET IREETracyCaptureServer) |
| 848 | message(SEND_ERROR "Could not build Tracy. Either unset IREE_BUILD_TRACY or look for missing dependencies above and install them.") |
| 849 | endif() |
| 850 | endif() |
| 851 | |
Scott Todd | f57ab75 | 2022-05-23 10:36:44 -0700 | [diff] [blame] | 852 | # Order constraint: The python bindings install tools targets from tools/ |
Stella Laurenzo | d3770ff | 2021-10-18 22:54:18 -0700 | [diff] [blame] | 853 | # and tracy, and must come after it. |
Stella Laurenzo | 3b44a0a | 2022-04-18 19:57:57 -0700 | [diff] [blame] | 854 | if(IREE_BUILD_PYTHON_BINDINGS) |
Stella Laurenzo | 6012859 | 2022-04-17 21:52:09 -0700 | [diff] [blame] | 855 | # Write out a .env file to make IDEs and developers happy. |
| 856 | # Yes, we are writing this to the source dir. It is only for IDEs and if |
Scott Todd | fe9cb17 | 2022-12-08 09:17:52 -0800 | [diff] [blame] | 857 | # it gets clobbered, it is fine (it is also ignored in .gitignore). |
Stella Laurenzo | 41a2ceb | 2022-04-29 12:49:36 -0700 | [diff] [blame] | 858 | set(_PYTHONPATH_ENV "PYTHONPATH=$<SHELL_PATH:${CMAKE_CURRENT_BINARY_DIR}/compiler/bindings/python;${CMAKE_CURRENT_BINARY_DIR}/runtime/bindings/python>\n") |
Scott Todd | fe9cb17 | 2022-12-08 09:17:52 -0800 | [diff] [blame] | 859 | file(GENERATE OUTPUT "${CMAKE_CURRENT_SOURCE_DIR}/.env" CONTENT "${_PYTHONPATH_ENV}") |
| 860 | file(GENERATE OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/.env" CONTENT "${_PYTHONPATH_ENV}") |
| 861 | # Similarly, write out .env.bat for Windows. |
| 862 | set(_PYTHONPATH_ENV_BAT "set PYTHONPATH=$<SHELL_PATH:${CMAKE_CURRENT_BINARY_DIR}/compiler/bindings/python;${CMAKE_CURRENT_BINARY_DIR}/runtime/bindings/python>\n") |
| 863 | file(GENERATE OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/.env.bat" CONTENT "${_PYTHONPATH_ENV_BAT}") |
Stella Laurenzo | 77a63cd | 2021-01-04 17:29:54 -0800 | [diff] [blame] | 864 | endif() |
| 865 | |
Scott Todd | 1a1aea6 | 2022-04-28 09:12:11 -0700 | [diff] [blame] | 866 | if(IREE_BUILD_BINDINGS_TFLITE) |
Scott Todd | ada25e6 | 2022-05-03 16:16:15 -0700 | [diff] [blame] | 867 | add_subdirectory(runtime/bindings/tflite) |
Ben Vanik | cd1132f | 2021-01-29 15:58:17 -0800 | [diff] [blame] | 868 | endif() |
| 869 | |
Scott Todd | 1a1aea6 | 2022-04-28 09:12:11 -0700 | [diff] [blame] | 870 | if(IREE_BUILD_EXPERIMENTAL_REMOTING) |
Stella Laurenzo | 0f005e5 | 2020-12-27 11:54:33 -0800 | [diff] [blame] | 871 | # NOTE: Currently liburing is only used by the experimental remoting |
| 872 | # support, so keeping it scoped here. If this broadens, then include along |
| 873 | # with other dependencies as normal. |
| 874 | if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux") |
| 875 | message(STATUS "Enabling liburing") |
| 876 | add_subdirectory(build_tools/third_party/liburing EXCLUDE_FROM_ALL) |
| 877 | endif() |
| 878 | add_subdirectory(experimental/remoting) |
Ben Vanik | b64e918 | 2020-01-30 15:19:37 -0800 | [diff] [blame] | 879 | endif() |
Scott Todd | ee30e1b | 2020-02-03 16:44:15 -0800 | [diff] [blame] | 880 | |
Scott Todd | 1a1aea6 | 2022-04-28 09:12:11 -0700 | [diff] [blame] | 881 | if(IREE_BUILD_EXPERIMENTAL_WEB_SAMPLES) |
Scott Todd | 15fce0a | 2022-02-14 12:43:23 -0800 | [diff] [blame] | 882 | add_subdirectory(experimental/web) |
Scott Todd | f237b5e | 2022-01-28 11:02:25 -0800 | [diff] [blame] | 883 | endif() |
| 884 | |
Stella Laurenzo | 03e48db | 2020-06-11 18:35:13 -0700 | [diff] [blame] | 885 | set(IREE_PUBLIC_INCLUDE_DIRS "${IREE_COMMON_INCLUDE_DIRS}" |
| 886 | CACHE INTERNAL "IREE: Include Directories" FORCE) |
Stella Laurenzo | 688670f | 2021-09-24 18:16:25 -0700 | [diff] [blame] | 887 | |
Jerry Wu | 623d174 | 2022-03-31 18:16:02 +0000 | [diff] [blame] | 888 | #------------------------------------------------------------------------------- |
| 889 | # IREE benchmark tools |
| 890 | #------------------------------------------------------------------------------- |
| 891 | |
| 892 | add_subdirectory(build_tools/benchmarks) |
Stella Laurenzo | 3b44a0a | 2022-04-18 19:57:57 -0700 | [diff] [blame] | 893 | |
| 894 | #------------------------------------------------------------------------------- |
Jerry Wu | 71562cc | 2022-09-20 18:56:41 -0700 | [diff] [blame] | 895 | # IREE build tools python modules |
| 896 | #------------------------------------------------------------------------------- |
| 897 | |
| 898 | add_subdirectory(build_tools/python) |
| 899 | |
| 900 | #------------------------------------------------------------------------------- |
Scott Todd | 4f16b99 | 2022-05-17 10:33:53 -0700 | [diff] [blame] | 901 | # Samples |
Stella Laurenzo | 3b44a0a | 2022-04-18 19:57:57 -0700 | [diff] [blame] | 902 | #------------------------------------------------------------------------------- |
| 903 | |
Scott Todd | 4c022df | 2022-05-10 16:55:18 -0700 | [diff] [blame] | 904 | # samples/ can depend on anything, so we include it last |
Stella Laurenzo | 1e8d1fa | 2022-04-22 09:50:43 -0700 | [diff] [blame] | 905 | if(IREE_BUILD_SAMPLES) |
| 906 | add_subdirectory(samples) |
| 907 | endif() |
Geoffrey Martin-Noble | 10f1822 | 2022-06-09 16:00:13 -0700 | [diff] [blame] | 908 | |
| 909 | if(IREE_BUILD_TESTS) |
| 910 | iree_create_ctest_customization() |
| 911 | endif() |