-
Notifications
You must be signed in to change notification settings - Fork 759
Bind StreamReader/Writer with PyBind11 #3091
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
|
@mthrok has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
6f8baab to
7ff7590
Compare
|
@mthrok has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
1 similar comment
|
@mthrok has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
7ff7590 to
4ddee36
Compare
|
@mthrok has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
4ddee36 to
b72cda0
Compare
|
@mthrok has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
b72cda0 to
effd933
Compare
|
@mthrok has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
|
This pull request was exported from Phabricator. Differential Revision: D43515714 |
Summary: This commit is kind of clean up and preparation for future development. We plan to pass around more complicated objects among StreamReader and StreamWriter, and TorchBind is not expressive enough for defining intermediate object, so we use PyBind11 for binding StreamWriter. Pull Request resolved: pytorch#3091 Differential Revision: D43515714 Pulled By: mthrok fbshipit-source-id: 28f5a02eedc58a2754fe8e938619569b26df14ee
effd933 to
a366a11
Compare
Summary: This commit is kind of clean up and preparation for future development. We plan to pass around more complicated objects among StreamReader and StreamWriter, and TorchBind is not expressive enough for defining intermediate object, so we use PyBind11 for binding StreamWriter. Pull Request resolved: pytorch#3091 Differential Revision: D43515714 Pulled By: mthrok fbshipit-source-id: cd46cd846320190fcb574c1f05ac5eff0bf2f58e
a366a11 to
4c1d44b
Compare
|
This pull request was exported from Phabricator. Differential Revision: D43515714 |
|
Hey @mthrok. |
This commit is kind of clean up and preparation for future
development.
We plan to pass around more complicated objects among
StreamReader and StreamWriter, and TorchBind is not expressive enough
for defining intermediate object, so we use PyBind11 for binding
StreamWriter.