-
Notifications
You must be signed in to change notification settings - Fork 89
[WeeklyReport] Manfredss 2026.01.05~2026.01.18 #529
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
Open
Manfredss
wants to merge
2
commits into
PFCCLab:main
Choose a base branch
from
Manfredss:Manfredss/WeeklyReport
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
28 changes: 28 additions & 0 deletions
28
WeeklyReports/hackathon_10th/2_Manfredss/2026.01.05~2026.01.18.md
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 |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| ### 姓名 | ||
| 戚文斐 | ||
|
|
||
| ### 实习项目 | ||
| Paddle API 兼容性增强 | ||
|
|
||
| ### 本周工作 | ||
| 1. **API C++ 下沉与文档修复** [PR #77078](https://github.com/PaddlePaddle/Paddle/pull/77078) | ||
| - 完成了 paddle.inverse 算子的 C++ 下沉工作。 | ||
| - 修复了相关文档和 API 签名的冲突,解决了 _paddle_docs.py 中的冲突问题。 | ||
|
|
||
| 2. **参数别名支持与代码清理** | ||
| - **paddle.deg2rad** [PR #77168](https://github.com/PaddlePaddle/Paddle/pull/77168): 实现了参数别名支持,使其符合 API 兼容性规范。 | ||
| - **paddle.lerp** [PR #77170](https://github.com/PaddlePaddle/Paddle/pull/77170): 实现了 `paddle.lerp` 的参数别名支持;将算子下沉至 C++ 实现,支持动态图模式调用,并基于 Scale 算子优化了底层实现逻辑。 | ||
| - **paddle.randint** [PR #77194](https://github.com/PaddlePaddle/Paddle/pull/77194): 为 paddle.randint 增加了参数别名装饰器,并添加了相应的单元测试,增强了接口的兼容性。 | ||
| - **paddle.nn.functional.relu / paddle.nn.functional.leaky_relu** [PR #77300](https://github.com/PaddlePaddle/Paddle/pull/77300): 支持 relu、leaky_relu 及其 inplace 版本, 同时修复了 relu_、leaky_relu_ 的参数别名,对齐 PyTorch 接口标准,提升了模型迁移的便利性。 | ||
|
|
||
| 3. **新 API 开发:paddle.addcmul** [PR #77333](https://github.com/PaddlePaddle/Paddle/pull/77333) | ||
| - 完整实现了 paddle.addcmul 算子,支持对两个张量进行逐元素乘法后与标量相乘并加到输入张量上。 | ||
| - 包含了 Forward 和 Backward 的 C++ Kernel 实现(CPU/GPU)。 | ||
| - 完成了 PIR(Paddle IR)的符号化形状推断支持。 | ||
| - 封装了 Python API 接口,并添加了包含 52 个测试用例的完整测试套件,覆盖了动静图、广播机制及多种数据类型。 | ||
|
|
||
| ### 下周工作 | ||
| 1. 修复 addcmul、deg2rad、randint 和 inverse api 的 CI 问题 | ||
| 2. 增加 addcmul paconvert 的测试用例 | ||
|
|
||
| ### 导师点评 | ||
Oops, something went wrong.
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.
戚文斐近期完成了多个API的兼容性开发,包括装饰器支持、C++下沉、新增API等多种情形的开发,进展较快,同时对飞桨相关代码也有了进一步的学习理解。后续继续加油,主动学习探索,加深对飞桨API/算子运行机制的理解,为飞桨贡献更多代码。另外在工作中注意保持工作的完整性,确保每项工作都可以顺利收尾。