Skip to content

Commit

Permalink
small fix for distributed
Browse files Browse the repository at this point in the history
  • Loading branch information
azrael417 committed Jan 22, 2025
1 parent 0fe5678 commit 33449fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions torch_harmonics/distributed/distributed_convolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def __init__(
out_channels: int,
in_shape: Tuple[int],
out_shape: Tuple[int],
kernel_shape: Union[int, List[int]],
kernel_shape: Union[int, Tuple[int], Tuple[int, int]],
basis_type: Optional[str] = "piecewise linear",
basis_norm_mode: Optional[str] = "mean",
groups: Optional[int] = 1,
Expand Down Expand Up @@ -354,7 +354,7 @@ def __init__(
out_channels: int,
in_shape: Tuple[int],
out_shape: Tuple[int],
kernel_shape: Union[int, List[int]],
kernel_shape: Union[int, Tuple[int], Tuple[int, int]],
basis_type: Optional[str] = "piecewise linear",
basis_norm_mode: Optional[str] = "mean",
groups: Optional[int] = 1,
Expand Down

0 comments on commit 33449fd

Please sign in to comment.