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
Currently, renumber_vertices_by_type and renumber_edges_by_type upcast the index to int64. This causes errors when calling sampling since the index dtype doesn't match the src/dst dtype.
This issue should be fixed by saving the original dtype and forcing the dtype of the new index to match the old dtype using astype, or a similar solution.
The text was updated successfully, but these errors were encountered:
Currently,
renumber_vertices_by_type
andrenumber_edges_by_type
upcast the index toint64
. This causes errors when calling sampling since the index dtype doesn't match the src/dst dtype.This issue should be fixed by saving the original dtype and forcing the dtype of the new index to match the old dtype using
astype
, or a similar solution.The text was updated successfully, but these errors were encountered: