| 3787 | // ggml_neg |
| 3788 | |
| 3789 | struct ggml_tensor * ggml_neg( |
| 3790 | struct ggml_context * ctx, |
| 3791 | struct ggml_tensor * a) { |
| 3792 | return ggml_unary(ctx, a, GGML_UNARY_OP_NEG); |
| 3793 | } |
| 3794 | |
| 3795 | struct ggml_tensor * ggml_neg_inplace( |
| 3796 | struct ggml_context * ctx, |