forked from OSchip/llvm-project
[MLIR][NFC] fix RankedTensorType doc comment
Ranked tensor types can have shape dimension size 0 Signed-off-by: Uday Bondhugula <uday@polymagelabs.com> Differential Revision: https://reviews.llvm.org/D76405
This commit is contained in:
parent
1d5560c363
commit
6e0aaafbc7
|
@ -342,8 +342,8 @@ public:
|
|||
};
|
||||
|
||||
/// Ranked tensor types represent multi-dimensional arrays that have a shape
|
||||
/// with a fixed number of dimensions. Each shape element can be a positive
|
||||
/// integer or unknown (represented -1).
|
||||
/// with a fixed number of dimensions. Each shape element can be a non-negative
|
||||
/// integer or unknown (represented by -1).
|
||||
class RankedTensorType
|
||||
: public Type::TypeBase<RankedTensorType, TensorType,
|
||||
detail::RankedTensorTypeStorage> {
|
||||
|
|
Loading…
Reference in New Issue