| 3857 | // ggml_leaky |
| 3858 | |
| 3859 | struct ggml_tensor * ggml_leaky( |
| 3860 | struct ggml_context * ctx, |
| 3861 | struct ggml_tensor * a) { |
| 3862 | return ggml_unary(ctx, a, GGML_UNARY_OP_LEAKY); |
| 3863 | } |
| 3864 | |
| 3865 | // ggml_gelu |
| 3866 |
nothing calls this directly
no test coverage detected