!45947 fix discription of ops greqf
Merge pull request !45947 from wangmin0104/master
This commit is contained in:
commit
2e080269e3
|
@ -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。
|
||||
|
|
Loading…
Reference in New Issue