Home
last modified time | relevance | path

Searched refs:oldSrcType (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Dialect/Vector/Transforms/
H A DVectorDropLeadUnitDim.cpp51 VectorType oldSrcType = extractOp.getVectorType(); in matchAndRewrite() local
52 VectorType newSrcType = trimLeadingOneDims(oldSrcType); in matchAndRewrite()
54 if (newSrcType.getRank() == oldSrcType.getRank()) in matchAndRewrite()
57 int64_t dropCount = oldSrcType.getRank() - newSrcType.getRank(); in matchAndRewrite()
96 VectorType oldSrcType = insertOp.getSourceVectorType(); in matchAndRewrite() local
97 VectorType newSrcType = trimLeadingOneDims(oldSrcType); in matchAndRewrite()
101 int64_t srcDropCount = oldSrcType.getRank() - newSrcType.getRank(); in matchAndRewrite()
136 Type oldSrcType = insertOp.getSourceType(); in matchAndRewrite() local
137 Type newSrcType = oldSrcType; in matchAndRewrite()
139 if (auto type = oldSrcType.dyn_cast<VectorType>()) { in matchAndRewrite()