rapidsai / node

GPU-accelerated data science and visualization in node

Home Page:https://rapidsai.github.io/node/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Using CUB from node-rapids

ghalimi opened this issue · comments

Is there a way to use CUB from node-rapids? More specifically, is there a way to invoke OneSweep?

We don't have any explicit bindings into cub, but DataFrame and Series sortValues() methods are implemented via Thrust (and Thrust uses cub::DeviceRadixSort under the hood).

Awesome! Thank you so much.