Skip to content
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

映射文档 No.76 #5987

Merged
merged 3 commits into from
Jul 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
## [仅参数名不一致]torch.cholesky_solve

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

仅参数名不一致

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

已修改

### [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 为下三角矩阵。仅参数名不一致|