-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add GroupNorm support #132
Comments
Hi @FL33TW00D I'd like to take a swing at implementing this layer. pub enum Norm {
LayerNorm(LayerNorm),
GroupNorm(GroupNorm),
} Quick question, is there a reason for specializing the LayerNorm for vec2 and vec4 separatly? |
Enum sounds good! In WebGPU you can often get big performance boosts from vectorizing, |
Hello, Finally found time to look at the implementation of |
Hey @AmineDiro,
Everything else is syntax sugar! |
Great so I think it should work! I'll try to push something as soon as possible ! |
#131 requires GroupNorm support
The text was updated successfully, but these errors were encountered: