Skip to content

Commit eddfcc7

Browse files
CUDF changed API to assume the dtype is already converted to a cudf type (#4955)
Switch from np.dtype to cudf.dtype to accommodate a cudf change.
1 parent c959469 commit eddfcc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/cugraph/cugraph/structure/hypergraph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
from cugraph.structure.symmetrize import symmetrize
4141

4242

43-
_str_dtype = np.dtype("str")
43+
_str_dtype = cudf.dtype("str")
4444

4545

4646
def hypergraph(

0 commit comments

Comments
 (0)