-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Fix AttributeError
in WrappedFunctionNode.forward
#8397
Conversation
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.
LTGM! It's correction omission among development, thx. (but the line is over 79 char..?)
Jenkins, test this please! |
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 too! 👍
Jenkins CI test (for commit 3d45e5b, target branch master) failed with status FAILURE. |
Oops, Sorry. I didn't noticed that because I made the PR on browser 😅. |
Hmm strange. chainer/scripts/ci/travis/steps.sh Lines 118 to 126 in b35ce74
|
Should be checked with: #8400 |
Checked the code under onnx_chainer/ with CI and now correctly found: |
Sure! |
Jenkins, test this please! |
Jenkins CI test (for commit e1a66b6, target branch master) failed with status FAILURE. |
Jenkins, test this please |
Jenkins CI test (for commit e1a66b6, target branch master) failed with status FAILURE. |
Jenkins, test this please! |
Jenkins CI test (for commit e1a66b6, target branch master) succeeded! |
AttributeError
in WrappedFunctionNode.forward
Jenkins CI test (for commit e1a66b6, target branch master) succeeded! |
This PR fixes
AttributeError
inonnx_chainer.replace_func.WrappedFunctionNode.forward
.The
self.name
is not defined and I assume that this is a mistake ofself.custom_function_node_name
.