-
Notifications
You must be signed in to change notification settings - Fork 269
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
【Hackathon 6th No.8】为 Paddle 新增FeatureAlphaDropout API #890
Conversation
|
||
参数表: | ||
|
||
- input: (Tensor) 输入的 tensor。维度至少大于2 |
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.
align with other API, suggest use 'x'.
# 四、对比分析 | ||
|
||
对比 PyTorch : | ||
- PyTorch 有 cpp 和 cuda 两种实现方法 |
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.
what is the different?
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.
准确点是:cpu和gpu两种写法
|
||
# 六、测试和验收的考量 | ||
|
||
- 覆盖 CPU 测试场景,暂不考虑GPU场景 |
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.
why CPU only?
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.
分三期做吧,一期是python接口实现,稳定后,二期,出于性能优化,实现一版cpp算子,三期,再优化实现一版cuda的gpu算子
# 六、测试和验收的考量 | ||
|
||
- 覆盖 CPU 测试场景,暂不考虑GPU场景 | ||
- 支持各种Tensor精度,FP32、FP64 等(待验证) |
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.
should support more date types
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.
收到
add rfcs