| 3125 | } |
| 3126 | |
| 3127 | struct ggml_tensor * ggml_group_norm_inplace( |
| 3128 | struct ggml_context * ctx, |
| 3129 | struct ggml_tensor * a, |
| 3130 | int n_groups, |
| 3131 | float eps) { |
| 3132 | return ggml_group_norm_impl(ctx, a, n_groups, eps, true); |
| 3133 | } |
| 3134 | |
| 3135 | // ggml_l2_norm |
| 3136 |
nothing calls this directly
no test coverage detected