-
Notifications
You must be signed in to change notification settings - Fork 912
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
[QST] Calling cudf.dataframe.apply from c++ or porting to libcudf #14628
Comments
The Because this requires JIT compilation with Numba, we don't have a way to expose this in libcudf C++ code. There are two features that are pretty close, however.
There is also If you can give us more information about the kinds of user-defined functions you want to execute, that would be very helpful for future library design. |
To add a bit more to @bdice's comment: Can you explain your use case in a bit more detail? Would you like to use We have not put effort into making cudf interoperate bidirectionally with libcudf at the level of API calls: only the data structure level. So to date there is no way to turn a So it might be possible to go bidirectionally between libcudf and cudf, but there are many caveats because the translation from cudf to libcudf objects is a lossy one at the metadata level. We are currently making an effort to have a closer mapping between libcudf types/algorithms and cython-wrapped types/functions in the |
Dear Rapids.Ai Team,
in the cuDF python API documentation there are several methods which are not in libcudf for c++:
cudf.dataframe.apply
cudf.dataframe.applymap
cudf.dataframe.apply_rows
cudf.dataframe.apply_chunks
Best regards
Developer
The text was updated successfully, but these errors were encountered: