2020-05-05 03:41:43 +08:00
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
|
|
Core
|
|
|
|
Support
|
|
|
|
)
|
2019-05-30 23:23:49 +08:00
|
|
|
add_llvm_executable(mlir-edsc-builder-api-test
|
2019-05-18 06:03:39 +08:00
|
|
|
builder-api-test.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
llvm_update_compile_flags(mlir-edsc-builder-api-test)
|
|
|
|
|
|
|
|
target_link_libraries(mlir-edsc-builder-api-test
|
2019-05-31 00:42:17 +08:00
|
|
|
PRIVATE
|
2020-04-17 02:11:13 +08:00
|
|
|
MLIRAffineOps
|
|
|
|
MLIRAffineEDSC
|
2019-05-18 06:03:39 +08:00
|
|
|
MLIREDSC
|
2019-10-18 21:44:41 +08:00
|
|
|
MLIRIR
|
[mlir][EDSC] Refactor dependencies involving EDSCs.
Summary: This diff removes the dependency of LinalgOps and VectorOps on EDSCs.
Reviewers: jpienaar, ftynse
Reviewed By: ftynse
Subscribers: merge_guards_bot, mgorny, mehdi_amini, rriddle, burmako, shauheen, antiagainst, csigg, arpith-jacob, mgester, lucyrfox, herhut, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D72481
2020-01-15 22:28:12 +08:00
|
|
|
MLIRLinalgEDSC
|
|
|
|
MLIRLinalgOps
|
2020-05-11 21:00:48 +08:00
|
|
|
MLIRSCF
|
2019-05-18 06:03:39 +08:00
|
|
|
MLIRStandardOps
|
|
|
|
MLIRTransforms
|
2020-03-18 06:24:27 +08:00
|
|
|
MLIRVector
|
2020-05-05 03:41:43 +08:00
|
|
|
)
|
2019-05-18 06:03:39 +08:00
|
|
|
|
2019-05-23 03:13:54 +08:00
|
|
|
target_include_directories(mlir-edsc-builder-api-test PRIVATE ..)
|