| 3829 | // ggml_elu |
| 3830 | |
| 3831 | struct ggml_tensor * ggml_elu( |
| 3832 | struct ggml_context * ctx, |
| 3833 | struct ggml_tensor * a) { |
| 3834 | return ggml_unary(ctx, a, GGML_UNARY_OP_ELU); |
| 3835 | } |
| 3836 | |
| 3837 | struct ggml_tensor * ggml_elu_inplace( |
| 3838 | struct ggml_context * ctx, |