-
Notifications
You must be signed in to change notification settings - Fork 873
Fix validate consistency #7679
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix validate consistency #7679
Changes from all commits
0b16f37
5682f69
6c327d9
3e6187f
bda995b
2848871
8ca1d60
e6c5c17
6f4a34c
eeb6c56
3ec8184
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| ## [ 仅参数名不一致 ]torch.Tensor.bitwise_and_ | ||
| ### [torch.Tensor.bitwise_and_](https://docs.pytorch.org/docs/stable/generated/torch.bitwise_and.html) | ||
| ```python | ||
| torch.Tensor.bitwise_and_(other) | ||
| ``` | ||
|
|
||
| ### [paddle.Tensor.bitwise_and_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor__upper_cn.html#bitwise-and-y-out-none-name-none) | ||
| ```python | ||
| paddle.Tensor.bitwise_and_(y, name=None) | ||
| ``` | ||
|
|
||
| 两者功能一致,输入参数用法不一致,具体如下: | ||
|
|
||
| ### 参数映射 | ||
|
|
||
| | PyTorch | PaddlePaddle | 备注 | | ||
| | ------------- | ------------ | ------------------------------------------------------ | | ||
| | other | y | 按位与的另一个输入。| | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| ## [ 仅参数名不一致 ]torch.Tensor.bitwise_xor_ | ||
| ### [torch.Tensor.bitwise_xor_](https://docs.pytorch.org/docs/stable/generated/torch.bitwise_xor.html) | ||
| ```python | ||
| torch.Tensor.bitwise_xor_(other) | ||
| ``` | ||
|
|
||
| ### [paddle.Tensor.bitwise_xor_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor__upper_cn.html#bitwise-xor-y-out-none-name-none) | ||
| ```python | ||
| paddle.Tensor.bitwise_xor_(y, name=None) | ||
| ``` | ||
|
|
||
| 两者功能一致,输入参数用法不一致,具体如下: | ||
|
|
||
| ### 参数映射 | ||
|
|
||
| | PyTorch | PaddlePaddle | 备注 | | ||
| | ------------- | ------------ | ------------------------------------------------------ | | ||
| | other | y | 按位 y 异或的另一个输入。| | ||
LittleHeroZZZX marked this conversation as resolved.
Show resolved
Hide resolved
|
||
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,6 +3,7 @@ | |
| ```python | ||
| torch.Tensor.nansum(dim=None, | ||
| keepdim=False, | ||
| *, | ||
| dtype=None) | ||
| ``` | ||
|
|
||
|
|
||
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.