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 -part #58214

Merged
merged 21 commits into from
Nov 30, 2023
Merged

【Hackathon 5th No.37】为 Paddle 新增 householder_product API -part #58214

merged 21 commits into from
Nov 30, 2023

Conversation

@paddle-bot
Copy link

paddle-bot bot commented Oct 18, 2023

你的PR提交成功,感谢你对开源项目的贡献!
请关注后续CI自动化测试结果,详情请参考Paddle-CI手册
Your PR has been submitted. Thanks for your contribution!
Please wait for the result of CI firstly. See Paddle CI Manual for details.

def test_error(self):
with self.assertRaises(AssertionError):
x = paddle.randn([3, 2, 1], dtype=paddle.float32)
tau = paddle.randn([6, 5, 4], dtype=paddle.float64)
Copy link
Contributor

Choose a reason for hiding this comment

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

如果只是判断shape dismatch,是否需要控制dtype相同

Copy link
Contributor Author

Choose a reason for hiding this comment

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

已修改,辛苦review~

def test_error(self):
with self.assertRaises(AssertionError):
x = paddle.randn([3, 6], dtype=paddle.float32)
tau = paddle.randn([6], dtype=paddle.float64)
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.

已修改,辛苦review~

@luotao1
Copy link
Contributor

luotao1 commented Nov 13, 2023

CodeStyle和Windows-inference流水线没有过

"and the dimension of A is 1 larger than the dimension of tau\n"
)
assert (
A.shape[-2] >= A.shape[-1]
Copy link
Contributor

Choose a reason for hiding this comment

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

这里是保证A矩阵的m >= n吗,tau矩阵是否要保证 n >= k?

Copy link
Contributor

Choose a reason for hiding this comment

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

householder_product当前实现方案支持了实值,torch中有对复数的支持吗

Copy link
Contributor Author

Choose a reason for hiding this comment

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

辛苦review~

这里是保证A矩阵的m >= n吗,tau矩阵是否要保证 n >= k?

是的,这里应该在加一些assert和对应的单测,我稍后补上,限制条件发现了一些小bug

householder_product当前实现方案支持了实值,torch中有对复数的支持吗?

是的,我当时直接用了paddle.norm(它暂时没支持复数实现),不过应该可以直接手动实现一下norm,我稍后试下再补上相应单测~

Copy link
Contributor

Choose a reason for hiding this comment

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

好的

A.shape[idx] == tau.shape[idx]
), "The input A must have the same batch dimensions with input tau.\n"

def _norm(x):
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

@cocoshe cocoshe Nov 16, 2023

Choose a reason for hiding this comment

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

这个函数有用到吗

噢这个_norm应该用不到,我稍后删掉(本来用来解决complex类型时候的norm用)
话说像现在这个ci是我这边的啥问题嘛?今天早上好像就改了下codestyle
https://xly.bce.baidu.com/paddlepaddle/paddle/newipipe/detail/9536759/job/24450158

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

@cocoshe cocoshe Nov 16, 2023

Choose a reason for hiding this comment

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

image
https://xly.bce.baidu.com/paddlepaddle/paddle/newipipe/detail/9538644/job/24453315
好怪为啥我的pre-commit本地可以pass,但是ci里面却报错

Copy link
Contributor

Choose a reason for hiding this comment

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

@cocoshe 昨天isort更新版本了,可以拉一下最新代码,然后重新precommit一下

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@cocoshe 昨天isort更新版本了,可以拉一下最新代码,然后重新precommit一下

okk~

Copy link
Contributor

@lxd-cumt lxd-cumt left a comment

Choose a reason for hiding this comment

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

LGTM

@@ -3724,3 +3724,133 @@ def cdist(
return paddle.linalg.norm(
x[..., None, :] - y[..., None, :, :], p=p, axis=-1
)


def householder_product(A, 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.

according to API naming conventions, enter the name of Tensor using x, and the rfc should also be modified synchronously

jeff41404
jeff41404 previously approved these changes Nov 22, 2023
Copy link
Contributor

@jeff41404 jeff41404 left a comment

Choose a reason for hiding this comment

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

LGTM

@luotao1
Copy link
Contributor

luotao1 commented Nov 22, 2023

请提交中文文档PR

python/paddle/tensor/linalg.py Outdated Show resolved Hide resolved
python/paddle/tensor/linalg.py Outdated Show resolved Hide resolved
cocoshe and others added 2 commits November 24, 2023 12:43
Co-authored-by: zachary sun <70642955+sunzhongkai588@users.noreply.github.com>
Co-authored-by: zachary sun <70642955+sunzhongkai588@users.noreply.github.com>
Copy link
Contributor

@sunzhongkai588 sunzhongkai588 left a comment

Choose a reason for hiding this comment

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

LGTM~
预览链接暂时挂了,辛苦在合入的第二天,直接去官网API文档的 develop 分支里看下,是否有格式问题~(肉眼看暂时没问题) @cocoshe

@cocoshe
Copy link
Contributor Author

cocoshe commented Nov 30, 2023

LGTM~
预览链接暂时挂了,辛苦在合入的第二天,直接去官网API文档的 develop 分支里看下,是否有格式问题~(肉眼看暂时没问题) @cocoshe

ok我到时候确认一下,之前自己本地vscode插件渲染看过一下

@luotao1 luotao1 changed the title 【Hackathon 5th No.37】为 Paddle 新增 householder_product API 【Hackathon 5th No.37】为 Paddle 新增 householder_product API -part Nov 30, 2023
@luotao1 luotao1 merged commit b991d83 into PaddlePaddle:develop Nov 30, 2023
28 of 30 checks passed
@cocoshe cocoshe deleted the householder_product_coco_dev branch December 1, 2023 02:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants