Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/lib/Conversion/VectorToSPIRV/
H A DVectorToSPIRV.cpp85 VectorType resultVectorType = extractOp.getType().dyn_cast<VectorType>(); in matchAndRewrite() local
86 if (resultVectorType && resultVectorType.getNumElements() > 1) in matchAndRewrite()
/llvm-project-15.0.7/mlir/lib/Dialect/Vector/Transforms/
H A DVectorTransforms.cpp226 auto resultVectorType = in matchAndRewrite() local
228 if (!sourceVectorType || !resultVectorType) in matchAndRewrite()
241 if (operandSourceVectorType != resultVectorType || in matchAndRewrite()
843 auto resultVectorType = op.getResultVectorType(); in matchAndRewrite() local
849 loc, resultVectorType, rewriter.getZeroAttr(resultVectorType)); in matchAndRewrite()
876 auto resultVectorType = op.getResultVectorType(); in matchAndRewrite() local
882 loc, resultVectorType, rewriter.getZeroAttr(resultVectorType)); in matchAndRewrite()
909 auto resultVectorType = op.getResultVectorType(); in matchAndRewrite() local
914 int64_t resRank = resultVectorType.getRank(); in matchAndRewrite()
935 loc, resultVectorType, rewriter.getZeroAttr(resultVectorType)); in matchAndRewrite()
[all …]
/llvm-project-15.0.7/mlir/lib/Dialect/Vector/IR/
H A DVectorOps.cpp4284 VectorType resultVectorType) { in verifyVectorShapeCast() argument
4286 if (sourceVectorType.getElementType() != resultVectorType.getElementType()) in verifyVectorShapeCast()
4289 auto resultShape = resultVectorType.getShape(); in verifyVectorShapeCast()
4301 unsigned resultRank = resultVectorType.getRank(); in verifyVectorShapeCast()
4314 auto resultVectorType = getResult().getType().dyn_cast_or_null<VectorType>(); in verify() local
4317 if (sourceVectorType && resultVectorType) in verify()
4318 return verifyVectorShapeCast(*this, sourceVectorType, resultVectorType); in verify()
4431 auto resultVectorType = getResultVectorType(); in verify() local
4434 if (sourceVectorType.getDimSize(i) != resultVectorType.getDimSize(i)) in verify()
4442 dataLayout.getTypeSizeInBits(resultVectorType.getElementType()); in verify()
[all …]
/llvm-project-15.0.7/mlir/lib/Dialect/SPIRV/IR/
H A DSPIRVOps.cpp4361 if (auto resultVectorType = resultType.dyn_cast<VectorType>()) in verify() local
4362 resultComponentNumber = resultVectorType.getNumElements(); in verify()