-
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
added floor_ frontend function #23293
Conversation
Thanks for contributing to Ivy! 😊👏 |
@AlexandraPosta Could you pls review my PR. Thanks! |
@@ -1,5 +1,5 @@ | |||
# local | |||
from ..math import * # noqa: F401 | |||
from ..math import exp, floor, lerp, reciprocal, sqrt # noqa: F401 |
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.
I would not change this line, keep the changes to the functions that you contribute to.
@@ -21,6 +21,12 @@ def exp_(x, name=None): | |||
return ivy.inplace_update(x, exp(x)) | |||
|
|||
|
|||
@with_supported_dtypes({"2.5.1 and below": ("float32", "float64")}, "paddle") |
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.
Please check the PaddlePaddle documentation for supported types.
# --- Main --- # | ||
# ------------ # | ||
|
||
|
||
# ceil_ |
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.
Again, please do not change code that it is not related to your functions
Close #22648