llvm-project/mlir/lib/Conversion/GPUCommon/CMakeLists.txt

41 lines
585 B
CMake

if (MLIR_CUDA_CONVERSIONS_ENABLED)
set(NVPTX_LIBS
NVPTXCodeGen
NVPTXDesc
NVPTXInfo
)
endif()
if (MLIR_ROCM_CONVERSIONS_ENABLED)
set(AMDGPU_LIBS
AMDGPUCodeGen
AMDGPUDesc
AMDGPUInfo
)
endif()
add_mlir_conversion_library(MLIRGPUToGPURuntimeTransforms
GPUToLLVMConversion.cpp
GPUOpsLowering.cpp
DEPENDS
MLIRConversionPassIncGen
intrinsics_gen
LINK_COMPONENTS
Core
MC
${AMDGPU_LIBS}
${NVPTX_LIBS}
LINK_LIBS PUBLIC
MLIRAsyncToLLVM
MLIRGPU
MLIRIR
MLIRLLVMIR
MLIRPass
MLIRSupport
MLIRStandardToLLVM
MLIRVectorToLLVM
)