| 2576 | // ggml_neg |
| 2577 | |
| 2578 | struct ggml_tensor * ggml_neg( |
| 2579 | struct ggml_context * ctx, |
| 2580 | struct ggml_tensor * a) { |
| 2581 | return ggml_unary(ctx, a, GGML_UNARY_OP_NEG); |
| 2582 | } |
| 2583 | |
| 2584 | struct ggml_tensor * ggml_neg_inplace( |
| 2585 | struct ggml_context * ctx, |
no test coverage detected