[Mlir-commits] [mlir] 7af74ee - [MLIR] Delete extra declaration of createAffineDataCopyGenerationPass.
Tres Popp
llvmlistbot at llvm.org
Thu Mar 26 01:56:00 PDT 2020
Author: Tres Popp
Date: 2020-03-26T09:55:47+01:00
New Revision: 7af74ee89a01bbba230bbf18bb1cb455b5f056b0
URL: https://github.com/llvm/llvm-project/commit/7af74ee89a01bbba230bbf18bb1cb455b5f056b0
DIFF: https://github.com/llvm/llvm-project/commit/7af74ee89a01bbba230bbf18bb1cb455b5f056b0.diff
LOG: [MLIR] Delete extra declaration of createAffineDataCopyGenerationPass.
This was caused by a bad rebase for
27c201aa1d972c10bfc38ff5b4abaf78ab3d2ad2
Added:
Modified:
mlir/include/mlir/Transforms/Passes.h
Removed:
################################################################################
diff --git a/mlir/include/mlir/Transforms/Passes.h b/mlir/include/mlir/Transforms/Passes.h
index a8462e862083..c095f348f41b 100644
--- a/mlir/include/mlir/Transforms/Passes.h
+++ b/mlir/include/mlir/Transforms/Passes.h
@@ -61,14 +61,6 @@ std::unique_ptr<OpPassBase<FuncOp>> createLoopCoalescingPass();
/// variables into another ParallelLoop over less than N induction variables.
std::unique_ptr<Pass> createParallelLoopCollapsingPass();
-/// Performs packing (or explicit copying) of accessed memref regions into
-/// buffers in the specified faster memory space through either pointwise copies
-/// or DMA operations.
-std::unique_ptr<OpPassBase<FuncOp>> createAffineDataCopyGenerationPass(
- unsigned slowMemorySpace, unsigned fastMemorySpace,
- unsigned tagMemorySpace = 0, int minDmaTransferSize = 1024,
- uint64_t fastMemCapacityBytes = std::numeric_limits<uint64_t>::max());
-
/// Creates a pass to perform optimizations relying on memref dataflow such as
/// store to load forwarding, elimination of dead stores, and dead allocs.
std::unique_ptr<OpPassBase<FuncOp>> createMemRefDataFlowOptPass();
More information about the Mlir-commits
mailing list