[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / mlir / test / lit.site.cfg.py.in
blob2de40ba5e8e57e6939d4ffbad9f71fb869aae40d
1 @LIT_SITE_CFG_IN_HEADER@
3 import sys
5 config.target_triple = "@LLVM_TARGET_TRIPLE@"
6 config.llvm_tools_dir = lit_config.substitute("@LLVM_TOOLS_DIR@")
7 config.llvm_shlib_ext = "@SHLIBEXT@"
8 config.llvm_shlib_dir = lit_config.substitute(path(r"@SHLIBDIR@"))
9 config.python_executable = "@Python3_EXECUTABLE@"
10 config.enable_assertions = @ENABLE_ASSERTIONS@
11 config.native_target = "@LLVM_NATIVE_ARCH@"
12 config.host_os = "@HOST_OS@"
13 config.host_cc = "@HOST_CC@"
14 config.host_cxx = "@HOST_CXX@"
15 config.enable_libcxx = "@LLVM_ENABLE_LIBCXX@"
16 config.host_cmake = "@CMAKE_COMMAND@"
17 config.host_cmake_generator = "@CMAKE_GENERATOR@"
18 config.llvm_use_linker = "@LLVM_USE_LINKER@"
19 config.llvm_use_sanitizer = "@LLVM_USE_SANITIZER@"
20 config.host_arch = "@HOST_ARCH@"
21 config.mlir_src_root = "@MLIR_SOURCE_DIR@"
22 config.mlir_obj_root = "@MLIR_BINARY_DIR@"
23 config.mlir_tools_dir = "@MLIR_TOOLS_DIR@"
24 config.mlir_cmake_dir = "@MLIR_CMAKE_DIR@"
25 config.mlir_lib_dir = "@MLIR_LIB_DIR@"
27 config.build_examples = @LLVM_BUILD_EXAMPLES@
28 config.run_cuda_tests = @MLIR_ENABLE_CUDA_CONVERSIONS@
29 config.enable_cuda_runner = @MLIR_ENABLE_CUDA_RUNNER@
30 config.run_rocm_tests = @MLIR_ENABLE_ROCM_CONVERSIONS@
31 config.enable_rocm_runner = @MLIR_ENABLE_ROCM_RUNNER@
32 config.gpu_compilation_format = "@MLIR_GPU_COMPILATION_TEST_FORMAT@"
33 config.rocm_test_chipset = "@ROCM_TEST_CHIPSET@"
34 config.enable_spirv_cpu_runner = @MLIR_ENABLE_SPIRV_CPU_RUNNER@
35 config.enable_vulkan_runner = @MLIR_ENABLE_VULKAN_RUNNER@
36 config.enable_bindings_python = @MLIR_ENABLE_BINDINGS_PYTHON@
37 config.intel_sde_executable = "@INTEL_SDE_EXECUTABLE@"
38 config.mlir_run_amx_tests = @MLIR_RUN_AMX_TESTS@
39 config.mlir_run_arm_sve_tests = @MLIR_RUN_ARM_SVE_TESTS@
40 # This is a workaround for the fact that LIT's:
41 # %if <cond>
42 # requires <cond> to be in the set of available features.
43 # TODO: Update LIT's TestRunner so that this is not required.
44 if config.mlir_run_arm_sve_tests:
45 config.available_features.add("mlir_arm_sve_tests")
46 config.mlir_run_arm_sme_tests = @MLIR_RUN_ARM_SME_TESTS@
47 config.mlir_run_x86vector_tests = @MLIR_RUN_X86VECTOR_TESTS@
48 config.mlir_run_riscv_vector_tests = "@MLIR_RUN_RISCV_VECTOR_TESTS@"
49 config.mlir_run_cuda_tensor_core_tests = @MLIR_RUN_CUDA_TENSOR_CORE_TESTS@
50 config.mlir_run_cuda_sm80_tests = @MLIR_RUN_CUDA_SM80_TESTS@
51 config.mlir_run_cuda_sm80_lt_tests = @MLIR_RUN_CUDA_SM80_LT_TESTS@
52 config.mlir_run_cuda_sm90_tests = @MLIR_RUN_CUDA_SM90_TESTS@
53 config.mlir_include_integration_tests = @MLIR_INCLUDE_INTEGRATION_TESTS@
54 config.arm_emulator_executable = "@ARM_EMULATOR_EXECUTABLE@"
55 config.arm_emulator_options = "@ARM_EMULATOR_OPTIONS@"
56 config.arm_emulator_mlir_cpu_runner_executable = "@ARM_EMULATOR_MLIR_CPU_RUNNER_EXECUTABLE@"
57 config.arm_emulator_lli_executable = "@ARM_EMULATOR_LLI_EXECUTABLE@"
58 config.arm_emulator_utils_lib_dir = "@ARM_EMULATOR_UTILS_LIB_DIR@"
59 config.riscv_vector_emulator_executable = "@RISCV_VECTOR_EMULATOR_EXECUTABLE@"
60 config.riscv_vector_emulator_options = "@RISCV_VECTOR_EMULATOR_OPTIONS@"
61 config.riscv_emulator_lli_executable = "@RISCV_EMULATOR_LLI_EXECUTABLE@"
62 config.riscv_emulator_utils_lib_dir = "@RISCV_EMULATOR_UTILS_LIB_DIR@"
64 import lit.llvm
65 lit.llvm.initialize(lit_config, config)
67 # Let the main config do the real work.
68 lit_config.load_config(config, "@MLIR_SOURCE_DIR@/test/lit.cfg.py")