Skip to content

Commit

Permalink
add todo
Browse files Browse the repository at this point in the history
  • Loading branch information
galipremsagar committed Nov 5, 2021
1 parent a9fabee commit 8b3b7e3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/cudf/cudf/core/tools/numeric.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,8 @@ def _proc_inf_strings(col):
"""Convert "inf/infinity" strings into "Inf", the native string
representing infinity in libcudf
"""
# TODO: This can be handled by libcudf in
# future see StringColumn.as_numerical_column
col = libstrings.replace_multi(
col, as_column(["+", "inf", "inity"]), as_column(["", "Inf", ""]),
)
Expand Down

0 comments on commit 8b3b7e3

Please sign in to comment.