| 3843 | // ggml_relu |
| 3844 | |
| 3845 | struct ggml_tensor * ggml_relu( |
| 3846 | struct ggml_context * ctx, |
| 3847 | struct ggml_tensor * a) { |
| 3848 | return ggml_unary(ctx, a, GGML_UNARY_OP_RELU); |
| 3849 | } |
| 3850 | |
| 3851 | struct ggml_tensor * ggml_relu_inplace( |
| 3852 | struct ggml_context * ctx, |