-
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
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
...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,23 @@ | ||
## [仅 Paddle 参数更多]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 相比 Paddle 支持更多其他参数,具体如下: | ||
|
||
### 参数映射 | ||
|PyTorch|PaddlePaddle|备注| | ||
| ------- | ------- | ------- | | ||
|input|x|线性方程中的 B 矩阵| | ||
|input2|y|线性方程中 A 矩阵的 Cholesky 分解矩阵 u,上三角或者下三角矩阵| | ||
|upper|upper|输入 x 是否是上三角矩阵,True 为上三角矩阵,False 为下三角矩阵。默认值 False| | ||
|-|name|一般无需设置,默认值为 None。| |