[mlir] Fix syntax example for tensor.from_elements

Parens are not used here
This commit is contained in:
Geoffrey Martin-Noble 2021-09-17 17:23:11 -07:00 committed by GitHub
parent 6f7483b1ec
commit 2cda4f8ed7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -308,7 +308,7 @@ def Tensor_FromElementsOp : Tensor_Op<"from_elements", [
Example:
```mlir
tensor.from_elements(i_1, ..., i_N) : tensor<Nxindex>
tensor.from_elements i_1, ..., i_N : tensor<Nxindex>
```
}];