-
Notifications
You must be signed in to change notification settings - Fork 25.6k
[PyTorch] Extract parseOperator() into a standalone source file #65179
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
💊 CI failures summary and remediationsAs of commit a0c7092 (more details on the Dr. CI page): 💚 💚 Looks good so far! There are no failures yet. 💚 💚 This comment was automatically generated by Dr. CI (expand for details).Follow this link to opt-out of these comments for your Pull Requests.Please report bugs/suggestions to the (internal) Dr. CI Users group. |
This pull request was exported from Phabricator. Differential Revision: D31006555 |
f8c35cf
to
55678b8
Compare
This pull request was exported from Phabricator. Differential Revision: D31006555 |
55678b8
to
c370c3b
Compare
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.
LGTM. A couple of inline comments. The version 3 is going to be deprecated, please use the current version number.
This pull request was exported from Phabricator. Differential Revision: D31006555 |
c370c3b
to
1a3a6d4
Compare
1a3a6d4
to
cf2d24c
Compare
This pull request was exported from Phabricator. Differential Revision: D31006555 |
1 similar comment
This pull request was exported from Phabricator. Differential Revision: D31006555 |
cf2d24c
to
08e6d29
Compare
…rch#65179) Summary: Pull Request resolved: pytorch#65179 This is following up this PR: pytorch#61862. The purpose is to modularize operator parsing so that it can be used as needed without pulling the whole `import.cpp` into build. Test Plan: Added a unit test in `test_lite_predictor.cpp` called `ParseOperators`, similar to `ParseBytecode`. Reviewed By: iseeyuan Differential Revision: D31006555 fbshipit-source-id: 6a6980418ea9f75a7f107e8eea5812526e44ca43
This pull request was exported from Phabricator. Differential Revision: D31006555 |
08e6d29
to
a0c7092
Compare
Codecov Report
@@ Coverage Diff @@
## master #65179 +/- ##
==========================================
- Coverage 66.35% 66.27% -0.08%
==========================================
Files 734 734
Lines 93784 93784
==========================================
- Hits 62227 62158 -69
- Misses 31557 31626 +69 |
This pull request has been merged in eaf85fa. |
Summary: This is following up this PR: #61862. The purpose is to modularize operator parsing so that it can be used as needed without pulling the whole
import.cpp
into build.Test Plan: Added a unit test in
test_lite_predictor.cpp
calledParseOperators
, similar toParseBytecode
.Differential Revision: D31006555