MLIR  20.0.0git
SwapExtractSliceWithProducerPatterns.cpp
Go to the documentation of this file.
1 //===- SwapExtractSliceWithProducerPatterns.cpp ---------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // Swap a `tensor.extract_slice` with the producer of the source if the producer
10 // implements the `TilingInterface`. When used in conjunction with tiling this
11 // effectively tiles + fuses the producer with its consumer.
12 //
13 //===----------------------------------------------------------------------===//
14 
20 
21 using namespace mlir;
22 
24  OpBuilder &builder, tensor::ExtractSliceOp sliceOp, OpResult producer) {
25  auto producerOp = dyn_cast<TilingInterface>(producer.getOwner());
26  if (!producerOp)
27  return failure();
28 
29  // `TilingInterface` currently only supports strides being 1.
30  if (llvm::any_of(sliceOp.getMixedStrides(), [](OpFoldResult ofr) {
31  return !isConstantIntValue(ofr, 1);
32  }))
33  return failure();
34 
35  FailureOr<TilingResult> tiledResult = producerOp.generateResultTileValue(
36  builder, producer.getResultNumber(), sliceOp.getMixedOffsets(),
37  sliceOp.getMixedSizes());
38  if (failed(tiledResult))
39  return failure();
40 
41  return *tiledResult;
42 }
43 
45  OpBuilder &builder, OffsetSizeAndStrideOpInterface sliceOp,
46  OpOperand &consumer) {
47  auto consumerOp = dyn_cast<TilingInterface>(consumer.getOwner());
48  if (!consumerOp)
49  return failure();
50 
51  // `TilingInterface` currently only supports strides being 1.
52  if (llvm::any_of(sliceOp.getMixedStrides(), [](OpFoldResult ofr) {
53  return !isConstantIntValue(ofr, 1);
54  }))
55  return failure();
56 
57  FailureOr<TilingResult> tiledResult =
58  consumerOp.getTiledImplementationFromOperandTile(
59  builder, consumer.getOperandNumber(), sliceOp.getMixedOffsets(),
60  sliceOp.getMixedSizes());
61  if (failed(tiledResult))
62  return failure();
63 
64  return *tiledResult;
65 }
This class helps build Operations.
Definition: Builders.h:210
This class represents a single result from folding an operation.
Definition: OpDefinition.h:268
This class represents an operand of an operation.
Definition: Value.h:267
unsigned getOperandNumber()
Return which operand this is in the OpOperand list of the Operation.
Definition: Value.cpp:216
This is a value defined by a result of an operation.
Definition: Value.h:457
Operation * getOwner() const
Returns the operation that owns this result.
Definition: Value.h:466
unsigned getResultNumber() const
Returns the number of this result.
Definition: Value.h:469
Operation * getOwner() const
Return the owner of this operand.
Definition: UseDefLists.h:38
FailureOr< TilingResult > replaceExtractSliceWithTiledProducer(OpBuilder &builder, tensor::ExtractSliceOp sliceOp, OpResult producerOp)
Method to swap an tensor.extract_slice with its producer when the producer implements the TilingInter...
FailureOr< TilingResult > replaceInsertSliceWithTiledConsumer(OpBuilder &builder, OffsetSizeAndStrideOpInterface sliceOp, OpOperand &consumerOp)
Method to swap an tensor.insert_slice with its consumer when the consumer implements the TilingInterf...
Include the generated interface declarations.