-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GroupNorm forward operation (#2623)
- Loading branch information
1 parent
b9f6ef2
commit c7fa6f7
Showing
36 changed files
with
1,996 additions
and
103 deletions.
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 |
---|---|---|
|
@@ -24,4 +24,5 @@ API Reference | |
layernorm | ||
sum | ||
argmax | ||
groupnorm | ||
|
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
GroupNorm Layer(experimental) | ||
============================= | ||
|
||
The groupnorm types and functions. | ||
It splits input channels into num_group groups and do normalize for each group. | ||
|
||
To enable this, define MIOPEN_BETA_API before including miopen.h. | ||
|
||
|
||
miopenNormMode_t | ||
----------------------- | ||
|
||
.. doxygenenum:: miopenNormMode_t | ||
|
||
miopenGroupNormForward | ||
---------------------------------- | ||
|
||
.. doxygenfunction:: miopenGroupNormForward | ||
|
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
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
Oops, something went wrong.