forked from mindspore-Ecosystem/mindspore
!47339 GPU算子补充数据类型 资料补充
Merge pull request !47339 from KXiong/code_docs_master
This commit is contained in:
commit
4a4b2a7ead
|
@ -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。
|
||||
|
|
|
@ -16,4 +16,4 @@ mindspore.ops.logical_not
|
|||
|
||||
异常:
|
||||
- **TypeError** - 如果 `x` 不是Tensor。
|
||||
- **TypeError** - 如果 `x` 的数据类型不是bool。
|
||||
- **TypeError** - 在CPU和Ascend平台上运行时, `x` 的数据类型不是bool。
|
||||
|
|
|
@ -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``
|
||||
|
|
Loading…
Reference in New Issue