Home
last modified time | relevance | path

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

/external/llvm-project/mlir/lib/Dialect/Linalg/Transforms/
DSparsification.cpp305 std::vector<std::vector<bool>> &adjM) { in topSortDFS() argument
310 if (adjM[i][j]) in topSortDFS()
311 if (!topSortDFS(j, visit, topSort, adjM)) in topSortDFS()
328 std::vector<std::vector<bool>> adjM(n, std::vector<bool>(n, false)); in computeIterationGraph()
342 adjM[f][t] = true; in computeIterationGraph()
352 if (!topSortDFS(i, visit, topSort, adjM)) in computeIterationGraph()