| 2691 | // ggml_gelu_erf |
| 2692 | |
| 2693 | struct ggml_tensor * ggml_gelu_erf( |
| 2694 | struct ggml_context * ctx, |
| 2695 | struct ggml_tensor * a) { |
| 2696 | return ggml_unary(ctx, a, GGML_UNARY_OP_GELU_ERF); |
| 2697 | } |
| 2698 | |
| 2699 | struct ggml_tensor * ggml_gelu_erf_inplace( |
| 2700 | struct ggml_context * ctx, |
no test coverage detected