-
Notifications
You must be signed in to change notification settings - Fork 3.8k
[ONNX][Relay] Add dynamic unsqueeze / expand_dims op #9039
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
Changes from all commits
e8994e4
b044395
3c0b669
2c3facb
045ab70
20f55dd
e47d78f
cd15f1a
e70f24d
ba609a8
89fd696
e21dcc1
7f2a602
5a3c47b
c83a1a6
d5749f3
b46f70b
f681dd3
c73020d
cf3ace8
2d0d48d
7669645
14629ec
2aa5607
b2cf8ce
de7320d
75d29c5
385246a
533d198
5b75ee8
63e9ec9
72322d0
9b710ca
cbf49a5
85c3d82
48e9129
0013dfd
a187e57
bac9e50
7decc4d
d26ff7a
fe3ce5c
17c9f65
cc4f30c
55b7875
8d72e8b
118934f
0d11d7c
4451059
4310732
227d912
720fb8e
25f8c23
0b9ec33
feb635c
12709e7
ff39840
f7b045f
39dba34
6caadf3
a9f5117
c0ca64b
39f729f
4f6725e
2bf1fb0
3f5e26d
0b58530
7e2ebac
dc17ada
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5015,16 +5015,13 @@ def verify_eyelike(indata): | |
| "test_training_dropout_mask", | ||
| "test_training_dropout_zero_ratio", | ||
| "test_training_dropout_zero_ratio_mask", | ||
| "test_unique_sorted_with_axis", | ||
| "test_unique_sorted_with_axis_3d", | ||
| "test_unique_sorted_with_negative_axis", | ||
| "test_unsqueeze_axis_0", | ||
| "test_unsqueeze_axis_1", | ||
| "test_unsqueeze_axis_2", | ||
| "test_unsqueeze_negative_axes", | ||
| # These unsqueeze tests work, but take 2+ hrs to run | ||
| "test_unsqueeze_three_axes", | ||
| "test_unsqueeze_two_axes", | ||
| "test_unsqueeze_unsorted_axes", | ||
|
Comment on lines
5019
to
5021
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add these to device-specific skips below?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm actually all targets are really slow it seems. The LLVM target takes > 3 minutes for |
||
| "test_unique_sorted_with_axis", | ||
| "test_unique_sorted_with_axis_3d", | ||
| "test_unique_sorted_with_negative_axis", | ||
| "test_upsample_nearest", | ||
| ] | ||
|
|
||
|
|
||
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.
Again, I think this should be doable as one call?
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.
This might be doable if we change the interface to accept a list of sorted axis but it'll be quite a bit more complicated.