!40035 add missing warning
Merge pull request !40035 from panzhihui/code_docs_update_sort
This commit is contained in:
commit
e3ac847504
|
@ -5,6 +5,9 @@
|
|||
|
||||
根据指定的轴对输入Tensor的元素进行排序。默认为升序排序。
|
||||
|
||||
.. warning::
|
||||
目前仅支持float16数据类型。如果使用float32类型可能导致数据精度损失。
|
||||
|
||||
参数:
|
||||
- **axis** (int) - 指定排序的轴。默认值:-1。
|
||||
- **descending** (bool) - 指定排序方式。如果 `descending` 为True,则根据value对元素进行降序排序。默认值:False。
|
||||
|
@ -20,4 +23,4 @@
|
|||
- **TypeError** - `axis` 不是int。
|
||||
- **TypeError** - `descending` 不是bool。
|
||||
- **TypeError** - `x` 的数据类型既不是float16也不是float32。
|
||||
- **ValueError** - 当 `axis` 取值不在[-len(x.shape), len(x.shape))范围内。
|
||||
- **ValueError** - 当 `axis` 取值不在[-len(x.shape), len(x.shape))范围内。
|
||||
|
|
Loading…
Reference in New Issue