MLIR
20.0.0git
|
#include "mlir/Dialect/Arith/IR/Arith.h"
#include "mlir/Dialect/MemRef/IR/MemRef.h"
#include "mlir/Dialect/Utils/IndexingUtils.h"
#include "mlir/Dialect/Vector/IR/VectorOps.h"
#include "mlir/Dialect/Vector/Transforms/VectorRewritePatterns.h"
#include "mlir/Dialect/Vector/Utils/VectorUtils.h"
#include "mlir/IR/BuiltinTypes.h"
#include "mlir/IR/PatternMatch.h"
Go to the source code of this file.
Classes | |
class | DecomposeDifferentRankInsertStridedSlice |
RewritePattern for InsertStridedSliceOp where source and destination vectors have different ranks. More... | |
class | ConvertSameRankInsertStridedSliceIntoShuffle |
RewritePattern for InsertStridedSliceOp where source and destination vectors have the same rank. More... | |
class | Convert1DExtractStridedSliceIntoShuffle |
RewritePattern for ExtractStridedSliceOp where source and destination vectors are 1-D. More... | |
class | Convert1DExtractStridedSliceIntoExtractInsertChain |
For a 1-D ExtractStridedSlice, breaks it down into a chain of Extract ops to extract each element from the source, and then a chain of Insert ops to insert to the target vector. More... | |
class | DecomposeNDExtractStridedSlice |
RewritePattern for ExtractStridedSliceOp where the source vector is n-D. More... | |