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

【Hackathon 5th No.37】为 Paddle 新增 householder_product API(update) #754

Merged
merged 6 commits into from
Nov 22, 2023
Merged
Changes from 4 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
4 changes: 2 additions & 2 deletions rfcs/APIs/20230928_api_design_for_householder_product.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,11 +256,11 @@ PyTorch通过底层调用lapack包来实现householder_product,Scipy中也是

API的设计为:

- torch.linalg.householder_product(A, tau, name=None)
- torch.linalg.householder_product(x, tau, name=None)
Copy link
Contributor

Choose a reason for hiding this comment

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

shoule be paddle.linalg.householder_product ?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

shoule be paddle.linalg.householder_product ?

Sry, fixed.


其中

+ A(Tensor):shape 为 (*,m,n),至少为2维。
+ x(Tensor):shape 为 (*,m,n),至少为2维。
+ tau(Tensor):shape 为 (*,k),至少1维。
+ name(str):表示算子名称,与其他算子统一,默认为None。

Expand Down