| 2562 | // ggml_sgn |
| 2563 | |
| 2564 | struct ggml_tensor * ggml_sgn( |
| 2565 | struct ggml_context * ctx, |
| 2566 | struct ggml_tensor * a) { |
| 2567 | return ggml_unary(ctx, a, GGML_UNARY_OP_SGN); |
| 2568 | } |
| 2569 | |
| 2570 | struct ggml_tensor * ggml_sgn_inplace( |
| 2571 | struct ggml_context * ctx, |
no test coverage detected