Files
clang-p2996/mlir/lib/Conversion/VectorToGPU/CMakeLists.txt
Mogball e16d13322b [mlir] (NFC) Clean up bazel and CMake target names
All dialect targets in bazel have been named *Dialect and all dialect
targets in CMake have been named MLIR*Dialect.
2022-06-13 16:24:15 +00:00

21 lines
361 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
MLIRArithmeticDialect
MLIRGPUOps
MLIRLLVMDialect
MLIRMemRefDialect
MLIRNVGPUDialect
MLIRTransforms
MLIRVectorDialect
MLIRVectorUtils
)