Split out GPU ops library from GPU transforms. This allows libraries to depend on GPU Ops without needing/building its transforms. Differential Revision: https://reviews.llvm.org/D105472
16 lines
249 B
CMake
16 lines
249 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
|
|
MLIRGPUOps
|
|
MLIRLLVMIR
|
|
MLIRMemRef
|
|
MLIRTransforms
|
|
)
|