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
We currently have a class in JNI called ContiguousTable which tracks both a contiguous device memory buffer and metadata needed to recreate a cuDF table from it. These are the results of contiguous_split.
The problem is that right now we have code in the plugin that calls getBuffer on this object and then has to remember to increase ref counts, or otherwise be really careful about handling this buffer since it goes away once the ContiguousTable closes.
It would be nice to fix this so we can clean up code in the plugin.
The text was updated successfully, but these errors were encountered:
We currently have a class in JNI called
ContiguousTable
which tracks both a contiguous device memory buffer and metadata needed to recreate a cuDF table from it. These are the results ofcontiguous_split
.The problem is that right now we have code in the plugin that calls
getBuffer
on this object and then has to remember to increase ref counts, or otherwise be really careful about handling this buffer since it goes away once theContiguousTable
closes.It would be nice to fix this so we can clean up code in the plugin.
The text was updated successfully, but these errors were encountered: