Skip to content

Commit

Permalink
Merge branch 'ref/full' of https://github.com/mroeschke/cuspatial int…
Browse files Browse the repository at this point in the history
…o ref/full
  • Loading branch information
mroeschke committed Mar 5, 2024
2 parents 3dd214e + a81f595 commit 3990e77
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/cuspatial/cuspatial/core/binops/distance_dispatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,10 @@ def __call__(self):
# Rows with misaligned indices contains nan. Here we scatter the
# distance values to the correct indices.
result = as_column(
[float("nan")] * len(self._res_index), dtype="float64"
float("nan"),
length=len(self._res_index),
dtype="float64",
nan_as_null=False,
)
scatter_map = as_column(
range(len(self._res_index)), dtype="int32"
Expand Down

0 comments on commit 3990e77

Please sign in to comment.