This reduces the dependencies of the MLIRVector target and makes the dialect consistent with other dialects. Differential Revision: https://reviews.llvm.org/D118533
19 lines
297 B
CMake
19 lines
297 B
CMake
add_mlir_conversion_library(MLIRVectorToGPU
|
|
VectorToGPU.cpp
|
|
|
|
ADDITIONAL_HEADER_DIRS
|
|
${MLIR_MAIN_INCLUDE_DIR}/mlir/Conversion/VectorToGPU
|
|
|
|
LINK_COMPONENTS
|
|
Core
|
|
|
|
LINK_LIBS PUBLIC
|
|
MLIRArithmetic
|
|
MLIRGPUOps
|
|
MLIRLLVMIR
|
|
MLIRMemRef
|
|
MLIRTransforms
|
|
MLIRVector
|
|
MLIRVectorUtils
|
|
)
|