rm bitwise dtype

tick
This commit is contained in:
xiongkun 2023-01-18 15:37:23 +08:00
parent 58bc8ff57b
commit 689942b2de
4 changed files with 6 additions and 9 deletions

View File

@ -13,7 +13,7 @@ mindspore.ops.bitwise_and
如果 `x``y` 数据类型不同,低精度数据类型将自动转换成高精度数据类型。
参数:
- **x** (Tensor) - 第一个输入Tensor其shape为 :math:`(N, *)` ,其中 :math:`*` 为任意数量的额外维度。支持的数据类型有int8、uint8、int16、uint16、int32、uint32、int64和uint64。
- **x** (Tensor) - 第一个输入Tensor其shape为 :math:`(N, *)` ,其中 :math:`*` 为任意数量的额外维度。
- **y** (Tensor) - 第二个输入Tensor数据类型与 `x` 一致。
返回:

View File

@ -13,7 +13,7 @@ mindspore.ops.bitwise_or
如果 `x``y` 数据类型不同,低精度数据类型将自动转换成高精度数据类型。
参数:
- **x** (Tensor) - 第一个输入Tensor其shape为 :math:`(N, *)` ,其中 :math:`*` 为任意数量的额外维度。支持的数据类型有int8、uint8、int16、uint16、int32、uint32、int64和uint64。
- **x** (Tensor) - 第一个输入Tensor其shape为 :math:`(N, *)` ,其中 :math:`*` 为任意数量的额外维度。
- **y** (Tensor) - 第二个输入Tensor数据类型与 `x` 一致。
返回:

View File

@ -13,7 +13,7 @@ mindspore.ops.bitwise_xor
如果 `x``y` 数据类型不同,低精度数据类型将自动转换成高精度数据类型。
参数:
- **x** (Tensor) - 第一个输入Tensor其shape为 :math:`(N, *)` ,其中 :math:`*` 为任意数量的额外维度。支持的数据类型有int8、uint8、int16、uint16、int32、uint32、int64和uint64。
- **x** (Tensor) - 第一个输入Tensor其shape为 :math:`(N, *)` ,其中 :math:`*` 为任意数量的额外维度。
- **y** (Tensor) - 第二个输入Tensor数据类型与 `x` 一致。
返回:

View File

@ -2581,8 +2581,7 @@ def bitwise_and(x, y):
Args:
x (Tensor): The first input tensor with shape :math:`(N,*)` where :math:`*` means
any number of additional dimensions. The supported data types are:
int8, uint8, int16, uint16, int32, uint32, int64 and uint64.
any number of additional dimensions.
y (Tensor): The second input tensor with the same dtype as `x`.
Returns:
@ -2619,8 +2618,7 @@ def bitwise_or(x, y):
Args:
x (Tensor): The first input tensor with shape :math:`(N,*)` where :math:`*` means
any number of additional dimensions. The supported data types are:
int8, uint8, int16, uint16, int32, uint32, int64 and uint64.
any number of additional dimensions.
y (Tensor): The second input tensor with the same dtype as `x`.
Returns:
@ -2657,8 +2655,7 @@ def bitwise_xor(x, y):
Args:
x (Tensor): The first input tensor with shape :math:`(N,*)` where :math:`*` means
any number of additional dimensions. The supported data types are:
int8, uint8, int16, uint16, int32, uint32, int64 and uint64.
any number of additional dimensions.
y (Tensor): The second input tensor with the same dtype as `x`.
Returns: