Searched refs:newSteps (Results 1 – 5 of 5) sorted by relevance
/llvm-project/mlir/lib/Dialect/SCF/Transforms/ |
H A D | ParallelLoopTiling.cpp | 75 SmallVector<Value, 2> newSteps; in tileParallelLoop() local 76 newSteps.reserve(op.getStep().size()); in tileParallelLoop() 78 newSteps.push_back(b.create<arith::MulIOp>(op.getLoc(), std::get<0>(step), in tileParallelLoop() 82 op.getUpperBound(), newSteps); in tileParallelLoop()
|
/llvm-project/mlir/lib/Dialect/SCF/IR/ |
H A D | SCF.cpp | 3066 SmallVector<Value> newLowerBounds, newUpperBounds, newSteps; in matchAndRewrite() 3087 newSteps.push_back(step); in matchAndRewrite() 3121 newSteps, op.getInitVals(), nullptr); in matchAndRewrite() 3182 auto newSteps = concatValues(op.getStep(), innerOp.getStep()); 3185 newSteps, std::nullopt, in getSuccessorRegions() 3045 SmallVector<Value> newLowerBounds, newUpperBounds, newSteps; matchAndRewrite() local 3161 auto newSteps = concatValues(op.getStep(), innerOp.getStep()); matchAndRewrite() local
|
/llvm-project/mlir/lib/Dialect/Affine/Utils/ |
H A D | Utils.cpp | 549 SmallVector<int64_t, 8> newSteps(op.getNumDims(), 1); in normalizeAffineParallel() 550 op.setSteps(newSteps); in normalizeAffineParallel() 545 SmallVector<int64_t, 8> newSteps(op.getNumDims(), 1); normalizeAffineParallel() local
|
/llvm-project/mlir/lib/Dialect/Affine/IR/ |
H A D | AffineOps.cpp | 3858 void AffineParallelOp::setSteps(ArrayRef<int64_t> newSteps) { in isResultTypeMatchAtomicRMWKind() 3859 setStepsAttr(getBodyBuilder().getI64ArrayAttr(newSteps)); in isResultTypeMatchAtomicRMWKind() 3849 setSteps(ArrayRef<int64_t> newSteps) setSteps() argument
|
/llvm-project/mlir/include/mlir/Dialect/Affine/IR/ |
H A D | AffineOps.td | 718 void setSteps(ArrayRef<int64_t> newSteps);
|