[mlir][sparse] fixed typo in sparse tensor type attribute alias

Reviewed By: grosul1, rriddle

Differential Revision: https://reviews.llvm.org/D107472
This commit is contained in:
Aart Bik 2021-08-04 08:53:47 -07:00
parent d9cc5d84e4
commit b4a1eab941
1 changed files with 1 additions and 3 deletions

View File

@ -33,7 +33,6 @@ def SparseTensorEncodingAttr : SparseTensor_Attr<"SparseTensorEncoding",
Example:
```mlir
#DCSC = #sparse_tensor.encoding<{
dimLevelType = [ "compressed", "compressed" ],
dimOrdering = affine_map<(i,j) -> (j,i)>,
@ -42,8 +41,7 @@ def SparseTensorEncodingAttr : SparseTensor_Attr<"SparseTensorEncoding",
}>
... tensor<8x8xf64, #DCSR> ...
... tensor<8x8xf64, #DCSC> ...
```
}];