-
Notifications
You must be signed in to change notification settings - Fork 764
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add torch.cholesky_solve api_difference * fix doc error * fix
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
...nvert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.cholesky_solve.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
## [仅参数名不一致]torch.cholesky_solve | ||
|
||
### [torch.cholesky_solve](https://pytorch.org/docs/2.0/generated/torch.cholesky_solve.html?highlight=cholesky#torch.cholesky_solve) | ||
|
||
```python | ||
torch.cholesky_solve(input,input2,upper=False,*,out=None) | ||
``` | ||
|
||
### [paddle.linalg.cholesky_solve](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/cholesky_solve_cn.html#cholesky-solve) | ||
|
||
```python | ||
paddle.linalg.cholesky_solve(x,y,upper=False,name=None) | ||
``` | ||
|
||
两者功能一致且参数用法一致,仅参数名不一致,具体如下:: | ||
|
||
### 参数映射 | ||
|PyTorch|PaddlePaddle|备注| | ||
| ------- | ------- | ------- | | ||
|input|x|表示线性方程中的 B 矩阵。仅参数名不一致| | ||
|input2|y|表示线性方程中 A 矩阵的 Cholesky 分解矩阵 u。仅参数名不一致| | ||
|upper|upper|表示输入 x 是否是上三角矩阵,True 为上三角矩阵,False 为下三角矩阵。仅参数名不一致| |