115 lines
2.0 KiB
CMake
115 lines
2.0 KiB
CMake
|
|
# Exclude these from libMLIR.so because the JIT infrastructure
|
||
|
|
# is a big dependency which most don't need.
|
||
|
|
|
||
|
|
set(LLVM_OPTIONAL_SOURCES
|
||
|
|
AsyncRuntime.cpp
|
||
|
|
CRunnerUtils.cpp
|
||
|
|
SparseUtils.cpp
|
||
|
|
ExecutionEngine.cpp
|
||
|
|
RunnerUtils.cpp
|
||
|
|
OptUtils.cpp
|
||
|
|
JitRunner.cpp
|
||
|
|
)
|
||
|
|
|
||
|
|
add_mlir_library(MLIRExecutionEngine
|
||
|
|
ExecutionEngine.cpp
|
||
|
|
OptUtils.cpp
|
||
|
|
|
||
|
|
EXCLUDE_FROM_LIBMLIR
|
||
|
|
|
||
|
|
ADDITIONAL_HEADER_DIRS
|
||
|
|
${MLIR_MAIN_INCLUDE_DIR}/mlir/ExecutionEngine
|
||
|
|
|
||
|
|
DEPENDS
|
||
|
|
intrinsics_gen
|
||
|
|
|
||
|
|
LINK_COMPONENTS
|
||
|
|
Core
|
||
|
|
Coroutines
|
||
|
|
ExecutionEngine
|
||
|
|
Object
|
||
|
|
OrcJIT
|
||
|
|
JITLink
|
||
|
|
Analysis
|
||
|
|
AggressiveInstCombine
|
||
|
|
InstCombine
|
||
|
|
MC
|
||
|
|
ScalarOpts
|
||
|
|
Target
|
||
|
|
Vectorize
|
||
|
|
TransformUtils
|
||
|
|
nativecodegen
|
||
|
|
IPO
|
||
|
|
|
||
|
|
LINK_LIBS PUBLIC
|
||
|
|
MLIRLLVMIR
|
||
|
|
MLIRTargetLLVMIR
|
||
|
|
)
|
||
|
|
|
||
|
|
get_property(dialect_libs GLOBAL PROPERTY MLIR_DIALECT_LIBS)
|
||
|
|
add_mlir_library(MLIRJitRunner
|
||
|
|
JitRunner.cpp
|
||
|
|
|
||
|
|
EXCLUDE_FROM_LIBMLIR
|
||
|
|
|
||
|
|
DEPENDS
|
||
|
|
intrinsics_gen
|
||
|
|
|
||
|
|
LINK_COMPONENTS
|
||
|
|
Core
|
||
|
|
OrcJIT
|
||
|
|
JITLink
|
||
|
|
|
||
|
|
LINK_LIBS PUBLIC
|
||
|
|
${dialect_libs}
|
||
|
|
MLIRExecutionEngine
|
||
|
|
MLIRIR
|
||
|
|
MLIRParser
|
||
|
|
MLIRStandard
|
||
|
|
MLIRTargetLLVMIR
|
||
|
|
MLIRTransforms
|
||
|
|
MLIRStandardToLLVM
|
||
|
|
MLIRSupport
|
||
|
|
)
|
||
|
|
|
||
|
|
add_mlir_library(mlir_c_runner_utils
|
||
|
|
SHARED
|
||
|
|
CRunnerUtils.cpp
|
||
|
|
SparseUtils.cpp
|
||
|
|
|
||
|
|
EXCLUDE_FROM_LIBMLIR
|
||
|
|
)
|
||
|
|
set_property(TARGET mlir_c_runner_utils PROPERTY CXX_STANDARD 11)
|
||
|
|
|
||
|
|
add_mlir_library(mlir_c_runner_utils_static
|
||
|
|
CRunnerUtils.cpp
|
||
|
|
SparseUtils.cpp
|
||
|
|
|
||
|
|
EXCLUDE_FROM_LIBMLIR
|
||
|
|
)
|
||
|
|
set_property(TARGET mlir_c_runner_utils_static PROPERTY CXX_STANDARD 11)
|
||
|
|
target_compile_definitions(mlir_c_runner_utils PRIVATE mlir_c_runner_utils_EXPORTS)
|
||
|
|
|
||
|
|
add_mlir_library(mlir_runner_utils
|
||
|
|
SHARED
|
||
|
|
RunnerUtils.cpp
|
||
|
|
|
||
|
|
EXCLUDE_FROM_LIBMLIR
|
||
|
|
|
||
|
|
LINK_LIBS PUBLIC
|
||
|
|
mlir_c_runner_utils_static
|
||
|
|
)
|
||
|
|
target_compile_definitions(mlir_runner_utils PRIVATE mlir_runner_utils_EXPORTS)
|
||
|
|
|
||
|
|
add_mlir_library(mlir_async_runtime
|
||
|
|
SHARED
|
||
|
|
AsyncRuntime.cpp
|
||
|
|
|
||
|
|
EXCLUDE_FROM_LIBMLIR
|
||
|
|
|
||
|
|
LINK_LIBS PUBLIC
|
||
|
|
mlir_c_runner_utils_static
|
||
|
|
${LLVM_PTHREAD_LIB}
|
||
|
|
)
|
||
|
|
target_compile_definitions(mlir_async_runtime PRIVATE mlir_async_runtime_EXPORTS)
|