mirror of
https://github.com/ROCm/ROCm.git
synced 2026-04-05 03:01:17 -04:00
18 lines
343 B
CMake
18 lines
343 B
CMake
set(LLVM_TARGET_DEFINITIONS Combine.td)
|
|
mlir_tablegen(TritonCombine.inc -gen-rewriters)
|
|
add_public_tablegen_target(TritonCombineIncGen)
|
|
|
|
add_mlir_dialect_library(TritonTransforms
|
|
Combine.cpp
|
|
RewriteTensorPointer.cpp
|
|
|
|
DEPENDS
|
|
TritonTransformsIncGen
|
|
TritonCombineIncGen
|
|
|
|
LINK_LIBS PUBLIC
|
|
MLIRPass
|
|
MLIRTransformUtils
|
|
TritonIR
|
|
)
|