| 2669 | } |
| 2670 | |
| 2671 | struct ggml_tensor * ggml_sigmoid_inplace( |
| 2672 | struct ggml_context * ctx, |
| 2673 | struct ggml_tensor * a) { |
| 2674 | return ggml_unary_inplace(ctx, a, GGML_UNARY_OP_SIGMOID); |
| 2675 | } |
| 2676 | |
| 2677 | // ggml_gelu |
| 2678 |
nothing calls this directly
no test coverage detected