Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a bug with num_keys in _scatter_by_slice #12749

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion python/cudf/cudf/core/column/column.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import warnings
from functools import cached_property
from itertools import chain
from math import ceil
from types import SimpleNamespace
from typing import (
Any,
Expand Down Expand Up @@ -570,7 +571,7 @@ def _scatter_by_slice(
start, stop, step = key.indices(len(self))
if start >= stop:
return None
num_keys = (stop - start) // step
num_keys = ceil((stop - start) / step)
wence- marked this conversation as resolved.
Show resolved Hide resolved

self._check_scatter_key_length(num_keys, value)

Expand Down