-
Notifications
You must be signed in to change notification settings - Fork 72
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
[WeeklyReport] xingmingyyj 2023.11.22~2023.12.05 #113
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
fcf1466
Add files via upload
xingmingyyj 4a1a27d
Update xingmingyyj2023.11.22~2023.12.05.md
xingmingyyj f1575e9
Update xingmingyyj2023.11.22~2023.12.05.md
kangguangli 6e12a0f
Update xingmingyyj2023.11.22~2023.12.05.md
xingmingyyj d7958e4
Update xingmingyyj2023.11.22~2023.12.05.md
xingmingyyj bc7fd0f
Update xingmingyyj2023.11.22~2023.12.05.md
xingmingyyj 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
39 changes: 39 additions & 0 deletions
39
WeeklyReports/01_xingmingyyj/xingmingyyj2023.11.22~2023.12.05.md
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
### 姓名 | ||
朱新明 | ||
### 实习项目 | ||
算子规范和ProgramTranslator功能优化 | ||
### 本周工作 | ||
#### 1.将算子单测修复issue发布社区 | ||
将算子单测修复issue发布社区,并认领任务 | ||
#### 2.修复 test_decayed_adagrad_op 单测 | ||
该单测是因为算子`decayed_adagrad`未注册导致的,注册后成功修复,PR已合入。 | ||
#### 3.修复 test_fake_quantize_op | ||
该单测涉及多个op,目前已经注册`fake_channel_wise_quantize_abs_max`,`fake_channel_wise_quantize_dequantize_abs_max`,`fake_quantize_abs_max`,`fake_quantize_dequantize_abs_max`,`fake_quantize_moving_average_abs_max`,`fake_quantize_range_abs_max`,`quantize_linear`等多个Op.主要遇到问题如下: | ||
1. moving_rate can not found in AttributeMap | ||
已经在新Ir下的算子定义中额外补充moving_rate | ||
2. tensor holder_ is null | ||
具体报错位置还在定位 | ||
3. 翻译op fetch_v2时找不到输入[x] | ||
具体原因还在定位 | ||
#### 4.修复 test_matrix_rank_op | ||
已定位问题,原因该是op根据`ctx`中是否存在`TolTensor`选择`kernel`,还未修复。 | ||
#### 5.修复 test_sgd_op_bf16 | ||
已定位问题,该op的情况和`test_unique`类似,参考PR59124适配`GetSgdExpectedKernelType`,还未修复。 | ||
#### 6.修复 test_tdm_sampler_op | ||
本地注册`tdm_sampler`之后,单测执行成功,但是PR CI-Coverage覆盖率未通过,目前确定是FLAG设定存在问题。 | ||
#### 7.修复 test_activation_op | ||
注册`soft_relu`后,执行成功,PR已合入 | ||
#### 8.修复 test_shuffle_batch_op | ||
注册`shuffle_batch`后本地执行成功,PR遇到了和test_tdm_sampler_op一样的问题 | ||
#### 9.修复 test_row_conv_op | ||
注册`row_conv`后执行成功,已提交PR | ||
#### 10.修复 test_tril_triu_op | ||
注册`tril_triu`后执行成功,已提交PR | ||
|
||
### 下周工作 | ||
#### 1.根据推全名单继续修复Op单测 | ||
#### 2.修复分布式算子c_softmax_with_cross_entropy相关单测 | ||
#### 3.统计需要修复的分布式算子单测并区分修复难度 | ||
#### 4.修复PIR OpTest: not found问题 | ||
### 导师点评 | ||
新明本周积极推进算子推全工作,认真负责,对于发现的问题能认真展开分析,确认问题原因,希望继续保持这种积极的态度,期待未来取得更多成果。 |
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.
补充下分布式算子的相关工作。
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.
已补充