forked from OSchip/llvm-project
[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:
parent
d9cc5d84e4
commit
b4a1eab941
|
@ -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> ...
|
||||
```
|
||||
}];
|
||||
|
||||
|
|
Loading…
Reference in New Issue