!47339 GPU算子补充数据类型 资料补充

Merge pull request !47339 from KXiong/code_docs_master
This commit is contained in:
i-robot 2022-12-30 03:47:31 +00:00 committed by Gitee
commit 4a4b2a7ead
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
3 changed files with 4 additions and 4 deletions

View File

@ -23,5 +23,5 @@ mindspore.ops.log
异常:
- **TypeError** - `x` 不是Tensor。
- **TypeError** - 在GPU和CPU平台上运行时`x` 的数据类型不是float16、float32或float64。
- **TypeError** - 在CPU平台上运行时`x` 的数据类型不是float16、float32或float64。
- **TypeError** - 在Ascend平台上运行时`x` 的数据类型不是float16或float32。

View File

@ -16,4 +16,4 @@ mindspore.ops.logical_not
异常:
- **TypeError** - 如果 `x` 不是Tensor。
- **TypeError** - 如果 `x` 的数据类型不是bool。
- **TypeError** - 在CPU和Ascend平台上运行时 `x` 的数据类型不是bool。

View File

@ -1257,7 +1257,7 @@ def log(x):
Raises:
TypeError: If `x` is not a Tensor.
TypeError: If dtype of `x` is not float16, float32 or float64 on GPU and CPU.
TypeError: If dtype of `x` is not float16, float32 or float64 on CPU.
TypeError: If dtype of `x` is not float16 or float32 on Ascend.
Supported Platforms:
@ -1536,7 +1536,7 @@ def logical_not(x):
Raises:
TypeError: If `x` is not a Tensor.
TypeError: If dtype of `x` is not a bool.
TypeError: If dtype of `x` is not a bool on CPU and Ascend.
Supported Platforms:
``Ascend`` ``GPU`` ``CPU``