Files
clang-p2996/mlir/lib/Conversion/VectorToGPU/CMakeLists.txt
Christopher Bate 873a3e2c1d [mlir] Add missing NVGPU link dependency to VectorToGPU
The missing link dependency caused build failures in some
configurations.
2022-05-20 10:44:31 -06:00

21 lines
328 B
CMake

add_mlir_conversion_library(MLIRVectorToGPU
VectorToGPU.cpp
NvGpuSupport.cpp
ADDITIONAL_HEADER_DIRS
${MLIR_MAIN_INCLUDE_DIR}/mlir/Conversion/VectorToGPU
LINK_COMPONENTS
Core
LINK_LIBS PUBLIC
MLIRArithmetic
MLIRGPUOps
MLIRLLVMIR
MLIRMemRef
MLIRNVGPU
MLIRTransforms
MLIRVector
MLIRVectorUtils
)