You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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 theas_array_like
method, which returns anArrayLike
, but there's no way to get aBytesLike
from it.So what I want is
(#2814 tracks the unification of
BytesLike
andcollections.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
The text was updated successfully, but these errors were encountered: