Files
clang-p2996/mlir/lib/Conversion/VectorToROCDL/CMakeLists.txt
jerryyin 2abad3433f [mlir][rocdl] Adding vector to ROCDL dialect lowering
* Created the vector to ROCDL lowering pass
  * The lowering pass lowers vector transferOps to rocdl mubufOps
* Added unit test and functional test
2020-06-11 14:28:13 +00:00

20 lines
319 B
CMake

add_mlir_conversion_library(MLIRVectorToROCDL
VectorToROCDL.cpp
ADDITIONAL_HEADER_DIRS
${MLIR_MAIN_INCLUDE_DIR}/mlir/Conversion/VectorToROCDL
DEPENDS
MLIRConversionPassIncGen
intrinsics_gen
LINK_COMPONENTS
Core
LINK_LIBS PUBLIC
MLIRROCDLIR
MLIRStandardToLLVM
MLIRVector
MLIRTransforms
)