[FEA] Use size_type in place of scalar in cudf::repeat. #5355
Labels
2 - In Progress
Currently a work in progress
feature request
New feature or request
libcudf
Affects libcudf (C++/CUDA) code.
Is your feature request related to a problem? Please describe.
Currently,
cudf::tile
accepts asize_type
for the number of tilings, butcudf::repeat
accepts ascalar const &
for the number of repeats. The use ofscalar
seems unusual for something that has to be an unsigned integral quantity.Describe the solution you'd like
Change API to accept
size_type
. Other similar APIs should be changed, too.Additional context
@devavret @jrhemstad @davidwendt agreed with this idea.
The text was updated successfully, but these errors were encountered: