Skip to content
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

Add Buffer.as_buffer_like method. #2925

Open
kylebarron opened this issue Mar 21, 2025 · 0 comments
Open

Add Buffer.as_buffer_like method. #2925

kylebarron opened this issue Mar 21, 2025 · 0 comments

Comments

@kylebarron
Copy link
Contributor

The core Buffer class represents a block of memory in either CPU or GPU memory.

There's no current method on Buffer to expose the memory via the buffer protocol without always forcing a copy. The closest thing is the as_array_like method, which returns an ArrayLike, but there's no way to get a BytesLike from it.

So what I want is

    @abstractmethod
    def as_bytes_like(self) -> collections.abc.Buffer:

(#2814 tracks the unification of BytesLike and collections.abc.Buffer types)

In practice, this means that the obstore integration (#1661) won't need to force a memory copy when uploading data.

ref #1661 (comment), cc @TomAugspurger

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant