Searched refs:valueIt (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/mlir/lib/Conversion/AffineToStandard/ |
D | AffineToStandard.cpp | 253 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/ |
D | LowerToAffineLoops.cpp | 167 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/ |
D | LowerToAffineLoops.cpp | 166 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/ |
D | LowerToAffineLoops.cpp | 167 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/ |
D | Operation.h | 159 auto valueIt = values.begin(); in replaceAllUsesWith() local 161 getResult(i).replaceAllUsesWith(*(valueIt++)); in replaceAllUsesWith()
|
D | BuiltinAttributes.h | 1243 auto valueIt = getValues().getValues<T>().begin(); 1250 return *std::next(valueIt, i);
|