-
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 asin function and test for frontend #15802
Conversation
Hi @hello-fri-end ! Thanks! |
ivy_tests/test_ivy/test_frontends/test_paddle/test_tensor/test_paddle_math.py
Outdated
Show resolved
Hide resolved
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 Dtypes
Hey @VladZetta ! The documentation of dtypes_list = ["int8", "int16", "int32", "int64", "uint8", "float16", "float32", "float64", "complex64", "complex128", "bool",]
unsupported = []
supported = []
for dtype in dtypes_list:
try:
a = paddle.to_tensor([1.,2,3],dtype=dtype)
# insert the function you want to test in the following line
#paddle.normal(a,a)
paddle.asin(a)
supported.append(a.dtype)
except:
# use this to generate native dtype
unsupported.append(a.dtype)
# use this to generate string dtype
#unsupported.append(dtype)
print(unsupported)
print(supported) If you remove P.S: Could you please link the issue in the description that this PR closes. |
@hello-fri-end But tests are still failing. I don't get why you suggested using |
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.
The changes look good to me! The errors in the CI are unrelated to your PR. Thanks for the contribution :)
Thanks for helping out! So PR will be accepted? Because it seems like I need to send the link of PR to go further :) |
|
Frontend Task ChecklistIMPORTANT NOTICE 🚨:The Ivy Docs represent the ground truth for the task descriptions and this checklist should only be used as a supplementary item to aid with the review process. LEGEND 🗺:
CHECKS 📑:
|
Merged it 🚀 |
close #15799