!45947 fix discription of ops greqf

Merge pull request !45947 from wangmin0104/master
This commit is contained in:
i-robot 2022-11-25 01:54:55 +00:00 committed by Gitee
commit 2e080269e3
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 5 additions and 5 deletions

View File

@ -10,13 +10,13 @@ mindspore.ops.Geqrf
`R` 的元素存储在对角线及上方。隐式定义矩阵 `Q` 的基本反射器(或户主向量)存储在对角线下方。
输入:
- **x** (Tensor) - shape为 :math:`(m, n)` ,输入必须为两维矩阵dtype为float32、float64。
- **x** (Tensor) - shape为 :math:`(*, m, n)` ,输入矩阵维度必须为大于等于两维,支持dtype为float32、float64、complex64、complex128
输出:
- **y** (Tensor) - shape为 :math:`(m, n)` ,与 `x` 具有相同的dtype。
- **tau** (Tensor) - shape为 :math:`(p,)` ,并且 :math:`p = min(m, n)` ,与 `x` 具有相同的dtype。
- **y** (Tensor) - shape为 :math:`(*, m, n)` ,与 `x` 具有相同的dtype。
- **tau** (Tensor) - shape为 :math:`(*, p,)` ,并且 :math:`p = min(m, n)` ,与 `x` 具有相同的dtype。
异常:
- **TypeError** - 如果 `x` 不是一个Tensor。
- **TypeError** - 如果 `x` 的dtype不是float32、float64中的一个。
- **ValueError** - 如果 `x` 的维度不等于2。
- **TypeError** - 如果 `x` 的dtype不是float32、float64、complex64、complex128中的一个。
- **ValueError** - 如果 `x` 的维度于2。