| 3953 | } |
| 3954 | |
| 3955 | struct ggml_tensor * ggml_norm( |
| 3956 | struct ggml_context * ctx, |
| 3957 | struct ggml_tensor * a, |
| 3958 | float eps) { |
| 3959 | return ggml_norm_impl(ctx, a, eps, false); |
| 3960 | } |
| 3961 | |
| 3962 | struct ggml_tensor * ggml_norm_inplace( |
| 3963 | struct ggml_context * ctx, |
no test coverage detected