-
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
Close #21810 #22256
Close #21810 #22256
Conversation
Thanks for contributing to Ivy! 😊👏 |
Hey, @DevBhuyan could you please link the open issue in the PR description? |
Sure @yopknopix. I have updated the initial comment accordingly. I've included the open issue #21810 as well as the corresponding ToDo list. Thank you! |
Can you pull the latest changes from master? There seems to be some issue with the testing pipeline, no tests are being run. Thanks! |
Sure, I've synced my version of the fork again. I can see that one of the checks
I hope it helped. Please let me know if there is still an issue. Thank you 😇 |
@@ -5,6 +5,8 @@ | |||
from ivy.func_wrapper import handle_nestable | |||
from ivy.stateful.initializers import GlorotUniform, Zeros | |||
from ivy.stateful.module import Module | |||
from ivy.stateful.norms import LayerNorm | |||
import numpy as np |
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.
@DevBhuyan You should not use NumPy for this. Please use ivy functions.
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.
Oops! My bad, I'll change it. I assumed the other way😅
@DevBhuyan it seems for some reason the tests are not running at all. As for |
Oh I see, please let me know if there's something I need to do to help resolve the testing issue. Meanwhile I'll fix the code and commit again. Thank you 😇 |
Can you try creating a new branch on your fork from |
Sure! I'll do that then. |
Hey @DevBhuyan, we can close this PR. The tests seem to be working fine on the new one. |
Alright, thanks 😇. But I guess the new PR is being handled by someone else, is it? |
Closes #21810
#21810
From ToDo list: #14945
#14945
Update:
test_transformer_layer
in ~/ivy/ivy_tests/test_ivy/test_stateful/test_layers.pyThis is my first PR. I tried to make it as appropriate as possible. Please let me know if there are any modifications that you'd suggest. Thank you!😊