| 3759 | // ggml_abs |
| 3760 | |
| 3761 | struct ggml_tensor * ggml_abs( |
| 3762 | struct ggml_context * ctx, |
| 3763 | struct ggml_tensor * a) { |
| 3764 | return ggml_unary(ctx, a, GGML_UNARY_OP_ABS); |
| 3765 | } |
| 3766 | |
| 3767 | struct ggml_tensor * ggml_abs_inplace( |
| 3768 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected