-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
43 lines (40 loc) · 808 Bytes
/
CMakeLists.txt
File metadata and controls
43 lines (40 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
add_mlir_dialect_library(MLIRPolygeistTransforms
AffineCFG.cpp
AffineReduction.cpp
BarrierRemovalContinuation.cpp
CanonicalizeFor.cpp
ConvertPolygeistToLLVM.cpp
InnerSerialization.cpp
LoopRestructure.cpp
Mem2Reg.cpp
OpenMPOpt.cpp
ParallelLICM.cpp
ParallelLoopDistribute.cpp
ParallelLower.cpp
RaiseToAffine.cpp
TemporaryStorageElimination.cpp
TrivialUse.cpp
ADDITIONAL_HEADER_DIRS
${MLIR_MAIN_INCLUDE_DIR}/mlir/Dialect/Affine
DEPENDS
MLIRPolygeistOpsIncGen
MLIRPolygeistPassIncGen
LINK_LIBS PUBLIC
MLIRAffine
MLIRAsync
MLIRAffineUtils
MLIRFunc
MLIRFuncTransforms
MLIRGPUOps
MLIRIR
MLIRLLVMIR
MLIRMath
MLIRMathToLLVM
MLIRMemRef
MLIRNVVMIR
MLIRPass
MLIRPolygeist
MLIRSideEffectInterfaces
MLIRSCFToControlFlow
MLIRTransformUtils
)