Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/lib/Conversion/VectorToSCF/
H A DVectorToSCF.cpp493 auto source = loopState.empty() ? xferOp.getSource() : loopState[0]; in rewriteOp()
508 ValueRange loopState) { in handleOutOfBoundsDim()
509 return isTensorOp(xferOp) ? loopState[0] : Value(); in handleOutOfBoundsDim()
725 auto loopState = Strategy<OpTy>::initialLoopState(xferOp); in matchAndRewrite() local
729 lb, ub, step, loopState ? ValueRange(loopState) : ValueRange(), in matchAndRewrite()
731 Type stateType = loopState.empty() ? Type() : loopState[0].getType(); in matchAndRewrite()
771 b, xferOp, castedDataBuffer, iv, loopState); in matchAndRewrite()
774 maybeYieldValue(b, loc, !loopState.empty(), result); in matchAndRewrite()
1126 ValueRange loopState) { in generateForLoopBody()
1129 auto vec = loopState[0]; in generateForLoopBody()
[all …]
/llvm-project-15.0.7/mlir/test/CAPI/
H A Dir.c162 MlirOperationState loopState = mlirOperationStateGet( in makeAndDumpAdd() local
164 mlirOperationStateAddOperands(&loopState, 3, loopOperands); in makeAndDumpAdd()
165 mlirOperationStateAddOwnedRegions(&loopState, 1, &loopBodyRegion); in makeAndDumpAdd()
166 MlirOperation loop = mlirOperationCreate(&loopState); in makeAndDumpAdd()