Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/lib/Dialect/Linalg/Transforms/
H A DPromotion.cpp108 OpBuilder &b, Value fullLocalView) { in defaultDeallocBufferCallBack() argument
110 auto viewOp = cast<memref::ViewOp>(fullLocalView.getDefiningOp()); in defaultDeallocBufferCallBack()
242 Optional<Value> fullLocalView = allocationFn(b, subView, fullSizes, layout); in promoteSubviewAsNewBuffer() local
243 if (!fullLocalView) in promoteSubviewAsNewBuffer()
248 loc, *fullLocalView, zeros, partialSizes, ones); in promoteSubviewAsNewBuffer()
249 return PromotionInfo{*fullLocalView, partialLocalView}; in promoteSubviewAsNewBuffer()
292 b.create<linalg::FillOp>(fillVal, promotionInfo->fullLocalView); in promoteSubViews()
331 (*promotedBuffersAndViews)[operandNumber].fullLocalView); in promoteSubViews()
356 (void)options.deallocationFn(b, pi.second.fullLocalView); in promoteSubViews()
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Linalg/Transforms/
H A DTransforms.h286 Value fullLocalView; member