Skip to content

Commit b4a1eab

Browse files
committed
[mlir][sparse] fixed typo in sparse tensor type attribute alias
Reviewed By: grosul1, rriddle Differential Revision: https://reviews.llvm.org/D107472
1 parent d9cc5d8 commit b4a1eab

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

mlir/include/mlir/Dialect/SparseTensor/IR/SparseTensorAttrDefs.td

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ def SparseTensorEncodingAttr : SparseTensor_Attr<"SparseTensorEncoding",
3333
Example:
3434

3535
```mlir
36-
3736
#DCSC = #sparse_tensor.encoding<{
3837
dimLevelType = [ "compressed", "compressed" ],
3938
dimOrdering = affine_map<(i,j) -> (j,i)>,
@@ -42,8 +41,7 @@ def SparseTensorEncodingAttr : SparseTensor_Attr<"SparseTensorEncoding",
4241
}>
4342

4443

45-
... tensor<8x8xf64, #DCSR> ...
46-
44+
... tensor<8x8xf64, #DCSC> ...
4745
```
4846
}];
4947

0 commit comments

Comments
 (0)