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> createLoopCoalescingPass(); /// variables into another ParallelLoop over less than N induction variables. std::unique_ptr 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> createAffineDataCopyGenerationPass( - unsigned slowMemorySpace, unsigned fastMemorySpace, - unsigned tagMemorySpace = 0, int minDmaTransferSize = 1024, - uint64_t fastMemCapacityBytes = std::numeric_limits::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> createMemRefDataFlowOptPass();