I noticed that gpu-bdb query 18 was using private methods from cudf for find_multiple:
|
from cudf._lib.strings import find_multiple |
|
cudf.Series(find_multiple.find_multiple(lowered._column, targets._column)).explode() |
cudf now has public APIs that perform the same task: Series.str.find_multiple. This should be refactored to use public APIs.
See also: rapidsai/cudf#10126 (comment)