| 2632 | // ggml_relu |
| 2633 | |
| 2634 | struct ggml_tensor * ggml_relu( |
| 2635 | struct ggml_context * ctx, |
| 2636 | struct ggml_tensor * a) { |
| 2637 | return ggml_unary(ctx, a, GGML_UNARY_OP_RELU); |
| 2638 | } |
| 2639 | |
| 2640 | struct ggml_tensor * ggml_relu_inplace( |
| 2641 | struct ggml_context * ctx, |
no test coverage detected