-
-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed GroupNorm raising a spurious runtime error (#106)
- Loading branch information
1 parent
aa0d968
commit b6abc4c
Showing
2 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
from typing import Tuple | ||
|
||
import jax.numpy as jnp | ||
|
||
from ..custom_types import Array | ||
|
||
|
||
def left_broadcast_to(arr: Array, shape: Tuple[int]): | ||
return arr.reshape(shape + (1,) * (len(shape) - arr.ndim)) | ||
arr = arr.reshape(arr.shape + (1,) * (len(shape) - arr.ndim)) | ||
return jnp.broadcast_to(arr, shape) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters