MLIR
18.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... | |
Functions | |
static Value | insertOne (PatternRewriter &rewriter, Location loc, Value from, Value into, int64_t offset) |
static Value | extractOne (PatternRewriter &rewriter, Location loc, Value vector, int64_t offset) |
|
static |
Definition at line 33 of file VectorInsertExtractStridedSliceRewritePatterns.cpp.
References mlir::OpBuilder::create(), and mlir::Value::getType().
|
static |
Definition at line 22 of file VectorInsertExtractStridedSliceRewritePatterns.cpp.
References mlir::OpBuilder::create(), and mlir::Value::getType().