Lines Matching refs:isSparse
1125 bool isSparse) { in isVectorFor() argument
1134 return isInner && !isSparse; in isVectorFor()
1145 bool isSparse, bool isVector) { in isParallelFor() argument
1154 return isOuter && !isSparse && !isReduction && !isVector; in isParallelFor()
1158 return !isSparse && !isReduction && !isVector; in isParallelFor()
1199 bool isSparse = merger.isDim(fb, Dim::kSparse); in genFor() local
1200 bool isVector = isVectorFor(codegen, isInner, isReduction, isSparse) && in genFor()
1203 isParallelFor(codegen, isOuter, isReduction, isSparse, isVector); in genFor()
1211 Value lo = isSparse ? codegen.pidxs[tensor][idx] : codegen.loops[idx]; in genFor()
1212 Value hi = isSparse ? codegen.highs[tensor][idx] : codegen.sizes[idx]; in genFor()
1224 if (isSparse) in genFor()
1252 if (isSparse) in genFor()