-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
use cumprod fix bug of prod_grad #64127
Merged
Merged
Changes from 39 commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
0ad4663
add reverse and exclusive
YibinLiu666 7f55b52
support reverse and exclusive
YibinLiu666 9124b8b
fix inplace test
YibinLiu666 7f384a0
fix make on xpu
YibinLiu666 a47299d
remove print
YibinLiu666 474b150
update test time
YibinLiu666 7b0db15
fix prod_grad use cumprod
YibinLiu666 830a180
add 1-5D test
YibinLiu666 8f02aa8
speed up test
YibinLiu666 4c21d9a
mul out_grad
YibinLiu666 d5b1193
update test
YibinLiu666 5256ec2
Update CMakeLists.txt
YibinLiu666 2ceb862
update op_version
YibinLiu666 8934be5
Merge branch 'cumprod' of https://github.com/YibinLiu666/Paddle into …
YibinLiu666 db8288c
Merge branch 'cumprod' of https://github.com/YibinLiu666/Paddle into …
YibinLiu666 2cba65f
update detail.h
YibinLiu666 60d57aa
update composite
YibinLiu666 1638c6a
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
YibinLiu666 cd62a38
update detail.h
YibinLiu666 7fc46d2
stage
YibinLiu666 b62e36a
update test
YibinLiu666 c117324
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
YibinLiu666 bb0881a
only test on gpu
YibinLiu666 7f07af7
update details.h
YibinLiu666 5d41aa3
CI
YibinLiu666 f4d31a5
Update composite_backward_api.h
YibinLiu666 9ca9991
Update details.h
YibinLiu666 7b7acbe
update test
YibinLiu666 8efad95
update
YibinLiu666 236ba87
Update test_reduce_op.py
YibinLiu666 023de58
fix cumprod cpu bug
YibinLiu666 5c87a28
update test
YibinLiu666 30a3604
update test
YibinLiu666 52ee9c9
update
YibinLiu666 1a7827c
update
YibinLiu666 6678b74
ci
YibinLiu666 cf549b4
ci
YibinLiu666 2af40a2
remove comment
YibinLiu666 08a5aae
CI
YibinLiu666 fbc6487
Your commit message
YibinLiu666 e901443
CI
YibinLiu666 a51c237
update
YibinLiu666 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,7 @@ | |
- pad | ||
- sqrt | ||
- cumsum | ||
- cumprod | ||
- put_along_axis | ||
- sin | ||
- cos | ||
|
This file contains 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
This file contains 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
This file contains 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
建议加上判断:
if (x_data == out_ptr)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done