Closed
Conversation
Contributor
|
@PaliC has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
Codecov Report
@@ Coverage Diff @@
## main #111 +/- ##
=======================================
Coverage 88.86% 88.86%
=======================================
Files 65 65
Lines 3869 3869
=======================================
Hits 3438 3438
Misses 431 431
Help us with your feedback. Take ten seconds to tell us how you rate us. |
Contributor
|
@PaliC has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
PaliC
added a commit
that referenced
this pull request
Aug 2, 2022
Summary: This change points multipy::runtime to use multipy.package instead of torch.package by copying `_deploy.py` (which is used in order to pass objects in and out of interpreters) into multipy as well as making the neccessary changes to allow `multipy::runtime` to access `multipy.package` and `_deploy.py`. Pull Request resolved: #111 Reviewed By: d4l3k Differential Revision: D38337551 Pulled By: PaliC fbshipit-source-id: 0ca53ea57c3cb46fba70465cb671ffe7e9e68785
Contributor
|
This pull request was exported from Phabricator. Differential Revision: D38337551 |
Summary: This change points multipy::runtime to use multipy.package instead of torch.package by copying `_deploy.py` (which is used in order to pass objects in and out of interpreters) into multipy as well as making the neccessary changes to allow `multipy::runtime` to access `multipy.package` and `_deploy.py`. Pull Request resolved: #111 Reviewed By: d4l3k Differential Revision: D38337551 Pulled By: PaliC fbshipit-source-id: 8ec7316225284bd0adc2a9c9bdbe82c5d15bb295
PaliC
added a commit
to PaliC/pytorch
that referenced
this pull request
Aug 2, 2022
Summary: This change points multipy::runtime to use multipy.package instead of torch.package by copying `_deploy.py` (which is used in order to pass objects in and out of interpreters) into multipy as well as making the neccessary changes to allow `multipy::runtime` to access `multipy.package` and `_deploy.py`. X-link: meta-pytorch/multipy#111 Reviewed By: d4l3k Differential Revision: D38337551 Pulled By: PaliC fbshipit-source-id: 44faa10a8b995b47f257d6fe20d9caa335237c9e
Contributor
|
This pull request was exported from Phabricator. Differential Revision: D38337551 |
pytorchmergebot
pushed a commit
to pytorch/pytorch
that referenced
this pull request
Aug 3, 2022
Summary: This change points multipy::runtime to use multipy.package instead of torch.package by copying `_deploy.py` (which is used in order to pass objects in and out of interpreters) into multipy as well as making the neccessary changes to allow `multipy::runtime` to access `multipy.package` and `_deploy.py`. X-link: meta-pytorch/multipy#111 Reviewed By: d4l3k Differential Revision: D38337551 Pulled By: PaliC Pull Request resolved: #82690 Approved by: https://github.com/d4l3k
facebook-github-bot
pushed a commit
to pytorch/pytorch
that referenced
this pull request
Aug 3, 2022
Summary: Pull Request resolved: #82690 This change points multipy::runtime to use multipy.package instead of torch.package by copying `_deploy.py` (which is used in order to pass objects in and out of interpreters) into multipy as well as making the neccessary changes to allow `multipy::runtime` to access `multipy.package` and `_deploy.py`. X-link: meta-pytorch/multipy#111 Reviewed By: d4l3k Differential Revision: D38337551 Pulled By: PaliC fbshipit-source-id: dec35e0f07efa1c989f6356dd073dfddd12a186e
anirbanr-fb-r2p
pushed a commit
to anirbanr-fb-r2p/multipy
that referenced
this pull request
Aug 11, 2022
Summary: X-link: pytorch/pytorch#82690 This change points multipy::runtime to use multipy.package instead of torch.package by copying `_deploy.py` (which is used in order to pass objects in and out of interpreters) into multipy as well as making the neccessary changes to allow `multipy::runtime` to access `multipy.package` and `_deploy.py`. Pull Request resolved: meta-pytorch#111 Reviewed By: d4l3k Differential Revision: D38337551 Pulled By: PaliC fbshipit-source-id: dec35e0f07efa1c989f6356dd073dfddd12a186e
anirbanr-fb-r2p
pushed a commit
to anirbanr-fb-r2p/multipy
that referenced
this pull request
Aug 11, 2022
Use multipy.package in `multipy/runtime` (#82690) Summary: X-link: pytorch/pytorch#82690 This change points multipy::runtime to use multipy.package instead of torch.package by copying `_deploy.py` (which is used in order to pass objects in and out of interpreters) into multipy as well as making the neccessary changes to allow `multipy::runtime` to access `multipy.package` and `_deploy.py`. Pull Request resolved: meta-pytorch#111 Reviewed By: d4l3k Differential Revision: D38337551 Pulled By: PaliC fbshipit-source-id: dec35e0f07efa1c989f6356dd073dfddd12a186e
anirbanr-fb-r2p
pushed a commit
to anirbanr-fb-r2p/multipy
that referenced
this pull request
Aug 11, 2022
Use multipy.package in `multipy/runtime` (#82690) Summary: X-link: pytorch/pytorch#82690 This change points multipy::runtime to use multipy.package instead of torch.package by copying `_deploy.py` (which is used in order to pass objects in and out of interpreters) into multipy as well as making the neccessary changes to allow `multipy::runtime` to access `multipy.package` and `_deploy.py`. Pull Request resolved: meta-pytorch#111 Reviewed By: d4l3k Differential Revision: D38337551 Pulled By: PaliC fbshipit-source-id: dec35e0f07efa1c989f6356dd073dfddd12a186e
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This change points multipy::runtime to use multipy.package instead of torch.package by copying
_deploy.py(which is used in order to pass objects in and out of interpreters) into multipy as well as making the neccessary changes to allowmultipy::runtimeto accessmultipy.packageand_deploy.py.