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.
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
Lowering vectorized pad #3261
Lowering vectorized pad #3261
Changes from 46 commits
8f9708f
54826aa
e54938c
2bc3c7a
d04e8c3
d0addc4
490fdbe
51c3022
1158ef0
fdc6a9a
9a6c03a
a9d16ce
3401119
5d05284
b6587ee
28decac
3e53feb
ad61ecb
a8edc56
9cdeb64
09a2aee
895d0bf
7a15e22
a6e8fb1
fe0f263
baa7b09
ca5ced1
e0492d3
b528429
a23e010
57b90d1
7a976c7
f11d662
5a83fc6
39f83f7
07eafd1
986b361
7409913
76cbcd8
5f996fc
803a95b
a67fb57
11cd4d1
65aa77d
1f75d7a
4c92371
3ec2a6b
d2864ab
1b4f2c1
0e4e61f
4d4f747
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Can you add some comments about the expectation? IIUC, only
in2
is allowed to be vectorized, but technically speaking, it should be possible to have vectorized loads in bothin2
andin3
, right? Not sure if it's worthwhile to allow that as well, although the required change seems minimal.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.
Yes we can have in2 / in3 as TensorViews, I'm trying to add that since @zasdfgbnm mentioned about having a
where
test.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.
Should we have a test for vectorizing where without using pad?
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.
good call. almost forgot that we have
where
directly 🤕