[Mlir-commits] [mlir] [mlir][sparse]Make isBlockSparsity more robust (PR #75113)

Aart Bik llvmlistbot at llvm.org
Mon Dec 11 15:17:36 PST 2023


================
@@ -855,16 +855,21 @@ SmallVector<unsigned> mlir::sparse_tensor::getBlockSize(AffineMap dimToLvl) {
 bool mlir::sparse_tensor::isBlockSparsity(AffineMap dimToLvl) {
   if (!dimToLvl)
     return false;
+  SmallVector<unsigned> isDimSet;
----------------
aartbik wrote:

bool?

https://github.com/llvm/llvm-project/pull/75113


More information about the Mlir-commits mailing list