-
Notifications
You must be signed in to change notification settings - Fork 751
Add pass to convert kwargs to args + populate optional args. #10857
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
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/10857
Note: Links to docs will display an error until the docs builds have been completed. ✅ You can merge normally! (1 Unrelated Failure)As of commit 15514d3 with merge base 24789c8 ( BROKEN TRUNK - The following job failed but were present on the merge base:👉 Rebase onto the `viable/strict` branch to avoid these failures
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
|
This pull request was exported from Phabricator. Differential Revision: D74510388 |
28a6056 to
1f5ab1c
Compare
…#10857) Summary: Adds a pass to convert kwargs to args and populate optional args. Reviewed By: zonglinpeng Differential Revision: D74510388
|
This pull request was exported from Phabricator. Differential Revision: D74510388 |
…#10857) Summary: Pull Request resolved: pytorch#10857 Adds a pass to convert kwargs to args and populate optional args. Reviewed By: zonglinpeng Differential Revision: D74510388
1f5ab1c to
5b41f97
Compare
…#10857) Summary: Adds a pass to convert kwargs to args and populate optional args. Reviewed By: zonglinpeng Differential Revision: D74510388
5b41f97 to
246c300
Compare
|
This pull request was exported from Phabricator. Differential Revision: D74510388 |
…#10857) Summary: Pull Request resolved: pytorch#10857 Adds a pass to convert kwargs to args and populate optional args. Reviewed By: zonglinpeng Differential Revision: D74510388
246c300 to
7bf3747
Compare
…#10857) Summary: Adds a pass to convert kwargs to args and populate optional args. For example: ``` # Before: slice_copy.Tensor(x, 1, end=3) # dim = 1, start is optional = none, end is a kwarg = 3 # After: slice_copy.Tensor(x, 1, None, 3, 1) ``` Reviewed By: zonglinpeng Differential Revision: D74510388
7bf3747 to
770a26a
Compare
|
This pull request was exported from Phabricator. Differential Revision: D74510388 |
770a26a to
f0771b2
Compare
…#10857) Summary: Adds a pass to convert kwargs to args and populate optional args. For example: ``` # Before: slice_copy.Tensor(x, 1, end=3) # dim = 1, start is optional = none, end is a kwarg = 3 # After: slice_copy.Tensor(x, 1, None, 3, 1) ``` Reviewed By: zonglinpeng Differential Revision: D74510388
|
This pull request was exported from Phabricator. Differential Revision: D74510388 |
…#10857) Summary: Pull Request resolved: pytorch#10857 Adds a pass to convert kwargs to args and populate optional args. For example: ``` # Before: slice_copy.Tensor(x, 1, end=3) # dim = 1, start is optional = none, end is a kwarg = 3 # After: slice_copy.Tensor(x, 1, None, 3, 1) ``` Reviewed By: zonglinpeng Differential Revision: D74510388
f0771b2 to
672e778
Compare
Summary: Add call_getitem support in graph builder. Differential Revision: D74817590
…#10857) Summary: Adds a pass to convert kwargs to args and populate optional args. For example: ``` # Before: slice_copy.Tensor(x, 1, end=3) # dim = 1, start is optional = none, end is a kwarg = 3 # After: slice_copy.Tensor(x, 1, None, 3, 1) ``` Reviewed By: zonglinpeng Differential Revision: D74510388
672e778 to
f772a62
Compare
…#10857) Summary: Pull Request resolved: pytorch#10857 Adds a pass to convert kwargs to args and populate optional args. For example: ``` # Before: slice_copy.Tensor(x, 1, end=3) # dim = 1, start is optional = none, end is a kwarg = 3 # After: slice_copy.Tensor(x, 1, None, 3, 1) ``` Reviewed By: zonglinpeng Differential Revision: D74510388
|
This pull request was exported from Phabricator. Differential Revision: D74510388 |
f772a62 to
15514d3
Compare
Summary: Adds a pass to convert kwargs to args and populate optional args.
Differential Revision: D74510388