Skip to content
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 padding in tensor packing #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

shkarupa-alex
Copy link

If "other" size is already dividable by 8 (e.g. 64), original code will pad it by 8: 8 - 64 % 8 = 8 - 0 = 8 So we need one more "mod"

If "other" size is already dividable by 8 (e.g. 64), original code will pad it by 8: 8 - 64 % 8 = 8 - 0 = 8
So we need one more "mod"
@PgLoLo
Copy link
Owner

PgLoLo commented Jul 24, 2024

If "other" size is already dividable by 8 (e.g. 64), original code will pad it by 8: 8 - 64 % 8 = 8 - 0 = 8 So we need one more "mod"

Case is covered by the surrounding if, so numel would never be dividable by 8 in the case we reached padding, no?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants