-
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
[Dy2St][PIR] Hold backward program in GradNode #63694
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
3223492
add log
gouzil c1398d1
add log
gouzil 2a7f67d
add log
gouzil 733ac03
add handle
gouzil 5c90eac
remove breakpoint
gouzil 64a56b0
use `std::shared_ptr<::pir::Program>>`
gouzil b48eaa0
Merge branch 'develop' of github.com:gouzil/Paddle into fix_backward_…
gouzil 5534c70
Merge branch 'develop' of github.com:gouzil/Paddle into fix_backward_…
gouzil 8aba5ef
copy #58180
gouzil 23bbd58
clean log and open test
gouzil 31be3b9
Rollback execution sequence
gouzil e005597
rm log
gouzil 6277bc2
rm `class ProgramDesc`
gouzil 4972090
rm `test[key]`
gouzil 4bcbcc6
rm include
gouzil f5c6e0b
Merge branch 'develop' of github.com:gouzil/Paddle into fix_backward_…
gouzil 414fbda
fix jit.load for pir
gouzil 1e68e62
[ci][test] ignore test
gouzil cb6cdab
[ci][test] open `CompareOperantsTest`
gouzil a9946ee
[ci][test] ignore hook_utils
gouzil d83476b
[ci][test] ignore `dygraph_functions` and open `hook_utils`
gouzil 0bf8a6a
Merge branch 'develop' of github.com:gouzil/Paddle into fix_backward_…
gouzil 462cdf7
fix test_comp_eager
gouzil c7e9825
rollback `test_eager_prim.cc`
gouzil de20f12
fix
gouzil 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
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
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
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.
#56691 看样子是为了减小单测体积才这么搞的,这样改是不是又变回去了?
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.
是的,但是它们之间目前存在重复依赖的问题,会导致windows LNK2005错误,所以就先直接不拆分了
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.
重复依赖是指?如果这样的话,24 行是不是不需要了?还是说后续有计划优化这里呢?
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.
重复依赖可以看
13c89cf
,以及它的PR-CI-Windows-OPENBLAS,大概就是它俩都依赖了phi
导致重复依赖了。也参考了一些:paddle_test 的文档还是没能拆出来。最好的情况当然是拆分它,缩小体积,后续优化吧。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.
ok