Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 4k
[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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
e8994e4b0443953c0b6692c3facb045ab7020f55dde47d78fcd15f1ae70f24dba609a889fd696e21dcc17f2a6025a3c47bc83a1a6d5749f3b46f70bf681dd3c73020dcf3ace82d0d48d766964514629ec2aa5607b2cf8cede7320d75d29c5385246a533d1985b75ee863e9ec972322d09b710cacbf49a585c3d8248e91290013dfda187e57bac9e507decc4dd26ff7afe3ce5c17c9f65cc4f30c55b78758d72e8b118934f0d11d7c44510594310732227d912720fb8e25f8c230b9ec33feb635c12709e7ff39840f7b045f39dba346caadf3a9f5117c0ca64b39f729f4f6725e2bf1fb03f5e26d0b585307e2ebacdc17adaFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
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? ContributorAuthor 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.