[zero-dim] Support 0-d for kthvalue and mode#49340
Merged
zhwesky2010 merged 10 commits intoJan 6, 2023
Merged
Conversation
|
你的PR提交成功,感谢你对开源项目的贡献! |
zhwesky2010
reviewed
Jan 2, 2023
2ca67bf to
e08ba7f
Compare
Contributor
Author
kthvalue的部分:
mode的部分:
|
zhwesky2010
reviewed
Jan 5, 2023
|
|
||
| out = paddle.kthvalue(x, 1) | ||
| out[0].backward() | ||
| self.assertEqual(out[0].shape, []) |
Contributor
There was a problem hiding this comment.
动态图还需要测下反向grad的shape,把具体值也测下吧,因为比较固定
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR types
New features
PR changes
OPs
Describe
This PR is same with #49122 and fix the bug on Windows.
The original PR will met unittest error on Windows and already been reverted. This is because the flag
is_runtimeis different with Linux.