Skip to content

Commit

Permalink
【Hackathon 5th No.37】为 Paddle 新增 householder_product API(update) (#754)
Browse files Browse the repository at this point in the history
* fix rfc

* add other possible strategy

* modify api param: A to x

* fix
cocoshe authored Nov 22, 2023
1 parent 312e068 commit c207f78
Showing 1 changed file with 2 additions and 2 deletions.
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
@@ -256,11 +256,11 @@ PyTorch通过底层调用lapack包来实现householder_product,Scipy中也是
API的设计为:
- torch.linalg.householder_product(A, tau, name=None)
- paddle.linalg.householder_product(x, tau, name=None)
其中
+ A(Tensor):shape 为 (*,m,n),至少为2维。
+ x(Tensor):shape 为 (*,m,n),至少为2维。
+ tau(Tensor):shape 为 (*,k),至少1维。
+ name(str):表示算子名称,与其他算子统一,默认为None。

0 comments on commit c207f78

Please sign in to comment.