Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/lib/Dialect/Bufferization/IR/
H A DBufferizationOps.cpp334 Optional<int64_t> maybeConstantIndex = dimOp.getConstantIndex(); in matchAndRewrite() local
336 if (!allocTensorOp || !maybeConstantIndex) in matchAndRewrite()
338 if (!allocTensorOp.getType().isDynamicDim(*maybeConstantIndex)) in matchAndRewrite()
341 dimOp, allocTensorOp.getDynamicSize(rewriter, *maybeConstantIndex)); in matchAndRewrite()
/llvm-project-15.0.7/mlir/lib/Dialect/Linalg/IR/
H A DLinalgOps.cpp1356 Optional<int64_t> maybeConstantIndex = dimOp.getConstantIndex(); in matchAndRewrite() local
1358 if (!initTensorOp || !maybeConstantIndex) in matchAndRewrite()
1360 if (!initTensorOp.isDynamicSize(*maybeConstantIndex)) in matchAndRewrite()
1362 rewriter.replaceOp(dimOp, initTensorOp.getDynamicSize(*maybeConstantIndex)); in matchAndRewrite()