| 2582 | } |
| 2583 | |
| 2584 | struct ggml_tensor * ggml_neg_inplace( |
| 2585 | struct ggml_context * ctx, |
| 2586 | struct ggml_tensor * a) { |
| 2587 | return ggml_unary_inplace(ctx, a, GGML_UNARY_OP_NEG); |
| 2588 | } |
| 2589 | |
| 2590 | // ggml_step |
| 2591 |
nothing calls this directly
no test coverage detected