-
Notifications
You must be signed in to change notification settings - Fork 6k
【Hackathon 10th Spring No.51】support gcc15 #79199
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
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
5d9e162
support gcc15
gouzil b9c350a
feat update coverage ci and add install gcc15
gouzil d6ae12e
Merge branch 'develop' of github.com:gouzil/Paddle into feat/support_…
gouzil 59e4001
ci rm git build
gouzil eb40c6d
fix Coverage git
gouzil 6ae79bc
Merge branch 'develop' of github.com:gouzil/Paddle into feat/support_…
gouzil 00bcc74
update docker file
gouzil 5e4d158
clean docker py3.9
gouzil 9c80e54
Fix coverage Docker GCC 15 PPA setup
gouzil a5acea8
fix fa gcc 15 build error
gouzil d8413d9
Merge remote-tracking branch 'upstream/develop' into feat/support_gcc15
gouzil e68f108
clean include
gouzil 8c4fac7
Revert coverage CI dockerfile changes
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 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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,6 +23,7 @@ | |
| */ | ||
|
|
||
| #include <cassert> | ||
| #include <cstdint> | ||
| #include <map> | ||
| #include <memory> | ||
| #include <string> | ||
|
|
||
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
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
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
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
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.
这里把
PyInterpreterFrameProxy_New(frame)返回的新引用显式作为PyObject*传给 callback,但PyObject_CallOneArg不会接管参数引用,后续成功和异常路径也没有释放frame_proxy。SOT 打开后每个被拦截的 frame 都会走这里,长时间运行会持续泄漏 proxy 对象。请在 callback 返回后统一释放 Py3.11+ 分支创建的参数引用,再进入result == NULL的错误处理,例如: