Skip to content

Commit

Permalink
Fix PyG master Windows test (#8701)
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s authored Jan 1, 2024
1 parent e7f9b59 commit 1343f77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion torch_geometric/edge_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -1667,7 +1667,7 @@ def matmul(
sparse_input = sparse_input.t()

if torch_geometric.typing.WITH_WINDOWS: # pragma: no cover
other = other.to_sparse_coo(input_value)
other = other.to_sparse_coo(other_value)
elif other.is_sorted_by_col:
other = other.to_sparse_csc(other_value)
else:
Expand Down

0 comments on commit 1343f77

Please sign in to comment.