[PATCH] D74067: [MLIR] Move test passes out of lib/Analysis
Stephen Neuendorffer via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 5 11:12:50 PST 2020
stephenneuendorffer retitled this revision from "[MLIR] Move test passes out of lib/Analysis r=rriddle" to "[MLIR] Move test passes out of lib/Analysis".
stephenneuendorffer edited the summary of this revision.
stephenneuendorffer updated this revision to Diff 242704.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D74067/new/
https://reviews.llvm.org/D74067
Files:
mlir/lib/Analysis/CMakeLists.txt
mlir/lib/Analysis/MemRefBoundCheck.cpp
mlir/lib/Analysis/OpStats.cpp
mlir/lib/Analysis/TestMemRefDependenceCheck.cpp
mlir/lib/Analysis/TestParallelismDetection.cpp
mlir/lib/Transforms/CMakeLists.txt
mlir/lib/Transforms/OpStats.cpp
mlir/test/lib/Transforms/CMakeLists.txt
mlir/test/lib/Transforms/MemRefBoundCheck.cpp
mlir/test/lib/Transforms/TestMemRefDependenceCheck.cpp
mlir/test/lib/Transforms/TestParallelismDetection.cpp
Index: mlir/test/lib/Transforms/CMakeLists.txt
===================================================================
--- mlir/test/lib/Transforms/CMakeLists.txt
+++ mlir/test/lib/Transforms/CMakeLists.txt
@@ -10,7 +10,10 @@
TestLoopMapping.cpp
TestLoopParametricTiling.cpp
TestOpaqueLoc.cpp
+ MemRefBoundCheck.cpp
+ TestMemRefDependenceCheck.cpp
TestMemRefStrideCalculation.cpp
+ TestParallelismDetection.cpp
TestVectorToLoopsConversion.cpp
TestVectorTransforms.cpp
TestVectorizationUtils.cpp
Index: mlir/lib/Transforms/CMakeLists.txt
===================================================================
--- mlir/lib/Transforms/CMakeLists.txt
+++ mlir/lib/Transforms/CMakeLists.txt
@@ -14,6 +14,7 @@
LoopUnrollAndJam.cpp
LoopUnroll.cpp
MemRefDataFlowOpt.cpp
+ OpStats.cpp
PipelineDataTransfer.cpp
SimplifyAffineStructures.cpp
StripDebugInfo.cpp
Index: mlir/lib/Analysis/CMakeLists.txt
===================================================================
--- mlir/lib/Analysis/CMakeLists.txt
+++ mlir/lib/Analysis/CMakeLists.txt
@@ -6,12 +6,8 @@
InferTypeOpInterface.cpp
Liveness.cpp
LoopAnalysis.cpp
- MemRefBoundCheck.cpp
NestedMatcher.cpp
- OpStats.cpp
SliceAnalysis.cpp
- TestMemRefDependenceCheck.cpp
- TestParallelismDetection.cpp
Utils.cpp
Verifier.cpp
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D74067.242704.patch
Type: text/x-patch
Size: 1325 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200205/5cd6a40b/attachment.bin>
More information about the llvm-commits
mailing list