The following Conversions are affected: LoopToStandard -> SCFToStandard, LoopsToGPU -> SCFToGPU, VectorToLoops -> VectorToSCF. Full file paths are affected. Additionally, drop the 'Convert' prefix from filenames living under lib/Conversion where applicable. API names and CLI options for pass testing are also renamed when applicable. In particular, LoopsToGPU contains several passes that apply to different kinds of loops (`for` or `parallel`), for which the original names are preserved. Differential Revision: https://reviews.llvm.org/D79940
22 lines
349 B
CMake
22 lines
349 B
CMake
add_mlir_conversion_library(MLIRSCFToGPU
|
|
SCFToGPU.cpp
|
|
SCFToGPUPass.cpp
|
|
|
|
ADDITIONAL_HEADER_DIRS
|
|
${MLIR_MAIN_INCLUDE_DIR}/mlir/Conversion/SCFToGPU
|
|
|
|
DEPENDS
|
|
MLIRConversionPassIncGen
|
|
|
|
LINK_LIBS PUBLIC
|
|
MLIRAffineOps
|
|
MLIRAffineToStandard
|
|
MLIRGPU
|
|
MLIRIR
|
|
MLIRLinalgOps
|
|
MLIRPass
|
|
MLIRStandardOps
|
|
MLIRSupport
|
|
MLIRTransforms
|
|
)
|