Home
last modified time | relevance | path

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

/external/llvm-project/mlir/lib/Analysis/
DNumberOfExecutions.cpp228 Optional<int64_t> numberOfBlockExecutions) in BlockNumberOfExecutionsInfo() argument
230 numberOfBlockExecutions(numberOfBlockExecutions) {} in BlockNumberOfExecutionsInfo()
233 if (numberOfRegionInvocations && numberOfBlockExecutions) in getNumberOfExecutions()
234 return *numberOfRegionInvocations * *numberOfBlockExecutions; in getNumberOfExecutions()
240 if (numberOfBlockExecutions) in getNumberOfExecutions()
241 return numberOfRegionInvocations * *numberOfBlockExecutions; in getNumberOfExecutions()
/external/llvm-project/mlir/include/mlir/Analysis/
DNumberOfExecutions.h80 Optional<int64_t> numberOfBlockExecutions);
102 Optional<int64_t> numberOfBlockExecutions; variable