Home
last modified time | relevance | path

Searched refs:valueIt (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/mlir/lib/Conversion/AffineToStandard/
DAffineToStandard.cpp253 auto valueIt = values.begin(); in buildMinMaxReductionSeq() local
254 Value value = *valueIt++; in buildMinMaxReductionSeq()
255 for (; valueIt != values.end(); ++valueIt) { in buildMinMaxReductionSeq()
256 auto cmpOp = builder.create<CmpIOp>(loc, predicate, value, *valueIt); in buildMinMaxReductionSeq()
257 value = builder.create<SelectOp>(loc, cmpOp.getResult(), value, *valueIt); in buildMinMaxReductionSeq()
/external/llvm-project/mlir/examples/toy/Ch7/mlir/
DLowerToAffineLoops.cpp167 auto valueIt = constantValue.getValues<FloatAttr>().begin(); in matchAndRewrite() local
173 loc, rewriter.create<ConstantOp>(loc, *valueIt++), alloc, in matchAndRewrite()
/external/llvm-project/mlir/examples/toy/Ch6/mlir/
DLowerToAffineLoops.cpp166 auto valueIt = constantValue.getValues<FloatAttr>().begin(); in matchAndRewrite() local
172 loc, rewriter.create<ConstantOp>(loc, *valueIt++), alloc, in matchAndRewrite()
/external/llvm-project/mlir/examples/toy/Ch5/mlir/
DLowerToAffineLoops.cpp167 auto valueIt = constantValue.getValues<FloatAttr>().begin(); in matchAndRewrite() local
173 loc, rewriter.create<ConstantOp>(loc, *valueIt++), alloc, in matchAndRewrite()
/external/llvm-project/mlir/include/mlir/IR/
DOperation.h159 auto valueIt = values.begin(); in replaceAllUsesWith() local
161 getResult(i).replaceAllUsesWith(*(valueIt++)); in replaceAllUsesWith()
DBuiltinAttributes.h1243 auto valueIt = getValues().getValues<T>().begin();
1250 return *std::next(valueIt, i);