| 2548 | // ggml_abs |
| 2549 | |
| 2550 | struct ggml_tensor * ggml_abs( |
| 2551 | struct ggml_context * ctx, |
| 2552 | struct ggml_tensor * a) { |
| 2553 | return ggml_unary(ctx, a, GGML_UNARY_OP_ABS); |
| 2554 | } |
| 2555 | |
| 2556 | struct ggml_tensor * ggml_abs_inplace( |
| 2557 | struct ggml_context * ctx, |
no test coverage detected