Files
clang-p2996/mlir/lib/Conversion/GPUToSPIRV/CMakeLists.txt
Lei Zhang 930c74f12d [mlir][spirv] NFC: rename SPIR-V conversion files for consistency
This commit renames various SPIR-V related conversion files for
consistency. It drops the "Convert" prefix to various files and
fixes various comment headers.

Reviewed By: hanchung, ThomasRaoux

Differential Revision: https://reviews.llvm.org/D93489
2020-12-23 14:36:46 -05:00

25 lines
457 B
CMake

set(LLVM_TARGET_DEFINITIONS GPUToSPIRV.td)
mlir_tablegen(GPUToSPIRV.cpp.inc -gen-rewriters)
add_public_tablegen_target(MLIRGPUToSPIRVIncGen)
add_mlir_conversion_library(MLIRGPUToSPIRV
GPUToSPIRV.cpp
GPUToSPIRVPass.cpp
DEPENDS
MLIRConversionPassIncGen
MLIRGPUToSPIRVIncGen
LINK_LIBS PUBLIC
MLIRGPU
MLIRIR
MLIRPass
MLIRSCFToSPIRV
MLIRSPIRV
MLIRSPIRVConversion
MLIRStandard
MLIRStandardToSPIRV
MLIRSupport
MLIRTransforms
)