You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Environment details (please complete the following information):
Using the latest cudf 24.10 nightlies.
This does not appear to be limited to a specific subset of Python version, CPU architecture, or CUDA version.
It affects both wheels and conda packages.
Additional context
I believe this is the same root cause as rapidsai/cuspatial#1433. And there are similar reports in other RAPIDS projects:
Looking more closely at the stack traces in logs, this might not require changes in cuxfilter. It's possible all of these errors are coming from cuspatial:
/pyenv/versions/3.9.19/lib/python3.9/site-packages/cuxfilter/charts/core/non_aggregate/core_non_aggregate.py:142: in cb
self.selected_indices = point_in_polygon(self.source, *args)
/pyenv/versions/3.9.19/lib/python3.9/site-packages/cuxfilter/charts/core/non_aggregate/utils.py:7: in point_in_polygon
points = cuspatial.GeoSeries.from_points_xy(
/pyenv/versions/3.9.19/lib/python3.9/site-packages/cuspatial/core/geoseries.py:704: in from_points_xy
GeoColumn._from_points_xy(as_column(points_xy, dtype=coords_dtype))
/pyenv/versions/3.9.19/lib/python3.9/site-packages/cuspatial/core/_column/geocolumn.py:140: in _from_points_xy
meta = GeoMeta(
/pyenv/versions/3.9.19/lib/python3.9/site-packages/cuspatial/core/_column/geometa.py:31: in __init__
self.input_types = cudf.Series(meta["input_types"], dtype="int8")
/pyenv/versions/3.9.19/lib/python3.9/site-packages/cudf/utils/performance_tracking.py:51: in wrapper
return func(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
Describe the bug
On 24.10, several tests are failing like this:
Observed this in CI that wasn't touching any Python code (e.g. #616).
Steps/Code to reproduce bug
CI from #616: (build link)
Expected behavior
N/A
Environment details (please complete the following information):
Using the latest
cudf
24.10 nightlies.This does not appear to be limited to a specific subset of Python version, CPU architecture, or CUDA version.
It affects both wheels and conda packages.
Additional context
I believe this is the same root cause as rapidsai/cuspatial#1433. And there are similar reports in other RAPIDS projects:
_from_column
cuspatial#1434cuxfilter
needs to adapt to these changes: rapidsai/cudf#16454For reference, here's how @mroeschke is approaching this in
cuspatial
: rapidsai/cuspatial#1434The text was updated successfully, but these errors were encountered: