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
Right now, we pass the host memory pointers to python using array interface to construct numpy and then cudf is created using this numpy object. There is actually an overhead here. We can eliminate this overhead by moving input data to GPU memory in C++ backend and passing the device pointers to python.
The text was updated successfully, but these errors were encountered:
Right now, we pass the host memory pointers to python using array interface to construct numpy and then cudf is created using this numpy object. There is actually an overhead here. We can eliminate this overhead by moving input data to GPU memory in C++ backend and passing the device pointers to python.
The text was updated successfully, but these errors were encountered: