Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/lib/ExecutionEngine/
H A DSparseTensorUtils.cpp967 void forallIndices(uint64_t stopDim, NNZConsumer yield) const { in forallIndices() argument
968 assert(stopDim < getRank() && "Stopping-dimension is out of bounds"); in forallIndices()
969 assert(dimTypes[stopDim] == DimLevelType::kCompressed && in forallIndices()
971 forallIndices(yield, stopDim, 0, 0); in forallIndices()
990 void forallIndices(NNZConsumer yield, uint64_t stopDim, uint64_t parentPos, in forallIndices() argument
992 assert(d <= stopDim); in forallIndices()
993 if (d == stopDim) { in forallIndices()
1000 forallIndices(yield, stopDim, pstart + i, d + 1); in forallIndices()