Closed siqim closed 2 years ago
torch_sparse.transpose would coalesce outputs by default and mess up results when input edge_index is not sorted. This issue does not affect any reported results, but it may cause problems potentially. Setting coalesced=False resolves the issue.
torch_sparse.transpose
edge_index
coalesced=False
torch_sparse.transpose
would coalesce outputs by default and mess up results when inputedge_index
is not sorted. This issue does not affect any reported results, but it may cause problems potentially. Settingcoalesced=False
resolves the issue.