-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
【PaddlePaddle Hackathon 2】29 新增 PixelUnshuffle 组网 API #40774
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
PR格式检查通过,你的PR将接受Paddle专家以及开源社区的review,请及时关注PR动态。 |
6a2e8ae
to
d5e8854
Compare
… pixel_unshuffle
…into pixel_unshuffle
在PR被review前请先通过CI噢~ |
Sorry to inform you that 3732520's CIs have passed for more than 7 days. To prevent PR conflicts, you need to re-run all CIs manually. |
Since you haven't replied for more than a year, we have closed this issue/pr. |
很抱歉,经过我们的反复讨论,你的PR暂未达到合入标准,请阅读飞桨原生算子开发规范,你可以重新提交新的PR,我们先将此PR关闭,感谢你的贡献。 |
PR types
New features
PR changes
APIs
Describe
完成第二期第29项目开发任务: #40304
新增了API: paddle.nn.PixelUnshuffle和paddle.nn.functional.pixel_unshuffle
主要功能是实现了PixelShuffle的逆运算, 将[N, C, Hr, Wr] 经过reshape和transpose操作重塑为[N,C*r^2,H, W]的形状,也支持NHWC格式输入。