| 3117 | } |
| 3118 | |
| 3119 | struct ggml_tensor * ggml_group_norm( |
| 3120 | struct ggml_context * ctx, |
| 3121 | struct ggml_tensor * a, |
| 3122 | int n_groups, |
| 3123 | float eps) { |
| 3124 | return ggml_group_norm_impl(ctx, a, n_groups, eps, false); |
| 3125 | } |
| 3126 | |
| 3127 | struct ggml_tensor * ggml_group_norm_inplace( |
| 3128 | struct ggml_context * ctx, |