Home
last modified time | relevance | path

Searched refs:countPerRegion (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/mlir/include/mlir/Interfaces/
DControlFlowInterfaces.td135 Populates countPerRegion with the number of times this operation will
147 "SmallVectorImpl<int64_t> &":$countPerRegion), [{}],
150 assert(countPerRegion.empty());
151 countPerRegion.resize(numRegions, kUnknownNumRegionInvocations);
/external/llvm-project/mlir/lib/Dialect/Async/IR/
DAsync.cpp124 ArrayRef<Attribute> operands, SmallVectorImpl<int64_t> &countPerRegion) { in getNumRegionInvocations() argument
126 assert(countPerRegion.empty()); in getNumRegionInvocations()
127 countPerRegion.push_back(1); in getNumRegionInvocations()
/external/llvm-project/mlir/lib/Dialect/SCF/
DSCF.cpp289 SmallVectorImpl<int64_t> &countPerRegion) { in getNumRegionInvocations() argument
290 assert(countPerRegion.empty()); in getNumRegionInvocations()
291 countPerRegion.resize(1); in getNumRegionInvocations()
299 countPerRegion[0] = -1; in getNumRegionInvocations()
303 countPerRegion[0] = in getNumRegionInvocations()
/external/llvm-project/mlir/include/mlir/Dialect/SCF/
DSCFOps.td203 SmallVectorImpl<int64_t> &countPerRegion);