Skip to content

Commit

Permalink
fix argument order for CSC SHM
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed May 27, 2024
1 parent f9a1204 commit 392234a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lenskit/parallel/serialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ def reducer_override(self, obj: Any) -> Any:
)
elif obj.layout == torch.sparse_csc:
return torch.sparse_csc_tensor, (
obj.row_indices(),
obj.ccol_indices(),
obj.row_indices(),
obj.values(),
obj.shape,
)
Expand Down

0 comments on commit 392234a

Please sign in to comment.