blob: 77b0bb6e2e416aa4c73a0045966010c5d4a1ecc6 [file] [log] [blame]
Geoffrey Martin-Noble552d3f82021-05-25 17:56:09 -07001# Copyright 2019 The IREE Authors
Ben Vanik185d30c2019-09-19 14:24:11 -07002#
Geoffrey Martin-Noble552d3f82021-05-25 17:56:09 -07003# 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 Vanik185d30c2019-09-19 14:24:11 -07006
Geoffrey Martin-Noble4fd7a1d2022-11-17 15:09:49 -08007cmake_minimum_required(VERSION 3.21...3.24)
Ben Vanik552c5f42021-06-21 17:39:14 -07008
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
12set(CMAKE_POLICY_DEFAULT_CMP0116 OLD)
Ben Vanika49a5f52023-02-21 12:19:17 -080013if(POLICY CMP0116)
14 cmake_policy(SET CMP0116 OLD)
15endif()
Ben Vanik552c5f42021-06-21 17:39:14 -070016
Ben Vanik512d2d32019-09-20 13:22:34 -070017set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
Ben Vanik185d30c2019-09-19 14:24:11 -070018
Stella Laurenzo688670f2021-09-24 18:16:25 -070019project(IREE ASM C CXX)
Lei Zhang6c5907b2020-06-02 09:06:08 -070020set(CMAKE_C_STANDARD 11)
Scott Todd07349fa2022-07-27 12:16:05 -070021set(CMAKE_CXX_STANDARD 17)
Stella Laurenzobc09f0e2022-07-27 16:22:39 -070022# LLVM defines this as a CACHE property and uses a policy that causes the
23# cache value to take precedence. This is causing us to mix 17/14 across
24# the boundary.
25# TODO: Remove this once the LLVM mechanism is updated. See:
26# 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
27set(CMAKE_CXX_STANDARD 17 CACHE STRING "C++ standard to conform to" FORCE)
Ben Vanik185d30c2019-09-19 14:24:11 -070028set(IREE_IDE_FOLDER IREE)
29set_property(GLOBAL PROPERTY USE_FOLDERS ON)
30
Scott Todd1a1aea62022-04-28 09:12:11 -070031if(MSVC)
Ben Vanik96fd2772021-04-19 20:30:56 -070032 enable_language(ASM_MASM)
33else()
34 enable_language(ASM)
35endif()
36
Cindy Liub1bfb9c2022-06-27 10:46:13 -070037# Set the default CMake build type so some of the build type dependent setting
38# in the submodules and functions (IREE assertion) can be set properly.
Cindy Liu23dafd02022-06-22 15:36:21 -070039set(DEFAULT_CMAKE_BUILD_TYPE "Release")
40if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
41 message(STATUS "No build type selected, default to ${DEFAULT_CMAKE_BUILD_TYPE}")
42 set(CMAKE_BUILD_TYPE "${DEFAULT_CMAKE_BUILD_TYPE}" CACHE STRING "Build type (default ${DEFAULT_CMAKE_BUILD_TYPE})" FORCE)
43endif()
44
Scott Todd99e9f5b2021-12-30 10:56:12 -080045include(CMakeDependentOption)
46
Lei Zhang7e253da2020-06-10 07:51:19 -070047#-------------------------------------------------------------------------------
48# Project component configuration
49#-------------------------------------------------------------------------------
50
Ben Vanik56d44bf2020-05-15 13:20:50 -070051option(IREE_ENABLE_RUNTIME_TRACING "Enables instrumented runtime tracing." OFF)
Scott Todd1cd9f0a2021-07-29 10:05:44 -070052option(IREE_ENABLE_COMPILER_TRACING "Enables instrumented compiler tracing." OFF)
Ben Vanik2d79c202022-10-24 15:08:57 -070053option(IREE_ENABLE_RENDERDOC_PROFILING "Enables profiling HAL devices with the RenderDoc tool." OFF)
Geoffrey Martin-Noblefe74bd42021-10-27 22:17:13 -070054option(IREE_ENABLE_THREADING "Builds IREE in with thread library support." ON)
Rob Sudermand42e0022022-06-08 16:38:45 -070055option(IREE_ENABLE_CLANG_TIDY "Builds IREE in with clang tidy enabled on IREE's libraries." OFF)
Ben Vanik512d2d32019-09-20 13:22:34 -070056
Ben Vanik7ed4f4b2023-06-14 13:33:54 -070057set(IREE_TRACING_PROVIDER_DEFAULT "tracy" CACHE STRING "Default tracing implementation.")
58set(IREE_TRACING_PROVIDER ${IREE_TRACING_PROVIDER_DEFAULT} CACHE STRING "Chooses which built-in tracing implementation is used when tracing is enabled.")
59set(IREE_TRACING_PROVIDER_H "" CACHE STRING "Header file for custom tracing providers.")
60set(IREE_TRACING_MODE_DEFAULT "2" CACHE STRING "Default tracing feature/verbosity mode. See iree/base/tracing.h for more.")
61set(IREE_TRACING_MODE ${IREE_TRACING_MODE_DEFAULT} CACHE STRING "Tracing feature/verbosity mode. See iree/base/tracing.h for more.")
62
Jakub Kuderskie9424062024-03-27 23:42:29 -040063if(IREE_ENABLE_COMPILER_TRACING AND NOT IREE_ENABLE_RUNTIME_TRACING)
64 message(SEND_ERROR
65 "IREE_ENABLE_COMPILER_TRACING currently requires "
66 "-DIREE_ENABLE_RUNTIME_TRACING=ON")
67endif()
68
Ben Vanik4aae0032022-04-19 15:49:26 -070069# TODO(#8469): remove the dependency on cpuinfo entirely.
Ben Vanikcbe93c02023-08-08 10:12:08 -070070set(IREE_ENABLE_CPUINFO_DEFAULT ON)
Ben Vanik62c4f982023-12-12 18:01:52 -080071if(CMAKE_SYSTEM_NAME MATCHES "Darwin|Emscripten|Windows|WindowsStore")
Ben Vanikcbe93c02023-08-08 10:12:08 -070072 set(IREE_ENABLE_CPUINFO_DEFAULT OFF)
73endif()
74option(IREE_ENABLE_CPUINFO "Enables runtime use of cpuinfo for processor topology detection." ${IREE_ENABLE_CPUINFO_DEFAULT})
Ben Vanik4aae0032022-04-19 15:49:26 -070075
Marius Brehleredfc57f2019-12-18 11:19:38 -080076option(IREE_BUILD_COMPILER "Builds the IREE compiler." ON)
Ben Vanik512d2d32019-09-20 13:22:34 -070077option(IREE_BUILD_TESTS "Builds IREE unit tests." ON)
Scott Todd96d92132023-06-12 15:45:19 -070078option(IREE_BUILD_DOCS "Builds IREE documentation files." OFF)
Ben Vanik6b112ef2019-10-03 10:45:14 -070079option(IREE_BUILD_SAMPLES "Builds IREE sample projects." ON)
Scott Todd382fc632022-06-06 10:57:24 -070080option(IREE_BUILD_PYTHON_BINDINGS "Builds the IREE python bindings" OFF)
Stella Laurenzod3770ff2021-10-18 22:54:18 -070081option(IREE_BUILD_TRACY "Builds tracy server tools." OFF)
Stella Laurenzo96d959e2023-02-19 11:58:14 -080082option(IREE_BUILD_BUNDLED_LLVM "Builds the bundled llvm-project (vs using installed)" ON)
Ben Vanikcd1132f2021-01-29 15:58:17 -080083
Stella Laurenzobb1de962021-01-05 08:18:33 -080084# Properties controlling version and naming of release artifacts.
Stella Laurenzof33f5b52022-01-08 17:49:52 +000085set(IREE_RELEASE_PACKAGE_SUFFIX "" CACHE STRING "Suffix to append to distributed package names")
Stella Laurenzobb1de962021-01-05 08:18:33 -080086set(IREE_RELEASE_VERSION "0.1a1" CACHE STRING "Version to embed in distributed packages")
87set(IREE_RELEASE_REVISION "HEAD" CACHE STRING "Version control revision information to embed in distributed packages")
Jacques Pienaar27779b22022-12-22 15:37:56 -080088option(IREE_EMBED_RELEASE_INFO "Embed the IREE version information in built artifacts." OFF)
Stella Laurenzobb1de962021-01-05 08:18:33 -080089
Scott Toddde426de2023-01-13 08:26:02 -080090# Using already built host binaries, such as for cross-compilation.
91set(IREE_HOST_BIN_DIR_DEFAULT "")
92if(IREE_HOST_BINARY_ROOT)
93 message(WARNING "IREE_HOST_BINARY_ROOT is deprecated. Use IREE_HOST_BIN_DIR"
94 " pointing directly to the directory containing binaries"
95 " instead.")
96 set(IREE_HOST_BIN_DIR_DEFAULT "${IREE_HOST_BINARY_ROOT}/bin")
97endif()
98set(IREE_HOST_BIN_DIR "${IREE_HOST_BIN_DIR_DEFAULT}" CACHE STRING "Path to directory containing IREE binary tools to use instead of building them from source.")
99
Ben Vanikcd1132f2021-01-29 15:58:17 -0800100option(IREE_BUILD_BINDINGS_TFLITE "Builds the IREE TFLite C API compatibility shim" ON)
Kojo Acquah5bf39942021-04-22 16:01:28 -0700101option(IREE_BUILD_BINDINGS_TFLITE_JAVA "Builds the IREE TFLite Java bindings with the C API compatibility shim" ON)
Ben Vanikcd1132f2021-01-29 15:58:17 -0800102
Jerry Wub6b1dee2022-06-01 13:45:16 +0000103option(IREE_BUILD_MICROBENCHMARKS "Builds IREE microbenchmark suites." OFF)
104
Scott Todd46e12062024-02-02 10:54:59 -0800105option(IREE_BUILD_ALL_CHECK_TEST_MODULES "Builds all modules for iree_check_test, regardless of which would be tested" ON)
106
Jerry Wu57404972023-03-02 22:16:11 +0000107option(IREE_BUILD_E2E_TEST_ARTIFACTS "Builds IREE E2E test artifacts suite generated by the e2e test framework." "${IREE_BUILD_EXPERIMENTAL_E2E_TEST_ARTIFACTS}")
Jerry Wufed372c2023-10-19 12:05:32 -0700108set(IREE_E2E_TEST_ARTIFACTS_DIR "" CACHE STRING "Set external prebuilt E2E test artifacts directory")
109if(IREE_BUILD_E2E_TEST_ARTIFACTS AND NOT "${IREE_E2E_TEST_ARTIFACTS_DIR}" STREQUAL "")
110 message(SEND_ERROR
111 "IREE_E2E_TEST_ARTIFACTS_DIR and IREE_BUILD_E2E_TEST_ARTIFACTS can't be"
112 " set at the same time."
113 )
114endif()
115
Boian Petkantchind4e39682023-07-31 10:09:16 -0700116option(IREE_ENABLE_COLLECTIVE_RUNTIME_TESTS "Enable runtime tests for collective operations." OFF)
Jerry Wu57404972023-03-02 22:16:11 +0000117
Stella Laurenzo289b9a12023-02-24 13:06:32 -0800118# For development, builds LLVM (and in the future) the whole compiler as
119# individual shared libraries similar to if passing -DBUILD_SHARED_LIBS=ON
120# to a standalone LLVM build. This can dramatically reduce linking time and
121# makes the management of some dependencies more strict.
122# This option is considered experimental and should not be relied on until
123# CI coverage is established.
124option(IREE_COMPILER_BUILD_SHARED_LIBS "Enables BUILD_SHARED_LIBS CMake mode for LLVM and the compiler (this is only suitable for development)" OFF)
125
126# Must be defined as an option (CMake does not do it automatically), even though
127# we override it for different parts of the tree.
128# This option is considered experimental and should not be relied on until
129# CI coverage is established.
130option(BUILD_SHARED_LIBS "Instructs CMake to build libraries as shared if possible" OFF)
131
Stella Laurenzob61a9182024-03-18 12:52:22 -0700132# Control of LTO settings for the runtime build.
Jakub Kuderskie9424062024-03-27 23:42:29 -0400133set(IREE_RUNTIME_OPTIMIZATION_PROFILE "" CACHE STRING
Stella Laurenzob61a9182024-03-18 12:52:22 -0700134 "Build optimization profile to apply. One of '', 'lto', 'size'.")
135set(IREE_LTO_MODE "full" CACHE STRING "LTO type, 'thin' or 'full'. Only consulted on clang-like compilers.")
136
Stella Laurenzo0f005e52020-12-27 11:54:33 -0800137#-------------------------------------------------------------------------------
Ben Vanik5363ea32023-05-02 15:47:58 -0700138# IREE command-line tooling configuration
139#-------------------------------------------------------------------------------
140
141# External user modules linked into IREE tooling (iree-run-module/etc).
142# These are only available in the internal IREE tools and here for testing
143# custom modules in standard workflows. This is not a deployment mechanism and
144# users integrating IREE into their libraries or applications will need to
145# manage the building and registering/resolving the modules themselves.
146#
147# See runtime/src/iree/tooling/modules/CMakeLists.txt for more information on
148# how to declare external modules.
149set(IREE_EXTERNAL_TOOLING_MODULES "" CACHE STRING "")
150
151#-------------------------------------------------------------------------------
Stella Laurenzo2eb68622023-11-10 17:04:46 -0800152# IREE out of tree plugins
Stella Laurenzoc6092c42023-03-25 19:55:37 -0700153#
Stella Laurenzo2eb68622023-11-10 17:04:46 -0800154# IREE has multiple facilities for building with out of tree plugin sources.
155# The entry-point is via the -DIREE_CMAKE_PLUGIN_PATHS=<dir1;dir2> setting.
156# Each directory in this list can have any of the following files in it, which
157# will be included at the appropriate point in the CMake build:
Stella Laurenzoc6092c42023-03-25 19:55:37 -0700158#
Stella Laurenzo2eb68622023-11-10 17:04:46 -0800159# iree_compiler_plugin.cmake : Included in the context of the compiler/
160# directory before sources and bindings. Will execute with source and
Peyman B66b10cc2023-11-15 17:14:14 +0100161# binary dir ${IREE_BUILD_DIR}/compiler/plugins (shared with all other
Stella Laurenzo2eb68622023-11-10 17:04:46 -0800162# dirs).
163# iree_runtime_plugin.cmake : Included in the context of the runtime/
Peyman B66b10cc2023-11-15 17:14:14 +0100164# directory before sources. Will execute with source and binary dir
Stella Laurenzo2eb68622023-11-10 17:04:46 -0800165# ${IREE_BUILD_DIR}/runtime/plugins (shared with all other dirs).
166#
167# Typically, these plugins will perform additional project setup, and
168# eventually call registration functions to advertise additional capabilities
169# to the build system.
170#
171# Super-projects can populate the list IREE_CMAKE_BUILTIN_PLUGIN_PATHS to
Stella Laurenzo62a7f352023-07-10 17:59:15 -0700172# statically configure more plugin directories to be used.
173#
Stella Laurenzo2eb68622023-11-10 17:04:46 -0800174# Compiler Plugins
175# ----------------
176# Compiler plugins are advertised to the build system via the function
177# iree_compiler_register_plugin(), which associated a plugin id to a build target
178# and registration function. See samples/compiler_plugins for examples.
Stella Laurenzoc6092c42023-03-25 19:55:37 -0700179#
Stella Laurenzo2eb68622023-11-10 17:04:46 -0800180# External HAL Driver Plugins
181# ---------------------------
182# HAL driver implementations are advertised to the build system via
Peyman B66b10cc2023-11-15 17:14:14 +0100183# iree_register_external_hal_driver(), which specifies the name, target,
Stella Laurenzo2eb68622023-11-10 17:04:46 -0800184# registration function and optional source/binary directory.
Stella Laurenzoc6092c42023-03-25 19:55:37 -0700185#-------------------------------------------------------------------------------
186
Stella Laurenzo2eb68622023-11-10 17:04:46 -0800187set(IREE_CMAKE_PLUGIN_PATHS "" CACHE STRING "Paths to be scanned for IREE CMake plugin includes")
188list(APPEND IREE_CMAKE_BUILTIN_PLUGIN_PATHS "compiler/plugins")
Stella Laurenzoc6092c42023-03-25 19:55:37 -0700189if(IREE_BUILD_SAMPLES)
Stella Laurenzo2eb68622023-11-10 17:04:46 -0800190 list(APPEND IREE_CMAKE_BUILTIN_PLUGIN_PATHS "samples/compiler_plugins")
Stella Laurenzoc6092c42023-03-25 19:55:37 -0700191endif()
192
193#-------------------------------------------------------------------------------
Stella Laurenzo0f005e52020-12-27 11:54:33 -0800194# Experimental project flags
195#-------------------------------------------------------------------------------
196
Scott Toddf237b5e2022-01-28 11:02:25 -0800197option(IREE_BUILD_EXPERIMENTAL_WEB_SAMPLES "Builds experimental web samples." OFF)
Benoit Jacob655b71a2024-04-23 11:07:38 -0400198option(IREE_BUILD_EXPERIMENTAL_HAL_EXECUTABLE_LIBRARY_CALL_HOOKS "Build experimental hal_executable_library_call hook libraries that can be used with LD_PRELOAD against runtimes built with `-DCMAKE_C_FLAGS=-DIREE_HAL_EXECUTABLE_LIBRARY_CALL_HOOK`." OFF)
Stella Laurenzo0f005e52020-12-27 11:54:33 -0800199
200#-------------------------------------------------------------------------------
Scott Todd18a54852023-01-27 08:52:12 -0800201# CUDA Toolkit.
202#
203# Using the (optional) CUDA support in the compiler and runtime requires the
204# NVIDIA CUDA Toolkit. The toolkit can either be installed ahead of time or
205# it can be automatically downloaded on certain host architectures.
Scott Todd9fa5de72023-01-23 14:40:18 -0800206#-------------------------------------------------------------------------------
207
Scott Todd18a54852023-01-27 08:52:12 -0800208set(IREE_CUDA_AVAILABLE OFF)
Lei Zhang41583ca2024-01-27 10:31:21 -0800209# The IREE cuda driver requires CUDA >= 12.
Boian Petkantchin58cd1122024-01-18 13:40:48 -0800210set(IREE_CUDA_MIN_VERSION_REQUIRED 12)
211find_package(CUDAToolkit ${IREE_CUDA_MIN_VERSION_REQUIRED})
Scott Todd18a54852023-01-27 08:52:12 -0800212if(CUDAToolkit_FOUND)
213 set(IREE_CUDA_AVAILABLE ON)
214else()
215 # We can download the SDK in build_tools/third_party/cuda/CMakeLists.txt, if
216 # on a supported platform/arch.
217 if(CMAKE_SYSTEM_NAME STREQUAL "Linux" OR WIN32)
218 if(CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "(x86_64)|(AMD64|amd64)")
219 set(IREE_CUDA_AVAILABLE ON)
220 endif()
Scott Todd9fa5de72023-01-23 14:40:18 -0800221 endif()
222endif()
223
224#-------------------------------------------------------------------------------
Lei Zhang5f2743b2024-03-20 16:39:24 -0700225# HIP Default Target Configuration.
226#
227# HIP does not have a stable instruction set like NVIDIA PTX; it requires
228# binaries specific to a target chip. We have tests that generate and run
229# deployable code which need to specify the proper target chip.
230#-------------------------------------------------------------------------------
231
232set(IREE_HIP_TEST_TARGET_CHIP "" CACHE STRING
233 "Target chip for HIP tests that need to compile device code. \
234 Defaults to empty string to disable tests.")
235
236#-------------------------------------------------------------------------------
Stella Laurenzo74b04b72022-03-02 10:21:11 -0800237# Runtime HAL Driver Options
238# By default, all runtime drivers supported by the current platform which do
239# not require external deps are enabled by default. This can be changed with:
240# -DIREE_HAL_DRIVER_DEFAULTS=OFF
Ben Vanik185d30c2019-09-19 14:24:11 -0700241#-------------------------------------------------------------------------------
242
Ben Vanik4e6af052022-06-07 17:10:20 -0700243# External HAL drivers; see runtime/src/iree/hal/drivers/CMakeLists.txt for more
244# information on how to declare external drivers.
245set(IREE_EXTERNAL_HAL_DRIVERS "" CACHE STRING "")
246
Ben Vanik89160272022-09-26 16:44:11 -0700247# Additional executable loader deps to add dependent libraries to any target
248# using the default executable loader registration utilities.
249# TODO(benvanik): extend the deps to encompass the built-in loaders too so that
250# we have one flag. We could also support a list of deps and automatically
251# generate the registration from that via a configure file.
252set(IREE_HAL_EXECUTABLE_LOADER_EXTRA_DEPS "" CACHE STRING "")
253
Ben Vanike19fc8e2023-04-14 16:08:01 -0700254# Additional executable import provider deps to add dependent libraries to any
255# target using the default executable import registration utilities.
256# TODO(benvanik): extend the deps to encompass the built-in imports too so that
257# we have one flag. We could also support a list of deps and automatically
258# generate the registration from that via a configure file.
259set(IREE_HAL_EXECUTABLE_PLUGIN_EXTRA_DEPS "" CACHE STRING "")
260
Scott Toddd1620f02021-12-22 14:55:38 -0800261option(IREE_HAL_DRIVER_DEFAULTS "Sets the default value for all runtime HAL drivers" ON)
Ben Vanika9aaebe2022-12-16 09:14:53 -0800262
Scott Todd9fa5de72023-01-23 14:40:18 -0800263# CUDA support is enabled by default if the platform supports the CUDA SDK and
264# not cross compiling. Note: a CUDA-compatible GPU with drivers is still
265# required to actually run CUDA workloads.
266set(IREE_HAL_DRIVER_CUDA_DEFAULT ${IREE_HAL_DRIVER_DEFAULTS})
Scott Todd18a54852023-01-27 08:52:12 -0800267if(NOT IREE_CUDA_AVAILABLE OR CMAKE_CROSSCOMPILING)
Scott Todd9fa5de72023-01-23 14:40:18 -0800268 set(IREE_HAL_DRIVER_CUDA_DEFAULT OFF)
269endif()
270
Lei Zhang5f2743b2024-03-20 16:39:24 -0700271# HIP support is enabled by default if not cross compiling. Note: a HIP-compatible
272# GPU with drivers is still required to actually run HIP workloads.
273set(IREE_HAL_DRIVER_HIP_DEFAULT ${IREE_HAL_DRIVER_DEFAULTS})
274if(CMAKE_CROSSCOMPILING)
275 set(IREE_HAL_DRIVER_HIP_DEFAULT OFF)
276endif()
277
Scott Todd9fa5de72023-01-23 14:40:18 -0800278# Vulkan support is enabled by default if the platform might support Vulkan.
279# Apple platforms support Metal instead of Vulkan, though MoltenVK may work.
280set(IREE_HAL_DRIVER_VULKAN_DEFAULT ${IREE_HAL_DRIVER_DEFAULTS})
Scott Todd1a1aea62022-04-28 09:12:11 -0700281if(APPLE)
Scott Toddd1620f02021-12-22 14:55:38 -0800282 set(IREE_HAL_DRIVER_VULKAN_DEFAULT OFF)
Scott Toddd1620f02021-12-22 14:55:38 -0800283endif()
Marius Brehler0a4b67f2020-05-08 13:19:16 -0700284
Lei Zhangd1d03cb2023-08-07 13:52:56 -0400285# Metal support is enabled if it's one of the Apple platforms.
286set(IREE_HAL_DRIVER_METAL_DEFAULT ${IREE_HAL_DRIVER_DEFAULTS})
287# Right now only support Apple silicon devices.
288if(NOT APPLE OR NOT ${CMAKE_SYSTEM_PROCESSOR} MATCHES "arm64")
289 set(IREE_HAL_DRIVER_METAL_DEFAULT OFF)
290endif()
291
Scott Toddd1620f02021-12-22 14:55:38 -0800292option(IREE_HAL_DRIVER_CUDA "Enables the 'cuda' runtime HAL driver" ${IREE_HAL_DRIVER_CUDA_DEFAULT})
Lei Zhang5f2743b2024-03-20 16:39:24 -0700293option(IREE_HAL_DRIVER_HIP "Enables the 'hip' runtime HAL driver" ${IREE_HAL_DRIVER_HIP_DEFAULT})
Ben Vanike3058072022-06-06 19:21:44 -0700294option(IREE_HAL_DRIVER_LOCAL_SYNC "Enables the 'local-sync' runtime HAL driver" ${IREE_HAL_DRIVER_DEFAULTS})
295option(IREE_HAL_DRIVER_LOCAL_TASK "Enables the 'local-task' runtime HAL driver" ${IREE_HAL_DRIVER_DEFAULTS})
296option(IREE_HAL_DRIVER_VULKAN "Enables the 'vulkan' runtime HAL driver" ${IREE_HAL_DRIVER_VULKAN_DEFAULT})
Lei Zhangd1d03cb2023-08-07 13:52:56 -0400297option(IREE_HAL_DRIVER_METAL "Enables the 'metal' runtime HAL driver" ${IREE_HAL_DRIVER_METAL_DEFAULT})
Ben Vanike3058072022-06-06 19:21:44 -0700298
Ben Vanik6e64b6e2022-06-07 09:14:53 -0700299option(IREE_HAL_EXECUTABLE_LOADER_DEFAULTS "Sets the default value for all runtime HAL executable loaders" ON)
300set(IREE_HAL_EXECUTABLE_LOADER_EMBEDDED_ELF_DEFAULT ${IREE_HAL_EXECUTABLE_LOADER_DEFAULTS})
301set(IREE_HAL_EXECUTABLE_LOADER_SYSTEM_LIBRARY_DEFAULT ${IREE_HAL_EXECUTABLE_LOADER_DEFAULTS})
302set(IREE_HAL_EXECUTABLE_LOADER_VMVX_MODULE_DEFAULT ${IREE_HAL_EXECUTABLE_LOADER_DEFAULTS})
Ben Vanike3058072022-06-06 19:21:44 -0700303
Ben Vanike19fc8e2023-04-14 16:08:01 -0700304option(IREE_HAL_EXECUTABLE_PLUGIN_DEFAULTS "Sets the default value for all runtime HAL executable plugin mechanisms" ON)
305set(IREE_HAL_EXECUTABLE_PLUGIN_EMBEDDED_ELF_DEFAULT ${IREE_HAL_EXECUTABLE_PLUGIN_DEFAULTS})
306set(IREE_HAL_EXECUTABLE_PLUGIN_SYSTEM_LIBRARY_DEFAULT ${IREE_HAL_EXECUTABLE_PLUGIN_DEFAULTS})
307
Ben Vanike3058072022-06-06 19:21:44 -0700308# Emscripten builds don't support embedded ELF libraries.
309if(EMSCRIPTEN)
Ben Vanik2e8540e2022-06-06 20:39:34 -0700310 set(IREE_HAL_EXECUTABLE_LOADER_EMBEDDED_ELF_DEFAULT OFF)
Ben Vanike19fc8e2023-04-14 16:08:01 -0700311 set(IREE_HAL_EXECUTABLE_PLUGIN_EMBEDDED_ELF_DEFAULT OFF)
Ben Vanike3058072022-06-06 19:21:44 -0700312endif()
313
Ben Vanike19fc8e2023-04-14 16:08:01 -0700314# If no local driver is enabled then we force all the loaders/imports off; this
315# allows for simpler checks that don't need to see if both the driver and
316# feature is available.
Ben Vanik6e64b6e2022-06-07 09:14:53 -0700317if(NOT IREE_HAL_DRIVER_LOCAL_SYNC AND NOT IREE_HAL_DRIVER_LOCAL_TASK)
318 set(IREE_HAL_EXECUTABLE_LOADER_EMBEDDED_ELF_DEFAULT OFF)
319 set(IREE_HAL_EXECUTABLE_LOADER_SYSTEM_LIBRARY_DEFAULT OFF)
320 set(IREE_HAL_EXECUTABLE_LOADER_VMVX_MODULE_DEFAULT OFF)
Ben Vanike19fc8e2023-04-14 16:08:01 -0700321 set(IREE_HAL_EXECUTABLE_PLUGIN_EMBEDDED_ELF_DEFAULT OFF)
322 set(IREE_HAL_EXECUTABLE_PLUGIN_SYSTEM_LIBRARY_DEFAULT OFF)
Ben Vanik6e64b6e2022-06-07 09:14:53 -0700323endif()
324
Ben Vanik2e8540e2022-06-06 20:39:34 -0700325option(IREE_HAL_EXECUTABLE_LOADER_EMBEDDED_ELF "Enables the embedded dynamic library loader for local HAL drivers" ${IREE_HAL_EXECUTABLE_LOADER_EMBEDDED_ELF_DEFAULT})
Ben Vanike3058072022-06-06 19:21:44 -0700326option(IREE_HAL_EXECUTABLE_LOADER_SYSTEM_LIBRARY "Enables the system dynamic library loader for local HAL drivers" ${IREE_HAL_EXECUTABLE_LOADER_SYSTEM_LIBRARY_DEFAULT})
327option(IREE_HAL_EXECUTABLE_LOADER_VMVX_MODULE "Enables the VMVX module loader for local HAL drivers" ${IREE_HAL_EXECUTABLE_LOADER_VMVX_MODULE_DEFAULT})
328
Ben Vanike19fc8e2023-04-14 16:08:01 -0700329option(IREE_HAL_EXECUTABLE_PLUGIN_EMBEDDED_ELF "Enables the embedded dynamic library plugin mechanism for local HAL drivers" ${IREE_HAL_EXECUTABLE_PLUGIN_EMBEDDED_ELF_DEFAULT})
330option(IREE_HAL_EXECUTABLE_PLUGIN_SYSTEM_LIBRARY "Enables the system dynamic library plugin mechanism for local HAL drivers" ${IREE_HAL_EXECUTABLE_PLUGIN_SYSTEM_LIBRARY_DEFAULT})
331
Scott Todd0f1f8eb2022-06-10 15:53:30 -0700332if(IREE_BUILD_COMPILER)
Scott Toddf5660ee2024-04-22 16:16:37 -0700333 # The compiler minimally requires the local task driver with the default
334 # (embedded elf) executable loader. This is used by the ConstEval component,
335 # which can also be used with VMVX or other loaders/devices. See issue#17070.
Scott Todd0f1f8eb2022-06-10 15:53:30 -0700336 set(IREE_HAL_DRIVER_LOCAL_TASK ON)
Scott Toddf5660ee2024-04-22 16:16:37 -0700337 set(IREE_HAL_EXECUTABLE_LOADER_EMBEDDED_ELF ON)
Scott Todd0f1f8eb2022-06-10 15:53:30 -0700338endif()
339
Ben Vanike3058072022-06-06 19:21:44 -0700340message(STATUS "IREE HAL drivers:")
Stella Laurenzo74b04b72022-03-02 10:21:11 -0800341if(IREE_HAL_DRIVER_CUDA)
342 message(STATUS " - cuda")
343endif()
Lei Zhang5f2743b2024-03-20 16:39:24 -0700344if(IREE_HAL_DRIVER_HIP)
345 message(STATUS " - hip")
346endif()
Ben Vanike3058072022-06-06 19:21:44 -0700347if(IREE_HAL_DRIVER_LOCAL_SYNC)
348 message(STATUS " - local-sync")
349endif()
350if(IREE_HAL_DRIVER_LOCAL_TASK)
351 message(STATUS " - local-task")
352endif()
Stella Laurenzo74b04b72022-03-02 10:21:11 -0800353if(IREE_HAL_DRIVER_VULKAN)
354 message(STATUS " - vulkan")
355endif()
Lei Zhangd1d03cb2023-08-07 13:52:56 -0400356if(IREE_HAL_DRIVER_METAL)
357 message(STATUS " - metal")
358endif()
Ben Vanik4e6af052022-06-07 17:10:20 -0700359if(IREE_EXTERNAL_HAL_DRIVERS)
360 message(STATUS " + external: ${IREE_EXTERNAL_HAL_DRIVERS}")
361endif()
Ben Vanik512d2d32019-09-20 13:22:34 -0700362
Ben Vanike3058072022-06-06 19:21:44 -0700363message(STATUS "IREE HAL local executable library loaders:")
Ben Vanik2e8540e2022-06-06 20:39:34 -0700364if(IREE_HAL_EXECUTABLE_LOADER_EMBEDDED_ELF)
365 message(STATUS " - embedded-elf")
Ben Vanike3058072022-06-06 19:21:44 -0700366endif()
367if(IREE_HAL_EXECUTABLE_LOADER_SYSTEM_LIBRARY)
368 message(STATUS " - system-library")
369endif()
370if(IREE_HAL_EXECUTABLE_LOADER_VMVX_MODULE)
371 message(STATUS " - vmvx-module")
372endif()
373
Ben Vanike19fc8e2023-04-14 16:08:01 -0700374message(STATUS "IREE HAL local executable plugin mechanisms:")
375if(IREE_HAL_EXECUTABLE_PLUGIN_EMBEDDED_ELF)
376 message(STATUS " - embedded-elf")
377endif()
378if(IREE_HAL_EXECUTABLE_PLUGIN_SYSTEM_LIBRARY)
379 message(STATUS " - system-library")
380endif()
381
Lei Zhang0d281b72020-06-01 20:00:23 -0400382#-------------------------------------------------------------------------------
Scott Todd382fc632022-06-06 10:57:24 -0700383# Compiler Target Options
Scott Todd9fa5de72023-01-23 14:40:18 -0800384# By default, all compiler targets supported by the current platform are
385# enabled. Some compiler targets like CUDA will install external deps as
386# needed at configure time. This can be changed with:
Scott Todd382fc632022-06-06 10:57:24 -0700387# -DIREE_TARGET_BACKEND_DEFAULTS=OFF
388#-------------------------------------------------------------------------------
389
390option(IREE_TARGET_BACKEND_DEFAULTS "Sets the default value for all compiler target backends" ON)
391
392# The VMVX backend is always enabled.
393cmake_dependent_option(IREE_TARGET_BACKEND_VMVX "Enables the 'vmvx' compiler target backend" ON ${IREE_BUILD_COMPILER} OFF)
394
395# Supported default target backends.
Scott Todd352da3f2022-07-20 15:25:11 -0700396cmake_dependent_option(IREE_TARGET_BACKEND_LLVM_CPU "Enables the 'llvm-cpu' compiler target backend" ${IREE_TARGET_BACKEND_DEFAULTS} ${IREE_BUILD_COMPILER} OFF)
397cmake_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 Todd382fc632022-06-06 10:57:24 -0700398cmake_dependent_option(IREE_TARGET_BACKEND_METAL_SPIRV "Enables the 'metal-spirv' compiler target backend" ${IREE_TARGET_BACKEND_DEFAULTS} ${IREE_BUILD_COMPILER} OFF)
Scott Todd382fc632022-06-06 10:57:24 -0700399cmake_dependent_option(IREE_TARGET_BACKEND_VULKAN_SPIRV "Enables the 'vulkan-spirv' compiler target backend" ${IREE_TARGET_BACKEND_DEFAULTS} ${IREE_BUILD_COMPILER} OFF)
400
Stella Laurenzo58b56702023-10-05 15:05:58 -0700401# Default target backends that are not yet fully supported but are being brought up.
402cmake_dependent_option(IREE_TARGET_BACKEND_ROCM "Enables the 'rocm' compiler target backend" ${IREE_TARGET_BACKEND_DEFAULTS} ${IREE_BUILD_COMPILER} OFF)
403
Scott Todd9fa5de72023-01-23 14:40:18 -0800404# Supported default target backends that are only available on certain
405# platforms.
406set(IREE_TARGET_BACKEND_CUDA_DEFAULT ${IREE_TARGET_BACKEND_DEFAULTS})
Scott Todd18a54852023-01-27 08:52:12 -0800407if(NOT IREE_CUDA_AVAILABLE)
Scott Todd9fa5de72023-01-23 14:40:18 -0800408 set(IREE_TARGET_BACKEND_CUDA_DEFAULT OFF)
409endif()
410cmake_dependent_option(IREE_TARGET_BACKEND_CUDA "Enables the 'cuda' compiler target backend" ${IREE_TARGET_BACKEND_CUDA_DEFAULT} ${IREE_BUILD_COMPILER} OFF)
411
Scott Todd382fc632022-06-06 10:57:24 -0700412# Non-default target backends either have additional dependencies or are
413# experimental/niche in some fashion.
Scott Todd382fc632022-06-06 10:57:24 -0700414# Disable WebGPU by default - it has complex deps and is under development.
Ben Vanikeeda5ca2024-02-27 14:18:32 -0800415cmake_dependent_option(IREE_TARGET_BACKEND_WEBGPU_SPIRV "Enables the 'webgpu' compiler target backend" OFF ${IREE_BUILD_COMPILER} OFF)
Scott Todd382fc632022-06-06 10:57:24 -0700416
417#-------------------------------------------------------------------------------
Scott Todde23d4a72022-07-27 14:16:39 -0700418# Compiler Input Dialects
419#-------------------------------------------------------------------------------
420
Jakub Kuderski0dbf0862023-06-12 14:33:06 -0400421cmake_dependent_option(IREE_INPUT_STABLEHLO "Builds support for compiling StableHLO programs" ON ${IREE_BUILD_COMPILER} OFF)
Scott Todde23d4a72022-07-27 14:16:39 -0700422cmake_dependent_option(IREE_INPUT_TORCH "Builds support for compiling Torch MLIR programs" ON ${IREE_BUILD_COMPILER} OFF)
423cmake_dependent_option(IREE_INPUT_TOSA "Builds support for compiling TOSA programs" ON ${IREE_BUILD_COMPILER} OFF)
424
Marius Brehler36f24512022-08-04 17:39:03 +0200425if(IREE_BUILD_COMPILER)
426 message(STATUS "IREE compiler input dialects:")
Jakub Kuderski0dbf0862023-06-12 14:33:06 -0400427 if(IREE_INPUT_STABLEHLO)
428 message(STATUS " - StableHLO")
Marius Brehler36f24512022-08-04 17:39:03 +0200429 endif()
430 if(IREE_INPUT_TORCH)
431 message(STATUS " - Torch MLIR")
432 endif()
433 if(IREE_INPUT_TOSA)
434 message(STATUS " - TOSA")
435 endif()
Scott Todde23d4a72022-07-27 14:16:39 -0700436endif()
437
438#-------------------------------------------------------------------------------
Scott Todd2a1925c2022-06-13 10:03:52 -0700439# Compiler Output Formats
440#-------------------------------------------------------------------------------
441
Scott Todd2a1925c2022-06-13 10:03:52 -0700442cmake_dependent_option(IREE_OUTPUT_FORMAT_C "Enables the 'vm-c' output format, using MLIR EmitC" ON ${IREE_BUILD_COMPILER} OFF)
443
Marius Brehler36f24512022-08-04 17:39:03 +0200444if(IREE_BUILD_COMPILER)
445 message(STATUS "IREE compiler output formats:")
446 if(IREE_OUTPUT_FORMAT_C)
Ben Vanik09630d62023-04-13 14:21:40 -0700447 message(STATUS " - 'vm-c': textual C source module")
Marius Brehler36f24512022-08-04 17:39:03 +0200448 endif()
449 # The 'vm-bytecode' and 'vm-asm' formats are always enabled.
Ben Vanik09630d62023-04-13 14:21:40 -0700450 message(STATUS " - 'vm-bytecode': VM bytecode")
451 message(STATUS " - 'vm-asm': VM MLIR assembly")
Scott Todde23d4a72022-07-27 14:16:39 -0700452endif()
Scott Todde23d4a72022-07-27 14:16:39 -0700453
Scott Todd2a1925c2022-06-13 10:03:52 -0700454#-------------------------------------------------------------------------------
Lei Zhange88470f2020-09-08 13:21:09 -0400455# IREE compilation toolchain configuration
456#-------------------------------------------------------------------------------
457
Lei Zhange88470f2020-09-08 13:21:09 -0400458option(IREE_ENABLE_ASAN "Enable address sanitizer" OFF)
459option(IREE_ENABLE_MSAN "Enable memory sanitizer" OFF)
460option(IREE_ENABLE_TSAN "Enable thread sanitizer" OFF)
Jakub Kuderski068b1722022-07-27 18:14:59 -0400461option(IREE_ENABLE_UBSAN "Enable undefined behavior sanitizer" OFF)
Stella Laurenzodeb48052022-11-25 10:41:46 -0800462option(IREE_ENABLE_SPLIT_DWARF "Enable gsplit-dwarf for debug information if the platform supports it" OFF)
463option(IREE_ENABLE_THIN_ARCHIVES "Enables thin ar archives (elf systems only). Disable for released static archives" OFF)
Ben Vanikadadd032022-11-28 23:18:16 -0800464option(IREE_LINK_COMPILER_SHARED_LIBRARY "Links IREE tools using the compiler compiled into a shared library" ON)
Rechie Khodd176122024-01-17 06:40:18 +0800465option(IREE_ENABLE_WERROR_FLAG "Enable `-Werror` flag, treat error as warning" ON)
Gyungmin Myung00c9fc22024-03-02 23:51:46 +0900466option(IREE_ENABLE_POSITION_INDEPENDENT_CODE "Enable position independent code" TRUE)
bjacob7cf5b842022-04-04 16:48:04 -0400467
Scott Todd86781382023-02-07 14:11:52 -0800468if(IREE_LINK_COMPILER_SHARED_LIBRARY AND IREE_ENABLE_COMPILER_TRACING)
469 message(SEND_ERROR
470 "IREE_ENABLE_COMPILER_TRACING requires "
471 "-DIREE_LINK_COMPILER_SHARED_LIBRARY=OFF (the compiler library must not "
472 "be unloaded before Tracy finishes, static linking is one workaround)")
473endif()
474
Geoffrey Martin-Noble61ea1ed2022-11-23 16:25:57 -0800475option(IREE_ENABLE_CCACHE
476 "[DEPRECATED: Use CMAKE_<LANG>_COMPILER_LAUNCHER configure options or environment variables instead.] Use ccache if installed."
477 OFF)
bjacobe694d952020-11-03 12:05:35 -0500478
Scott Todd1a1aea62022-04-28 09:12:11 -0700479if(IREE_ENABLE_CCACHE)
Geoffrey Martin-Noble61ea1ed2022-11-23 16:25:57 -0800480 message(WARNING
481 "IREE_ENABLE_CCACHE is deprecated. Use CMAKE_<LANG>_COMPILER_LAUNCHER"
482 " configure options or environment variables instead.")
bjacobe694d952020-11-03 12:05:35 -0500483 find_program(CCACHE_PROGRAM ccache)
484 if(CCACHE_PROGRAM)
485 set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}")
Geoffrey Martin-Noble61ea1ed2022-11-23 16:25:57 -0800486 else()
487 message(SEND_ERROR
488 "IREE_ENABLE_CCACHE was set, but executable `ccache` was not found.")
bjacobe694d952020-11-03 12:05:35 -0500489 endif()
490endif()
Lei Zhange88470f2020-09-08 13:21:09 -0400491
Gyungmin Myung00c9fc22024-03-02 23:51:46 +0900492set (CMAKE_POSITION_INDEPENDENT_CODE ${IREE_ENABLE_POSITION_INDEPENDENT_CODE})
493
Geoffrey Martin-Noble3fa4f8d2021-09-10 09:25:27 -0700494option(IREE_DEV_MODE "Configure settings to optimize for IREE development (as opposed to CI or release)" OFF)
Stella Laurenzo5b639122021-06-18 14:44:10 -0700495
496#-------------------------------------------------------------------------------
497# IREE assertions
498# We don't love the way this is done, but we have to line it up with how LLVM
499# does it and not diverge, since all implementations and all header users must
500# have the same definition of NDEBUG.
501#
502# LLVM defaults LLVM_ENABLE_ASSERTIONS to ON for Debug builds only but then
503# conditions itself to only update flags if not building Debug. We just let
504# IREE_ENABLE_ASSERTIONS be not conditioned on anything and only update the
505# flags in appropriate build types.
506#
507# If IREE_ENABLE_ASSERTIONS is set ON manually, then
508# - NDEBUG must be undefined
509# - LLVM_ENABLE_ASSERTIONS is forced off in order to keep multiple parties
510# from mucking with globals.
511#
512# Since CMake forces NDEBUG for !Debug builds, some surgery needs to be done
513# at the top level to avoid divergence.
514#-------------------------------------------------------------------------------
515
516option(IREE_ENABLE_ASSERTIONS "Force unset of NDEBUG compile option" OFF)
517
518# Filter -DNDEBUG from CMAKE_CXX_FLAGS_* and CMAKE_C_FLAGS_* (if
519# CMAKE_BUILD_TYPE is not Debug).
520function(iree_fix_ndebug)
Scott Todd1a1aea62022-04-28 09:12:11 -0700521 string(TOUPPER "${CMAKE_BUILD_TYPE}" _UPPERCASE_CMAKE_BUILD_TYPE)
522 if(IREE_ENABLE_ASSERTIONS AND NOT "${_UPPERCASE_CMAKE_BUILD_TYPE}" STREQUAL "DEBUG")
Stella Laurenzo5b639122021-06-18 14:44:10 -0700523 # Also remove /D NDEBUG to avoid MSVC warnings about conflicting defines.
Scott Todd1a1aea62022-04-28 09:12:11 -0700524 foreach(_FLAGS_VAR_TO_SCRUB
525 CMAKE_CXX_FLAGS_${_UPPERCASE_CMAKE_BUILD_TYPE}
526 CMAKE_C_FLAGS_${_UPPERCASE_CMAKE_BUILD_TYPE})
527 set(_ORIGINAL_FLAGS "${${_FLAGS_VAR_TO_SCRUB}}")
528 string(REGEX REPLACE "(^| )[/-]D *NDEBUG($| )" " " _ALTERED_FLAGS "${_ORIGINAL_FLAGS}")
529 if(NOT "${_ORIGINAL_FLAGS}" STREQUAL "${_ALTERED_FLAGS}")
Stella Laurenzo5b639122021-06-18 14:44:10 -0700530 message(STATUS
Scott Todd1a1aea62022-04-28 09:12:11 -0700531 "IREE_ENABLE_ASSERTIONS force disabled NDEBUG for ${_FLAGS_VAR_TO_SCRUB}: '${_ORIGINAL_FLAGS}' -> '${_ALTERED_FLAGS}'")
532 set(${_FLAGS_VAR_TO_SCRUB} "${_ALTERED_FLAGS}" PARENT_SCOPE)
Stella Laurenzo5b639122021-06-18 14:44:10 -0700533 endif()
534 endforeach()
535
536 # Make sure that LLVM doesn't add its own logic for assertion disabling.
537 # We'd like to make sure that we are not dueling over globals.
538 set(LLVM_ENABLE_ASSERTIONS OFF PARENT_SCOPE)
539 endif()
540endfunction()
541iree_fix_ndebug()
542
Lei Zhange88470f2020-09-08 13:21:09 -0400543#-------------------------------------------------------------------------------
Lei Zhang7e253da2020-06-10 07:51:19 -0700544# IREE utility definitions
Lei Zhang0d281b72020-06-01 20:00:23 -0400545#-------------------------------------------------------------------------------
546
Scott Toddd1620f02021-12-22 14:55:38 -0800547list(APPEND CMAKE_MODULE_PATH
548 ${CMAKE_CURRENT_LIST_DIR}/build_tools/cmake/
Scott Toddd1620f02021-12-22 14:55:38 -0800549)
550
Ben Vanik512d2d32019-09-20 13:22:34 -0700551include(iree_macros)
Ben Vanik185d30c2019-09-19 14:24:11 -0700552include(iree_copts)
Ben Vanik6b112ef2019-10-03 10:45:14 -0700553include(iree_cc_binary)
Ben Vanik185d30c2019-09-19 14:24:11 -0700554include(iree_cc_library)
555include(iree_cc_test)
Scott Todd20d746a2023-01-12 09:11:59 -0800556include(iree_import_binary)
Stella Laurenzo15c306f2023-12-28 19:03:20 -0800557include(iree_install_support)
Stella Laurenzo74b04b72022-03-02 10:21:11 -0800558include(iree_external_cmake_options)
Ben Vanikcc2aff92019-09-24 10:23:55 -0700559include(iree_tablegen_library)
Lei Zhang22f0e242020-03-30 12:09:20 -0700560include(iree_tablegen_doc)
CindyLiu40ed02d2021-04-22 16:16:28 +0000561include(iree_c_embed_data)
Ben Vanik7f6c57c2023-02-07 18:04:32 -0800562include(iree_bitcode_library)
Scott Todd11adcab2019-12-18 14:10:44 -0800563include(iree_bytecode_module)
Marius Brehler46e83312021-03-25 00:11:39 +0100564include(iree_c_module)
Stella Laurenzo94363e22020-12-15 13:46:14 -0800565include(iree_python)
Geoffrey Martin-Noblef0eaf372020-01-28 10:03:14 -0800566include(iree_lit_test)
Stella Laurenzo96d959e2023-02-19 11:58:14 -0800567include(iree_llvm)
Geoffrey Martin-Noble4526dcc2020-03-09 11:59:52 -0700568include(iree_add_all_subdirs)
Geoffrey Martin-Noblee5fd5b52020-03-31 11:31:30 -0700569include(iree_check_test)
Prashant Kumar3cce7fc2024-04-04 23:32:36 +0530570include(iree_e2e_generated_runner_test)
Geoffrey Martin-Noble435c2702022-01-24 15:56:56 -0800571include(iree_native_test)
Geoffrey Martin-Noble2811e502022-01-25 09:44:40 -0800572include(iree_cc_binary_benchmark)
Geoffrey Martin-Noble66d48892021-10-29 12:24:58 -0700573include(iree_benchmark_suite)
Han-Chung Wanga6fbb762022-04-15 14:25:04 -0700574include(iree_microbenchmark_suite)
Scott Todd434ff0e2021-12-21 10:38:36 -0800575include(iree_hal_cts_test_suite)
CindyLiuae72b952022-08-23 15:26:08 -0700576include(iree_static_linker_test)
Jerry Wu116db872022-09-22 19:33:13 +0000577include(iree_fetch_artifact)
CindyLiu080198f2022-10-06 07:21:17 -0700578include(iree_run_module_test)
Stella Laurenzo2eb68622023-11-10 17:04:46 -0800579include(iree_plugin_register)
Ben Vanik185d30c2019-09-19 14:24:11 -0700580
Stella Laurenzobe0f1e12023-04-03 13:34:38 -0700581# Default any sub-tree which doesn't provide its own package namespacing
582# to derive it relative to this directory and prefixed with iree/.
583set(IREE_PACKAGE_ROOT_DIR "${CMAKE_CURRENT_LIST_DIR}")
Lei Zhang923535d2023-04-06 18:07:43 -0400584set(IREE_PACKAGE_ROOT_PREFIX "iree")
Stella Laurenzobe0f1e12023-04-03 13:34:38 -0700585
Ben Vanik185d30c2019-09-19 14:24:11 -0700586#-------------------------------------------------------------------------------
Stella Laurenzo2eb68622023-11-10 17:04:46 -0800587# Experimental ROCM HAL driver
588# Enable with: -DIREE_EXTERNAL_HAL_DRIVERS=rocm
589#-------------------------------------------------------------------------------
590
591iree_register_external_hal_driver(
592 NAME
593 rocm
Peyman B66b10cc2023-11-15 17:14:14 +0100594 SOURCE_DIR
Stella Laurenzo2eb68622023-11-10 17:04:46 -0800595 "${CMAKE_CURRENT_SOURCE_DIR}/experimental/rocm"
596 DRIVER_TARGET
597 iree::experimental::rocm::registration
598 REGISTER_FN
599 iree_hal_rocm_driver_module_register
600)
601
602#-------------------------------------------------------------------------------
603# Experimental WebGPU HAL driver
604# Enable with: -DIREE_EXTERNAL_HAL_DRIVERS=webgpu
605#-------------------------------------------------------------------------------
606
607iree_register_external_hal_driver(
608 NAME
609 webgpu
Peyman B66b10cc2023-11-15 17:14:14 +0100610 SOURCE_DIR
Stella Laurenzo2eb68622023-11-10 17:04:46 -0800611 "${CMAKE_CURRENT_SOURCE_DIR}/experimental/webgpu"
Scott Todd50aa2cc2023-11-27 10:28:47 -0800612 BINARY_DIR
613 "${CMAKE_CURRENT_BINARY_DIR}/experimental/webgpu"
Stella Laurenzo2eb68622023-11-10 17:04:46 -0800614 DRIVER_TARGET
615 iree::experimental::webgpu::registration
616 REGISTER_FN
617 iree_hal_webgpu_driver_module_register
618)
619
620#-------------------------------------------------------------------------------
Lei Zhange88470f2020-09-08 13:21:09 -0400621# IREE compilation flags
Scott Todd29d654e2020-06-11 15:24:17 -0700622#-------------------------------------------------------------------------------
623
Lei Zhangdd21f322020-09-10 10:47:33 -0400624iree_append_list_to_string(CMAKE_C_FLAGS_DEBUG ${IREE_C_FLAGS_DEBUG_LIST})
625iree_append_list_to_string(CMAKE_CXX_FLAGS_DEBUG ${IREE_CXX_FLAGS_DEBUG_LIST})
Scott Todd29d654e2020-06-11 15:24:17 -0700626
627set(CMAKE_CXX_FLAGS_FASTBUILD "-gmlt" CACHE STRING "Flags used by the C++ compiler during fast builds." FORCE)
628set(CMAKE_C_FLAGS_FASTBUILD "-gmlt" CACHE STRING "Flags used by the C compiler during fast builds." FORCE)
629set(CMAKE_EXE_LINKER_FLAGS_FASTBUILD "-Wl,-S" CACHE STRING "Flags used for linking binaries during fast builds." FORCE)
630set(CMAKE_SHARED_LINKER_FLAGS_FASTBUILD "-Wl,-S" CACHE STRING "Flags used by the shared libraries linker binaries during fast builds." FORCE)
631mark_as_advanced(
632 CMAKE_CXX_FLAGS_FASTBUILD
633 CMAKE_C_FLAGS_FASTBUILD
634 CMAKE_EXE_LINKER_FLAGS_FASTBUILD
635 CMAKE_SHARED_LINKER_FLAGS_FASTBUILD
636)
637
Scott Todd7649dee2022-07-18 11:31:46 -0700638# Override the system's default linker.
639# See also: https://llvm.org/docs/CMake.html#llvm-use-linker.
640set(IREE_USE_LINKER "" CACHE STRING "")
641# Equivalent to setting -DIREE_USE_LINKER=lld.
642# Note that unlike LLVM's LLVM_ENABLE_LLD, this does _not_ build lld. You will
643# need to either install a recent version of lld or build it from source prior
644# to setting this option. See also: https://lld.llvm.org/#using-lld.
645# This option is disabled on Apple platforms, where lld is not supported.
646cmake_dependent_option(IREE_ENABLE_LLD "Override the system's default linker to lld" OFF "NOT APPLE" OFF)
647
Scott Todd29d654e2020-06-11 15:24:17 -0700648include(iree_setup_toolchain)
649
650#-------------------------------------------------------------------------------
Stella Laurenzo29032b82021-10-14 15:21:44 -0700651# Python
652# If building features that require Python development, find them early in
653# one invocation (some CMake versions are sensitive to resolving out of order).
654# Otherwise, for features that just require the interpreter, find that alone.
Stella Laurenzoa3e97f12020-12-05 23:29:13 -0800655#-------------------------------------------------------------------------------
656
Stella Laurenzo29032b82021-10-14 15:21:44 -0700657if(IREE_BUILD_PYTHON_BINDINGS)
658 # After CMake 3.18, we are able to limit the scope of the search to just
659 # Development.Module. Searching for Development will fail in situations where
660 # the Python libraries are not available. When possible, limit to just
661 # Development.Module.
662 # See https://pybind11.readthedocs.io/en/stable/compiling.html#findpython-mode
Scott Todda24c8c52022-05-17 09:22:47 -0700663 #
664 # Configuring the Development.Module is flaky in multi-project setups.
665 # "Bootstrapping" by first looking for the optional Development component
666 # seems to be robust generally.
667 # See: https://reviews.llvm.org/D118148
Han-Chung Wang9ed3dab2023-08-30 14:25:24 -0700668 # If building Python packages, we have a hard requirement on 3.9+.
669 find_package(Python3 3.9 COMPONENTS Interpreter Development NumPy)
670 find_package(Python3 3.9 COMPONENTS Interpreter Development.Module NumPy REQUIRED)
Stella Laurenzoacf0b272023-06-26 21:25:48 -0700671 # Some parts of the build use FindPython instead of FindPython3. Why? No
672 # one knows, but they are different. So make sure to bootstrap this one too.
673 # Not doing this here risks them diverging, which on multi-Python systems,
674 # can be troublesome. Note that nanobind requires FindPython.
675 set(Python_EXECUTABLE "${Python3_EXECUTABLE}")
Han-Chung Wang9ed3dab2023-08-30 14:25:24 -0700676 find_package(Python 3.9 COMPONENTS Interpreter Development.Module NumPy REQUIRED)
Stella Laurenzo3149b6d2021-10-24 18:45:17 -0700677elseif(IREE_BUILD_COMPILER OR IREE_BUILD_TESTS)
Stella Laurenzoa3e97f12020-12-05 23:29:13 -0800678 find_package(Python3 COMPONENTS Interpreter REQUIRED)
Stella Laurenzoacf0b272023-06-26 21:25:48 -0700679 set(Python_EXECUTABLE "${Python3_EXECUTABLE}")
680 find_package(Python COMPONENTS Interpreter REQUIRED)
681endif()
682
683if(NOT "${Python_EXECUTABLE}" STREQUAL "${Python3_EXECUTABLE}")
684 message(WARNING "FindPython and FindPython3 found different executables. You may need to pin -DPython_EXECUTABLE and -DPython3_EXECUTABLE (${Python_EXECUTABLE} vs ${Python3_EXECUTABLE})")
Stella Laurenzoa3e97f12020-12-05 23:29:13 -0800685endif()
686
687#-------------------------------------------------------------------------------
Niloy Sikdar47238df2021-07-28 23:37:33 +0530688# Check if git submodules have been initialized.
689# This will only run if python3 is available.
690#-------------------------------------------------------------------------------
691
Marius Brehler776d7e62021-12-21 22:50:52 +0100692option(IREE_ERROR_ON_MISSING_SUBMODULES "Error if submodules have not been initialized." ON)
693
Niloy Sikdar47238df2021-07-28 23:37:33 +0530694find_package(Python3 COMPONENTS Interpreter QUIET)
Scott Todde5b269a2021-11-16 15:25:02 -0800695find_package(Git)
Marius Brehler776d7e62021-12-21 22:50:52 +0100696if(IREE_ERROR_ON_MISSING_SUBMODULES AND Python3_FOUND AND Git_FOUND)
Scott Todde5b269a2021-11-16 15:25:02 -0800697 # Only check submodule status when the git commit changes.
Niloy Sikdar47238df2021-07-28 23:37:33 +0530698 execute_process(
Scott Todde5b269a2021-11-16 15:25:02 -0800699 COMMAND git rev-parse --short HEAD
Niloy Sikdar47238df2021-07-28 23:37:33 +0530700 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
Scott Todde5b269a2021-11-16 15:25:02 -0800701 RESULT_VARIABLE SHORT_HASH_RESULT
702 OUTPUT_VARIABLE SHORT_HASH)
703 string(REGEX REPLACE "\n$" "" SHORT_HASH "${SHORT_HASH}")
Scott Todd2a8cd3b2021-12-13 11:58:44 -0800704 if(SHORT_HASH_RESULT EQUAL "0" AND NOT "${IREE_GIT_SHORT_HASH}" STREQUAL "${SHORT_HASH}")
CindyLiu0e8fdc62022-10-14 09:35:44 -0700705 if(NOT IREE_BUILD_COMPILER)
706 set(CHECK_SUBMODULE_ARGS "--runtime_only")
707 endif()
Scott Todde5b269a2021-11-16 15:25:02 -0800708 execute_process(
CindyLiu0e8fdc62022-10-14 09:35:44 -0700709 COMMAND ${Python3_EXECUTABLE} build_tools/scripts/git/check_submodule_init.py ${CHECK_SUBMODULE_ARGS}
Scott Todde5b269a2021-11-16 15:25:02 -0800710 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
711 RESULT_VARIABLE SUBMODULE_INIT_RESULT
712 )
713 if(NOT SUBMODULE_INIT_RESULT EQUAL "0")
714 message(FATAL_ERROR "check_submodule_init.py failed, see the logs above")
715 else()
716 set(IREE_GIT_SHORT_HASH "${SHORT_HASH}" CACHE STRING "" FORCE)
717 endif()
Niloy Sikdar47238df2021-07-28 23:37:33 +0530718 endif()
719endif()
720
721#-------------------------------------------------------------------------------
Lei Zhang22f0e242020-03-30 12:09:20 -0700722# IREE top-level targets
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800723# We define these here because various things in the build tree adds
724# dependencies to them.
Lei Zhang22f0e242020-03-30 12:09:20 -0700725#-------------------------------------------------------------------------------
726
Scott Todd1a1aea62022-04-28 09:12:11 -0700727if(IREE_BUILD_MICROBENCHMARKS)
Han-Chung Wanga6fbb762022-04-15 14:25:04 -0700728 # Add top-level custom targets to drive generating microbenchmark suites.
729 add_custom_target(iree-microbenchmark-suites)
730endif()
731
Scott Todd1a1aea62022-04-28 09:12:11 -0700732if(IREE_BUILD_DOCS)
Scott Todd96d92132023-06-12 15:45:19 -0700733 # Define a top-level custom target to drive generating documentation files.
734 # Add to the default target given that docs were explicitly requested.
Lei Zhang22f0e242020-03-30 12:09:20 -0700735 add_custom_target(iree-doc ALL)
736endif()
737
Jakub Kuderski3f764682023-02-07 17:14:23 -0500738# Samples may require additional files to be built/configured and will add
739# dependencies to this target.
740# Note: These will be automatically built with test dependencies
741# (`iree-test-deps`).
742add_custom_target(iree-sample-deps
743 COMMENT
744 "Building IREE sample data targets"
745)
746
Stella Laurenzo74b04b72022-03-02 10:21:11 -0800747# Testing rules that require generation will add dependencies to this target.
748# This allows them to be EXCLUDE_FROM_ALL but still invokable.
Jakub Kuderski3f764682023-02-07 17:14:23 -0500749add_custom_target(iree-test-deps
750 COMMENT
751 "Building IREE test deps"
752 DEPENDS
753 iree-sample-deps
754)
Stella Laurenzo74b04b72022-03-02 10:21:11 -0800755
CindyLiu99373e02022-10-12 09:22:24 -0700756# Testing rules that generate test scripts for iree-run-module-test will add
757# dependencies to this target. It is a subset of `iree-test-deps`.
758add_custom_target(iree-run-module-test-deps
759 COMMENT
760 "Building IREE run module test targets"
761)
762
Stella Laurenzoe2dfc652023-02-15 18:12:03 -0800763# Convenience target for running IREE tests.
764add_custom_target(iree-run-tests
765 COMMENT
766 "Run IREE unit tests"
767 WORKING_DIRECTORY
768 "${CMAKE_CURRENT_BINARY_DIR}"
769 USES_TERMINAL
770 COMMAND
771 "${CMAKE_COMMAND}" -E echo
772 "The 'iree-run-tests' target is a helper for running ctest. For advanced"
773 "options, build dependencies and invoke ctest independently as in:"
774 COMMAND
775 "${CMAKE_COMMAND}" -E echo
776 " \\(cd ${CMAKE_CURRENT_BINARY_DIR} \\&\\& cmake --build . --target iree-test-deps \\&\\& ctest --output-on-failure\\)"
777 COMMAND
778 "${CMAKE_COMMAND}" -E echo
779 "Run tests in parallel by setting a variable like CTEST_PARALLEL_LEVEL=25."
780 COMMAND
781 "${CMAKE_CTEST_COMMAND}"
782 --output-on-failure
783)
784add_dependencies(iree-run-tests iree-test-deps)
785
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800786#-------------------------------------------------------------------------------
787# CUDA configuration for both the compiler and runtime.
788# We do this at the top level so that we can fail fast and make global
789# decisions that effect both compiler and runtime. It also helps with error
790# messaging to do this all in one place, since we can provide very targeted
791# advice.
792#-------------------------------------------------------------------------------
793
794set(IREE_CUDA_LIBDEVICE_PATH "" CACHE FILEPATH "Absolute path to an appropriate libdevice.*.bc (needed to build the IREE cuda compiler target)")
795
796# If any CUDA features are being built, try to locate a CUDA SDK. We will fall
797# back to this as needed for specific features.
798if(IREE_TARGET_BACKEND_CUDA OR IREE_HAL_DRIVER_CUDA)
799 add_subdirectory(build_tools/third_party/cuda EXCLUDE_FROM_ALL)
800endif()
801
802#-------------------------------------------------------------------------------
803# MLIR/LLVM Dependency
804#-------------------------------------------------------------------------------
805
806if(NOT IREE_BUILD_COMPILER)
807 message(STATUS "Not adding LLVM/MLIR because the configuration does not require it")
808else()
Stella Laurenzo289b9a12023-02-24 13:06:32 -0800809 # Force enable BUILD_SHARED_LIBS for the compiler if instructed.
810 set(_IREE_ORIG_BUILD_SHARED_LIBS ${BUILD_SHARED_LIBS})
811 if(IREE_COMPILER_BUILD_SHARED_LIBS)
812 set(BUILD_SHARED_LIBS ON CACHE BOOL "" FORCE)
813 endif()
814
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800815 # Get the main LLVM deps.
816 if(IREE_BUILD_BUNDLED_LLVM)
817 iree_llvm_configure_bundled()
818 else()
819 iree_llvm_configure_installed()
820 endif()
821
822 # Also add a library that can be depended on to get LLVM includes setup
823 # properly. bazel_to_cmake targets this for some header only pseudo deps.
824 add_library(IREELLVMIncludeSetup INTERFACE)
Stella Laurenzo15c306f2023-12-28 19:03:20 -0800825 foreach(_d ${LLVM_INCLUDE_DIRS} ${MLIR_INCLUDE_DIRS} ${LLD_INCLUDE_DIRS})
826 # BUILD_INTERFACE only works one at a time.
827 target_include_directories(IREELLVMIncludeSetup INTERFACE
828 $<BUILD_INTERFACE:${_d}>
829 )
830 endforeach()
831 iree_install_targets(
832 TARGETS IREELLVMIncludeSetup
833 COMPONENT IREEPublicLibraries-Compiler
834 EXPORT_SET Compiler
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800835 )
836
837 # Splice the includes setup into base LLVM libraries so that using them
838 # gets everything nice and tidy. It would be super if some day, LLVM
839 # libraries set their right usage requirements for includes. In the meantime
840 # we add usage requirements to libraries at the root of all things LLVM.
841 iree_llvm_add_usage_requirements(LLVMSupport IREELLVMIncludeSetup)
842 iree_llvm_add_usage_requirements(MLIRSupport IREELLVMIncludeSetup)
843
Scott Todd53af6812023-11-27 10:33:08 -0800844 # Add external projects.
845
846 message(STATUS "Configuring llvm-external-projects/mlir-iree-dialects")
847 list(APPEND CMAKE_MESSAGE_INDENT " ")
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800848 iree_llvm_add_external_project(mlir-iree-dialects ${CMAKE_CURRENT_SOURCE_DIR}/llvm-external-projects/iree-dialects)
Scott Todd53af6812023-11-27 10:33:08 -0800849 list(POP_BACK CMAKE_MESSAGE_INDENT)
850
Stella Laurenzofd9cd2f2023-11-01 16:22:00 -0700851 if(IREE_INPUT_STABLEHLO)
Scott Todd53af6812023-11-27 10:33:08 -0800852 message(STATUS "Configuring third_party/stablehlo")
853 list(APPEND CMAKE_MESSAGE_INDENT " ")
Stella Laurenzofd9cd2f2023-11-01 16:22:00 -0700854 iree_llvm_add_external_project(stablehlo ${CMAKE_CURRENT_SOURCE_DIR}/third_party/stablehlo)
Scott Todd53af6812023-11-27 10:33:08 -0800855 list(POP_BACK CMAKE_MESSAGE_INDENT)
Stella Laurenzofd9cd2f2023-11-01 16:22:00 -0700856 endif()
Ben Vanike3578d52023-09-12 09:35:11 -0700857
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800858 # Ensure that LLVM-based dependencies needed for testing are included.
859 add_dependencies(iree-test-deps FileCheck)
860 if(IREE_LLD_TARGET)
861 add_dependencies(iree-test-deps ${IREE_LLD_TARGET})
862 endif()
863 if(IREE_CLANG_TARGET)
864 add_dependencies(iree-test-deps ${IREE_CLANG_TARGET})
865 endif()
Stella Laurenzo289b9a12023-02-24 13:06:32 -0800866
867 set(BUILD_SHARED_LIBS ${_IREE_ORIG_BUILD_SHARED_LIBS} CACHE BOOL "" FORCE)
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800868endif()
869
870#-------------------------------------------------------------------------------
871# Other dependencies
Stella Laurenzo15c306f2023-12-28 19:03:20 -0800872# By default we bundle a number of dependencies needed to build the project.
873# When bundled like this, they are installed into the IREEBundledLibraries
874# component and exported to their subsystem which requires them (if a static
875# dep from the public API): "Runtime" or "Compiler".
876#
877# Some deps have a usable CMake build, and we add_subdirectory these, manually
878# using iree_install_targets to include them in our installation. Others require
879# custom CMake and these are in the build_tools/third_party directory.
880#
881# TODO: We should have a mode that purely uses find_package for OS friendly
882# packaging/externalizing deps.
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800883#-------------------------------------------------------------------------------
884
885include(external_cc_library)
886include(flatbuffer_c_library)
887
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800888add_subdirectory(build_tools/third_party/llvm-project EXCLUDE_FROM_ALL)
889add_subdirectory(build_tools/third_party/tracy_client EXCLUDE_FROM_ALL)
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800890
891iree_set_googletest_cmake_options()
892add_subdirectory(third_party/googletest EXCLUDE_FROM_ALL)
893
894if(IREE_ENABLE_THREADING)
Stella Laurenzo15c306f2023-12-28 19:03:20 -0800895 # Benchmark.
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800896 iree_set_benchmark_cmake_options()
897 add_subdirectory(third_party/benchmark EXCLUDE_FROM_ALL)
Stella Laurenzo15c306f2023-12-28 19:03:20 -0800898 iree_install_targets(
899 TARGETS benchmark
900 COMPONENT IREEBundledLibraries
901 EXPORT_SET Runtime
902 )
903
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800904 if(IREE_ENABLE_CPUINFO)
905 iree_set_cpuinfo_cmake_options()
906 add_subdirectory(third_party/cpuinfo EXCLUDE_FROM_ALL)
Stella Laurenzo15c306f2023-12-28 19:03:20 -0800907 iree_install_targets(
908 TARGETS cpuinfo
909 COMPONENT IREEBundledLibraries
910 EXPORT_SET Runtime
911 )
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800912 endif()
913endif()
914
915# This defines the iree-flatcc-cli target, so we don't use EXCLUDE_FROM_ALL.
916add_subdirectory(build_tools/third_party/flatcc)
917
918if(IREE_HAL_DRIVER_CUDA)
919 add_subdirectory(build_tools/third_party/nccl EXCLUDE_FROM_ALL)
920endif()
921
Boian Petkantchin4132d2e2024-05-17 08:47:33 -0700922if(IREE_HAL_DRIVER_HIP)
923 add_subdirectory(build_tools/third_party/rccl EXCLUDE_FROM_ALL)
924endif()
925
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800926if(IREE_HAL_DRIVER_VULKAN)
927 add_subdirectory(third_party/vulkan_headers EXCLUDE_FROM_ALL)
Stella Laurenzo15c306f2023-12-28 19:03:20 -0800928 iree_install_targets(
929 TARGETS Vulkan-Headers
930 COMPONENT IREEBundledLibraries
931 EXPORT_SET Runtime
932 )
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800933endif()
934
935if(IREE_BUILD_COMPILER)
Jakub Kuderski3546f2a2023-06-14 13:18:44 -0400936 add_subdirectory(build_tools/third_party/stablehlo EXCLUDE_FROM_ALL)
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800937endif()
938
939if(IREE_BUILD_TESTS)
940 include(iree_configure_testing)
941endif()
942
943if(IREE_BUILD_PYTHON_BINDINGS)
Stella Laurenzoabe91fa2023-06-26 16:57:30 -0700944 # The compiler uses pybind11
945 if(IREE_BUILD_COMPILER)
946 if(NOT TARGET pybind11::module)
947 message(STATUS "Using bundled pybind11")
948 add_subdirectory(third_party/pybind11 EXCLUDE_FROM_ALL)
949 else()
950 message(STATUS "Not including bundled pybind11 (already configured)")
951 endif()
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800952 endif()
953endif()
954
955if(IREE_TARGET_BACKEND_METAL_SPIRV)
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800956 # SPIRV-Cross is needed to cross compile SPIR-V into MSL source code.
Scott Toddad321b62023-06-05 14:39:30 -0700957 iree_set_spirv_cross_cmake_options()
Stella Laurenzo9be15aa2023-02-21 17:00:29 -0800958 add_subdirectory(third_party/spirv_cross EXCLUDE_FROM_ALL)
959endif()
960
Lei Zhang22f0e242020-03-30 12:09:20 -0700961#-------------------------------------------------------------------------------
Ben Vanik185d30c2019-09-19 14:24:11 -0700962# IREE top-level libraries
963#-------------------------------------------------------------------------------
964
Rob Sudermand42e0022022-06-08 16:38:45 -0700965if(IREE_ENABLE_CLANG_TIDY)
966 set(CMAKE_CXX_CLANG_TIDY clang-tidy -warnings-as-errors=*)
967endif()
968
Marius Brehlerf5022e82019-12-13 15:20:25 -0800969add_subdirectory(build_tools/embed_data/)
970
Jerry Wu36641f92023-05-24 19:30:38 +0000971if(IREE_BUILD_E2E_TEST_ARTIFACTS)
Stella Laurenzoa6bf65c2022-01-11 20:47:51 -0800972 find_program(IREE_IMPORT_TFLITE_PATH iree-import-tflite)
973 if(IREE_IMPORT_TFLITE_PATH)
974 message(STATUS "Found ${IREE_IMPORT_TFLITE_PATH} to generate benchmark artifacts")
975 else()
976 message(STATUS "iree-import-tflite not found. Some benchmarks may not configure")
977 endif()
Jerry Wu60798ca2022-06-21 23:36:40 +0000978 find_program(IREE_IMPORT_TF_PATH iree-import-tf)
979 if(IREE_IMPORT_TF_PATH)
980 message(STATUS "Found ${IREE_IMPORT_TF_PATH} to generate benchmark artifacts")
981 else()
982 message(STATUS "iree-import-tf not found. Some benchmarks may not configure")
983 endif()
Jerry Wufed372c2023-10-19 12:05:32 -0700984
985 set(IREE_E2E_TEST_ARTIFACTS_DIR "${IREE_BINARY_DIR}/e2e_test_artifacts")
Jerry Wu16e2d9c2022-11-22 06:19:46 +0000986endif()
987
Jacques Pienaar702929a2022-12-30 14:46:22 -0800988# tools/ can depend on compiler/ and runtime/.
989# Note: tools sub directory is added before compiler/ so that phony targets for
990# files with the same names from different rules are disambiguated towards
991# those in tools/.
992add_subdirectory(tools)
Stella Laurenzo309dc5b2023-02-22 23:07:43 -0800993add_subdirectory(compiler)
Scott Todd4f16b992022-05-17 10:33:53 -0700994add_subdirectory(runtime)
995
Scott Todd315e2382024-01-30 13:35:51 -0800996# Note: Test deps are not built as part of all (use the iree-test-deps target).
997add_subdirectory(tests EXCLUDE_FROM_ALL)
998
Rob Sudermand42e0022022-06-08 16:38:45 -0700999if(IREE_ENABLE_CLANG_TIDY)
1000 set(CMAKE_CXX_CLANG_TIDY "")
1001endif()
1002
Stella Laurenzod3770ff2021-10-18 22:54:18 -07001003if(IREE_BUILD_TRACY)
Ben Vanik77a87412023-10-09 14:46:28 -07001004 if(NOT CMAKE_SYSTEM_NAME MATCHES "Darwin|Linux")
1005 message(WARNING "Building Tracy (IREE_BUILD_TRACY) on non-Darwin/Linux is unsupported and may fail below.")
Stella Laurenzod3770ff2021-10-18 22:54:18 -07001006 endif()
1007 add_subdirectory(build_tools/third_party/tracy ${CMAKE_CURRENT_BINARY_DIR}/tracy)
1008 if(NOT TARGET IREETracyCaptureServer)
1009 message(SEND_ERROR "Could not build Tracy. Either unset IREE_BUILD_TRACY or look for missing dependencies above and install them.")
1010 endif()
1011endif()
1012
Scott Toddf57ab752022-05-23 10:36:44 -07001013# Order constraint: The python bindings install tools targets from tools/
Stella Laurenzod3770ff2021-10-18 22:54:18 -07001014# and tracy, and must come after it.
Stella Laurenzo3b44a0a2022-04-18 19:57:57 -07001015if(IREE_BUILD_PYTHON_BINDINGS)
Stella Laurenzo60128592022-04-17 21:52:09 -07001016 # Write out a .env file to make IDEs and developers happy.
1017 # Yes, we are writing this to the source dir. It is only for IDEs and if
Scott Toddfe9cb172022-12-08 09:17:52 -08001018 # it gets clobbered, it is fine (it is also ignored in .gitignore).
Stella Laurenzo41a2ceb2022-04-29 12:49:36 -07001019 set(_PYTHONPATH_ENV "PYTHONPATH=$<SHELL_PATH:${CMAKE_CURRENT_BINARY_DIR}/compiler/bindings/python;${CMAKE_CURRENT_BINARY_DIR}/runtime/bindings/python>\n")
Scott Toddfe9cb172022-12-08 09:17:52 -08001020 file(GENERATE OUTPUT "${CMAKE_CURRENT_SOURCE_DIR}/.env" CONTENT "${_PYTHONPATH_ENV}")
1021 file(GENERATE OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/.env" CONTENT "${_PYTHONPATH_ENV}")
Scott Todd2fe00a52023-11-09 10:46:49 -08001022 # Similarly, write out .env.bat and .env.ps1 for Windows.
Scott Toddfe9cb172022-12-08 09:17:52 -08001023 set(_PYTHONPATH_ENV_BAT "set PYTHONPATH=$<SHELL_PATH:${CMAKE_CURRENT_BINARY_DIR}/compiler/bindings/python;${CMAKE_CURRENT_BINARY_DIR}/runtime/bindings/python>\n")
1024 file(GENERATE OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/.env.bat" CONTENT "${_PYTHONPATH_ENV_BAT}")
Scott Todd2fe00a52023-11-09 10:46:49 -08001025 set(_PYTHONPATH_ENV_PS1 "$env:PYTHONPATH = '$<SHELL_PATH:${CMAKE_CURRENT_BINARY_DIR}/compiler/bindings/python;${CMAKE_CURRENT_BINARY_DIR}/runtime/bindings/python>'\n")
1026 file(GENERATE OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/.env.ps1" CONTENT "${_PYTHONPATH_ENV_PS1}")
Stella Laurenzo77a63cd2021-01-04 17:29:54 -08001027endif()
1028
Scott Todd1a1aea62022-04-28 09:12:11 -07001029if(IREE_BUILD_BINDINGS_TFLITE)
Scott Toddada25e62022-05-03 16:16:15 -07001030 add_subdirectory(runtime/bindings/tflite)
Ben Vanikcd1132f2021-01-29 15:58:17 -08001031endif()
1032
Scott Todd1a1aea62022-04-28 09:12:11 -07001033if(IREE_BUILD_EXPERIMENTAL_WEB_SAMPLES)
Scott Todd15fce0a2022-02-14 12:43:23 -08001034 add_subdirectory(experimental/web)
Scott Toddf237b5e2022-01-28 11:02:25 -08001035endif()
1036
Benoit Jacob655b71a2024-04-23 11:07:38 -04001037if(IREE_BUILD_EXPERIMENTAL_HAL_EXECUTABLE_LIBRARY_CALL_HOOKS)
1038 add_subdirectory(experimental/hal_executable_library_call_hooks)
1039endif()
1040
Stella Laurenzo03e48db2020-06-11 18:35:13 -07001041set(IREE_PUBLIC_INCLUDE_DIRS "${IREE_COMMON_INCLUDE_DIRS}"
1042 CACHE INTERNAL "IREE: Include Directories" FORCE)
Stella Laurenzo688670f2021-09-24 18:16:25 -07001043
Jerry Wu623d1742022-03-31 18:16:02 +00001044#-------------------------------------------------------------------------------
Jerry Wu161daa72023-05-22 22:08:49 +00001045# IREE build tools
Jerry Wu623d1742022-03-31 18:16:02 +00001046#-------------------------------------------------------------------------------
1047
1048add_subdirectory(build_tools/benchmarks)
Jerry Wu161daa72023-05-22 22:08:49 +00001049add_subdirectory(build_tools/github_actions)
Jerry Wu71562cc2022-09-20 18:56:41 -07001050add_subdirectory(build_tools/python)
1051
1052#-------------------------------------------------------------------------------
Stella Laurenzoc6092c42023-03-25 19:55:37 -07001053# Optional features
Stella Laurenzo3b44a0a2022-04-18 19:57:57 -07001054#-------------------------------------------------------------------------------
1055
Scott Todd4c022df2022-05-10 16:55:18 -07001056# samples/ can depend on anything, so we include it last
Stella Laurenzo1e8d1fa2022-04-22 09:50:43 -07001057if(IREE_BUILD_SAMPLES)
1058 add_subdirectory(samples)
1059endif()
Geoffrey Martin-Noble10f18222022-06-09 16:00:13 -07001060
1061if(IREE_BUILD_TESTS)
1062 iree_create_ctest_customization()
1063endif()
Stella Laurenzo15c306f2023-12-28 19:03:20 -08001064
1065#-------------------------------------------------------------------------------
1066# Install/exports
Stella Laurenzo3e0583f2023-12-29 13:09:15 -08001067# Note that with no further options, install convenience targets install to
CindyLiu88697772024-01-05 04:22:30 +08001068# CMAKE_INSTALL_PREFIX. Per usual, this can be further prefixed with an
Stella Laurenzo3e0583f2023-12-29 13:09:15 -08001069# environment variable "DESTDIST" on a per invocation basis (i.e. to place under
1070# a versioned path, etc).
1071#
1072# The `iree-install-dist` target includes everthing that is typically included in
1073# a distribution tarball.
Stella Laurenzo15c306f2023-12-28 19:03:20 -08001074#-------------------------------------------------------------------------------
1075
1076add_subdirectory(build_tools/cmake ${IREE_BINARY_DIR}/lib/cmake/IREE)
1077
Stella Laurenzo15c306f2023-12-28 19:03:20 -08001078# Convenience installation targets.
Stella Laurenzo3e0583f2023-12-29 13:09:15 -08001079iree_add_install_target(NAME iree-install-dist)
1080iree_add_install_target(
1081 NAME iree-install-dev-libraries
1082 ADD_TO iree-install-dist
1083)
1084iree_add_install_target(
1085 NAME iree-install-runtime-libraries
1086 ADD_TO iree-install-dist
1087)
1088iree_add_install_target(
1089 NAME iree-install-tools
1090 ADD_TO iree-install-dist
1091)
Stella Laurenzo15c306f2023-12-28 19:03:20 -08001092
1093iree_add_install_target(
1094 NAME iree-install-cmake-exports
1095 COMPONENT IREECMakeExports
1096 ADD_TO iree-install-dev-libraries
1097)
1098
1099iree_add_install_target(
1100 NAME iree-install-dev-libraries-runtime
1101 COMPONENT IREEDevLibraries-Runtime
1102 ADD_TO iree-install-dev-libraries
1103)
1104
1105iree_add_install_target(
1106 NAME iree-install-bundled-libraries
1107 COMPONENT IREEBundledLibraries
1108 ADD_TO iree-install-dev-libraries-runtime
1109)
1110
1111if(IREE_BUILD_COMPILER)
1112 iree_add_install_target(
1113 NAME iree-install-dev-libraries-compiler
1114 COMPONENT IREEDevLibraries-Compiler
1115 ADD_TO iree-install-dev-libraries
1116 )
1117
1118 iree_add_install_target(
1119 NAME iree-install-tools-compiler
1120 COMPONENT IREETools-Compiler
1121 ADD_TO iree-install-tools
1122 )
1123
1124 iree_add_install_target(
Stella Laurenzo3e0583f2023-12-29 13:09:15 -08001125 NAME iree-install-tools-compiler-dev
1126 COMPONENT IREETools-CompilerDev
1127 ADD_TO iree-install-tools
1128 )
1129
1130 iree_add_install_target(
CindyLiu88697772024-01-05 04:22:30 +08001131 NAME iree-install-tools-compiler-extra
1132 COMPONENT IREETools-CompilerExtra
1133 # TODO: Remove the ADD_TO here and include the component in the iree-dist
1134 # tarball build stage.
1135 ADD_TO iree-install-tools
1136 )
1137
1138 iree_add_install_target(
Stella Laurenzo15c306f2023-12-28 19:03:20 -08001139 NAME iree-install-runtime-libraries-compiler
1140 COMPONENT IREERuntimeLibraries-Compiler
CindyLiu88697772024-01-05 04:22:30 +08001141 ADD_TO
Stella Laurenzo15c306f2023-12-28 19:03:20 -08001142 iree-install-runtime-libraries
1143 iree-install-tools-compiler
1144 iree-install-dev-libraries-compiler
1145 )
1146endif()
1147
1148iree_add_install_target(
1149 NAME iree-install-tools-runtime
1150 COMPONENT IREETools-Runtime
1151 ADD_TO iree-install-tools
1152)