-
Notifications
You must be signed in to change notification settings - Fork 607
Dynamic Conv1d + W2L #2976
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
Dynamic Conv1d + W2L #2976
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/2976
Note: Links to docs will display an error until the docs builds have been completed. ❌ 5 New FailuresAs of commit b121bc3 with merge base 49d1f02 ( NEW FAILURES - The following jobs have failed:
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
This pull request was exported from Phabricator. Differential Revision: D55815092 |
This pull request was exported from Phabricator. Differential Revision: D55815092 |
Summary: Pull Request resolved: pytorch#2976 Conv1d uses static reshape operator, in order to convert 3d tensor to 4d tensor so xnnpack can operate using conv2d. For dynamism, reshape only accepts a single dynamic dimension, which is denoted as dynamic with a dim of 0. Reviewed By: digantdesai Differential Revision: D55815092
dea37ce
to
badff43
Compare
This pull request was exported from Phabricator. Differential Revision: D55815092 |
badff43
to
6321c5e
Compare
Summary: Pull Request resolved: pytorch#2976 Conv1d uses static reshape operator, in order to convert 3d tensor to 4d tensor so xnnpack can operate using conv2d. For dynamism, reshape only accepts a single dynamic dimension, which is denoted as dynamic with a dim of 0. Reviewed By: digantdesai Differential Revision: D55815092
This pull request was exported from Phabricator. Differential Revision: D55815092 |
Summary: Pull Request resolved: pytorch#2976 Conv1d uses static reshape operator, in order to convert 3d tensor to 4d tensor so xnnpack can operate using conv2d. For dynamism, reshape only accepts a single dynamic dimension, which is denoted as dynamic with a dim of 0. Reviewed By: digantdesai Differential Revision: D55815092
6321c5e
to
cfa6756
Compare
Summary: Pull Request resolved: pytorch#2976 Conv1d uses static reshape operator, in order to convert 3d tensor to 4d tensor so xnnpack can operate using conv2d. For dynamism, reshape only accepts a single dynamic dimension, which is denoted as dynamic with a dim of 0. Reviewed By: digantdesai, kirklandsign Differential Revision: D55815092
cfa6756
to
add2311
Compare
This pull request was exported from Phabricator. Differential Revision: D55815092 |
add2311
to
584267f
Compare
Summary: Conv1d uses static reshape operator, in order to convert 3d tensor to 4d tensor so xnnpack can operate using conv2d. For dynamism, reshape only accepts a single dynamic dimension, which is denoted as dynamic with a dim of 0. Reviewed By: digantdesai, kirklandsign Differential Revision: D55815092
This pull request was exported from Phabricator. Differential Revision: D55815092 |
Summary: Conv1d uses static reshape operator, in order to convert 3d tensor to 4d tensor so xnnpack can operate using conv2d. For dynamism, reshape only accepts a single dynamic dimension, which is denoted as dynamic with a dim of 0. Reviewed By: digantdesai, kirklandsign Differential Revision: D55815092
584267f
to
a457e42
Compare
This pull request was exported from Phabricator. Differential Revision: D55815092 |
Summary: Conv1d uses static reshape operator, in order to convert 3d tensor to 4d tensor so xnnpack can operate using conv2d. For dynamism, reshape only accepts a single dynamic dimension, which is denoted as dynamic with a dim of 0. Reviewed By: digantdesai, kirklandsign Differential Revision: D55815092
a457e42
to
b121bc3
Compare
This pull request was exported from Phabricator. Differential Revision: D55815092 |
This pull request has been merged in 7b375fe. |
Summary:
Conv1d uses static reshape operator, in order to convert 3d tensor to 4d tensor so xnnpack can operate using conv2d.
For dynamism, reshape only accepts a single dynamic dimension, which is denoted as dynamic with a dim of 0.
Reviewed By: digantdesai
Differential Revision: D55815092