-
Notifications
You must be signed in to change notification settings - Fork 27.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
Fix for Neuron #30259
Merged
michaelbenayoun
merged 16 commits into
huggingface:main
from
michaelbenayoun:fix_for_neuron
May 2, 2024
Merged
Fix for Neuron #30259
Changes from 6 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
d32aee0
Fix _update_causal_mask for Neuron
michaelbenayoun 9429cd9
Remove the use of Ellipsis
michaelbenayoun 5f6526c
Update warning message
michaelbenayoun 32be4b7
Fixup
michaelbenayoun 9e72932
Fix
michaelbenayoun 3198401
Fix _update_causal_mask for Neuron, it works
michaelbenayoun 446cb62
Fix FX when defining custom leaf module
michaelbenayoun 65ebf45
Partial fix
michaelbenayoun 1483dbb
Fix
michaelbenayoun 206b007
Merge branch 'main' into fix_for_neuron
michaelbenayoun c991c89
[WIP] use metaclasses instead
michaelbenayoun c8362c0
Works
michaelbenayoun 2eae3e0
Cleanup
michaelbenayoun 8ed56cb
Fix
michaelbenayoun 0d547f4
Removing comment
michaelbenayoun 2a24b86
nit
michaelbenayoun File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
you risk overflows here no?
If you have torch_min + torch_min -> produced inf
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.
+1 - we should try to avoid this. I think it's technically OK because of the masked_fill below
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.
Even if you overflow it's ok because the next line you create a boolean tensor:
padding_mask = padding_mask == 0
. So in the end you get the same result as long as the elements in the tensor that need to be zero end up having this value.This code, which overflows in the context of the function:
produces the same output as this code, which does not overflow: