| 5894 | } |
| 5895 | |
| 5896 | struct ggml_tensor * ggml_unary( |
| 5897 | struct ggml_context * ctx, |
| 5898 | struct ggml_tensor * a, |
| 5899 | enum ggml_unary_op op) { |
| 5900 | return ggml_unary_impl(ctx, a, op, false); |
| 5901 | } |
| 5902 | |
| 5903 | struct ggml_tensor * ggml_unary_inplace( |
| 5904 | struct ggml_context * ctx, |
no test coverage detected