Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion iris/ops/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def matmul_reduce_scatter(self, output_tensor, A, B, bias=None, async_op=False,
>>> output = shmem.zeros((M, N_local), dtype=torch.float16)
>>> shmem.ops.matmul_reduce_scatter(output, A, B)
"""
return matmul_reduce_scatter(self._shmem, output_tensor, A, B, bias, async_op, config, workspace)
return matmul_reduce_scatter(self._shmem, output_tensor, A, B, async_op, config, workspace)

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch. Fixed in 6798ff6 — removed bias from both matmul_all_reduce and matmul_reduce_scatter wrapper signatures. The underlying functions don't support bias; only all_gather_matmul and matmul_all_gather do.



# Export public API
Expand Down
Loading