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
Adding resize(PadOp) vectorization analysis #3321
base: main
Are you sure you want to change the base?
Adding resize(PadOp) vectorization analysis #3321
Changes from all 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
a42b507
07fecdc
69350a0
6b8527c
8236b8a
5ed2139
6c6bbde
fa64d0c
7cfa250
62cc45d
8cce0fd
c02ad8c
28dd1a1
5f996fc
e1558c8
bd2161e
b36b04c
04c9db0
7816a93
7836b0f
3e29156
3f58e68
274bd98
03cb4a7
2f43e0d
d4f7680
de83f9d
7170a84
803a95b
a67fb57
11cd4d1
65aa77d
1f75d7a
4c92371
2765bb7
3ec2a6b
d2864ab
1b4f2c1
0e4e61f
4d4f747
fc3b28f
85517b8
69469c5
cc69971
c46e50e
a63bb67
974c85b
4c7366b
2a1ff76
7b71934
d019f9a
e8033c1
6848dad
5299327
48cafba
61d7c3f
688b99c
67beb5c
d64ea9c
d9b3cc8
a4743bf
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.
Is it possible to have duplicates?
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.
I don't think so. since we have
uses_
as private and addUse does skip duplicatesFuser/csrc/ir/base_nodes.cpp
Lines 96 to 102 in a5022da
But I'm a bit scared by just leaving it not checked, since it's only a
std::vector
and it's up to the implementation to change that.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.
If so, let's make it an error if a duplicate is found.
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.
switched. I'll kick off the CI to see if there's any surprises. 🤞