-
Notifications
You must be signed in to change notification settings - Fork 20
Add spdl.io.iter_tarfile function
#958
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
|
@moto-meta has exported this pull request. If you are a Meta employee, you can view the originating diff in D82753127. |
Summary: Add basic implementation for iterating in-memory TAR data and file-like object. It is tricky to workaround the GIL in file-like object as the byte string created by `read` method must be returned from C++ to Python. Differential Revision: D82753127
3641a46 to
4e95d32
Compare
|
@moto-meta has exported this pull request. If you are a Meta employee, you can view the originating diff in D82753127. |
Summary: Add basic implementation for iterating in-memory TAR data and file-like object. It is tricky to workaround the GIL in file-like object as the byte string created by `read` method must be returned from C++ to Python. Differential Revision: D82753127
4e95d32 to
b74bf2b
Compare
|
@moto-meta has exported this pull request. If you are a Meta employee, you can view the originating diff in D82753127. |
Summary: Add basic implementation for iterating in-memory TAR data and file-like object. It is tricky to workaround the GIL in file-like object as the byte string created by `read` method must be returned from C++ to Python. Differential Revision: D82753127
b74bf2b to
4ad9f20
Compare
|
@moto-meta has exported this pull request. If you are a Meta employee, you can view the originating diff in D82753127. |
Summary: Add basic implementation for iterating in-memory TAR data and file-like object. It is tricky to workaround the GIL in file-like object as the byte string created by `read` method must be returned from C++ to Python. Differential Revision: D82753127
4ad9f20 to
cb38c66
Compare
|
@moto-meta has exported this pull request. If you are a Meta employee, you can view the originating diff in D82753127. |
Summary: Add basic implementation for iterating in-memory TAR data and file-like object. It is tricky to workaround the GIL in file-like object as the byte string created by `read` method must be returned from C++ to Python. Differential Revision: D82753127
cb38c66 to
05d8434
Compare
|
@moto-meta has exported this pull request. If you are a Meta employee, you can view the originating diff in D82753127. |
Summary: Add basic implementation for iterating in-memory TAR data and file-like object. It is tricky to workaround the GIL in file-like object as the byte string created by `read` method must be returned from C++ to Python. Differential Revision: D82753127
05d8434 to
e46ad41
Compare
|
@moto-meta has exported this pull request. If you are a Meta employee, you can view the originating diff in D82753127. |
Summary: Add basic implementation for iterating in-memory TAR data and file-like object. It is tricky to workaround the GIL in file-like object as the byte string created by `read` method must be returned from C++ to Python. Differential Revision: D82753127
e46ad41 to
3cd111e
Compare
|
@moto-meta has exported this pull request. If you are a Meta employee, you can view the originating diff in D82753127. |
Summary: Add basic implementation for iterating in-memory TAR data and file-like object. It is tricky to workaround the GIL in file-like object as the byte string created by `read` method must be returned from C++ to Python. Differential Revision: D82753127
3cd111e to
d8d4580
Compare
|
@moto-meta has exported this pull request. If you are a Meta employee, you can view the originating Diff in D82753127. |
Summary: Add basic implementation for iterating in-memory TAR data and file-like object. It is tricky to workaround the GIL in file-like object as the byte string created by `read` method must be returned from C++ to Python. Differential Revision: D82753127
d8d4580 to
2dbec33
Compare
Summary: Add basic implementation for iterating in-memory TAR data and file-like object. It is tricky to workaround the GIL in file-like object as the byte string created by `read` method must be returned from C++ to Python. Differential Revision: D82753127
2dbec33 to
ce817b2
Compare
Summary: Pull Request resolved: #958 Add basic implementation for iterating in-memory TAR data and file-like object. It is tricky to workaround the GIL in file-like object as the byte string created by `read` method must be returned from C++ to Python. Differential Revision: D82753127
ce817b2 to
8deee39
Compare
Summary: Pull Request resolved: #958 Add basic implementation for iterating in-memory TAR data and file-like object. It is tricky to workaround the GIL in file-like object as the byte string created by `read` method must be returned from C++ to Python. Differential Revision: D82753127
8deee39 to
47aebd5
Compare
spdl.io.ite_tarfile functionspdl.io.iter_tarfile function
Summary: Pull Request resolved: #958 Add basic implementation for iterating in-memory TAR data and file-like object. It is tricky to workaround the GIL in file-like object as the byte string created by `read` method must be returned from C++ to Python. Differential Revision: D82753127
47aebd5 to
eacd960
Compare
Summary: Pull Request resolved: #958 Add basic implementation for iterating in-memory TAR data and file-like object. It is tricky to workaround the GIL in file-like object as the byte string created by `read` method must be returned from C++ to Python. Differential Revision: D82753127
eacd960 to
a8003a6
Compare
Summary:
Add basic implementation for iterating in-memory TAR data and file-like object.
It is tricky to workaround the GIL in file-like object as the byte strings are created by
readmethod,and they must be returned from C++ to Python.
Differential Revision: D82753127