| 3035 | } |
| 3036 | |
| 3037 | struct ggml_tensor * ggml_norm( |
| 3038 | struct ggml_context * ctx, |
| 3039 | struct ggml_tensor * a, |
| 3040 | float eps) { |
| 3041 | return ggml_norm_impl(ctx, a, eps, false); |
| 3042 | } |
| 3043 | |
| 3044 | struct ggml_tensor * ggml_norm_inplace( |
| 3045 | struct ggml_context * ctx, |