-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
【inplace api】batch add inpalce api paddle.abs_, paddle.addmm_, paddle.sin_ ... #55078
【inplace api】batch add inpalce api paddle.abs_, paddle.addmm_, paddle.sin_ ... #55078
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
python/paddle/tensor/math.py
Outdated
@inplace_apis_in_dygraph_only | ||
def addmm_(input, x, y, beta=1.0, alpha=1.0, name=None): | ||
""" | ||
Inplace version of ``scale`` API, the output Tensor will be inplaced with input ``x``. |
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.
Inplace version of addmm
API?
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.
changed to addmm
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.
LGTM for docs
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.
LGTM
* batch add inpalce api * fix inplace fn generate * add test for new inpalce api * fix typro * fix typro * fix typro * fix test error * fix atan2 * remove atan2 * auto genereate inpalce api * fix inplace generate fn error * fix windows error * fix test error * fix test error * fix windows ci error * fix test error * fix test_error * fix test error * fix eigen aliasing error in inplace * remove elementwise_pow inplace * fix doc error * fix test error
* batch add inpalce api * fix inplace fn generate * add test for new inpalce api * fix typro * fix typro * fix typro * fix test error * fix atan2 * remove atan2 * auto genereate inpalce api * fix inplace generate fn error * fix windows error * fix test error * fix test error * fix windows ci error * fix test error * fix test_error * fix test error * fix eigen aliasing error in inplace * remove elementwise_pow inplace * fix doc error * fix test error
PR types
Others
PR changes
APIs
Description
Pcard-72375
add inplace api as follow